Searched refs:time_s (Results 1 – 8 of 8) sorted by relevance
/external/toybox/toys/lsb/ |
D | dmesg.c | 50 unsigned long long time_s, time_us; in format_message() local 59 time_s = time_us/1000000; in format_message() 62 &facpri, &time_s, &time_us, &pos) != 3) return; in format_message() 81 time_t t = TT.tea+time_s; in format_message() 85 } else printf("[%5lld.%06lld] ", time_s, time_us); in format_message()
|
/external/perfetto/include/perfetto/base/ |
D | time.h | 155 const long time_s = static_cast<long>(time.count() / 1000); in ToPosixTimespec() local 156 ts.tv_sec = time_s; in ToPosixTimespec() 157 ts.tv_nsec = (static_cast<long>(time.count()) - time_s * 1000L) * 1000000L; in ToPosixTimespec()
|
/external/bcc/examples/tracing/ |
D | hello_perf_output.py | 54 time_s = (float(event.ts - start)) / 1000000000 55 print("%-18.9f %-16s %-6d %s" % (time_s, event.comm, event.pid,
|
/external/bcc/examples/usdt_sample/scripts/ |
D | latency.py | 106 time_s = (float(event.start - start)) / 1000000000 108 …print("%-18.9f %-10d %-32s %-32s %16d %16d %16d" % (time_s, event.operation_id, event.input, event…
|
/external/bcc/tools/ |
D | sslsniff.py | 212 time_s = (float(event.timestamp_ns - start)) / 1000000000 224 print(fmt % (rw, time_s, event.comm.decode('utf-8', 'replace'),
|
/external/grpc-grpc/test/core/util/ |
D | test_config.h | 31 gpr_timespec grpc_timeout_seconds_to_deadline(int64_t time_s);
|
D | test_config.cc | 366 gpr_timespec grpc_timeout_seconds_to_deadline(int64_t time_s) { in grpc_timeout_seconds_to_deadline() argument 370 grpc_test_slowdown_factor() * static_cast<int64_t>(1e3) * time_s, in grpc_timeout_seconds_to_deadline()
|
/external/bcc/docs/ |
D | tutorial_bcc_python_developer.md | 301 time_s = (float(event.ts - start)) / 1000000000 302 print("%-18.9f %-16s %-6d %s" % (time_s, event.comm, event.pid,
|