Symbol: FormatSigned
src/bin/debug/strace/Context.h
58
string FormatSigned(int64 value, int bytes = 8) const;
src/bin/debug/strace/NetworkTypes.cpp
110
return context.FormatSigned(ltype);
src/bin/debug/strace/NetworkTypes.cpp
131
return context.FormatSigned(lwhence);
src/bin/debug/strace/NetworkTypes.cpp
143
r += "l_start=" + context.FormatSigned(lock->l_start) + ", ";
src/bin/debug/strace/NetworkTypes.cpp
144
r += "l_len=" + context.FormatSigned(lock->l_len);
src/bin/debug/strace/NetworkTypes.cpp
196
return "family = " + context.FormatSigned(family);
src/bin/debug/strace/NetworkTypes.cpp
215
return "type = " + context.FormatSigned(type);
src/bin/debug/strace/NetworkTypes.cpp
237
return "protocol = " + context.FormatSigned(protocol);
src/bin/debug/strace/NetworkTypes.cpp
351
string r = "len = " + context.FormatSigned(conf->ifc_len);
src/bin/debug/strace/NetworkTypes.cpp
58
r += ", " + context.FormatSigned(iovlen);
src/bin/debug/strace/TypeHandler.cpp
363
string formatted = "[" + context.FormatSigned(data);
src/bin/debug/strace/TypeHandler.cpp
367
formatted += ", " + context.FormatSigned(data);
src/bin/debug/strace/TypeHandler.cpp
401
return context.FormatSigned(get_value<Type>(address), sizeof(Type));
src/bin/debug/strace/TypeHandler.cpp
406
return context.FormatSigned(value, sizeof(Type));
src/bin/debug/strace/events.cpp
175
r += "{fd=" + context.FormatSigned(tmp[i].fd);
src/bin/debug/strace/events.cpp
247
r += context.FormatSigned(tmp[i].object);
src/bin/debug/strace/events.cpp
314
r += context.FormatSigned(tmp[i].object);
src/bin/debug/strace/file.cpp
38
return context.FormatSigned(mode);