Searched refs:timestamp (Results 26 - 50 of 320) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/dtrace/demo/profile/
H A Drestest.d38 @ms = lquantize((timestamp / 1000000) % 10, 0, 10, 1);
/illumos-gate/usr/src/cmd/dtrace/demo/sched/
H A Dwhererun.d31 start = timestamp;
37 self->ts = timestamp;
43 @[cpu] = sum(timestamp - self->ts);
56 (timestamp - start) / 1000000000);
H A Dwhere.d29 self->ts = timestamp;
35 @[cpu] = quantize(timestamp - self->ts);
H A Dhowlong.d31 self->ts = timestamp;
39 lquantize((timestamp - self->ts) / 1000000, 0, 500, 25);
H A Dpritime.d31 start = timestamp;
37 printf("%d %d\n", timestamp - start, args[2]);
H A Dxterm.d31 start = timestamp;
37 @[execname] = lquantize((timestamp - start) / 1000000000, 0, 10);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/stop/
H A Dtst.stop1.d43 timeout = timestamp + 1000000000;
63 timeout = timestamp + 1000000000 / 4;
67 /timestamp > timeout && stopped == 1/
74 /timestamp > timeout/
H A Dtst.stop2.d43 timeout = timestamp + 1000000000;
63 timeout = timestamp + 1000000000 / 4;
67 /timestamp > timeout && stopped == 1/
74 /timestamp > timeout/
/illumos-gate/usr/src/cmd/dtrace/demo/agg/
H A Drenormalize.d31 start = timestamp;
41 normalize(@func, (timestamp - start) / 1000000000);
H A Dwritetime.d29 self->ts = timestamp;
35 @time[execname] = avg(timestamp - self->ts);
H A Dwritetimeq.d29 self->ts = timestamp;
35 @time[execname] = quantize(timestamp - self->ts);
/illumos-gate/usr/src/cmd/dtrace/demo/proc/
H A Dlwptime.d30 self->start = timestamp;
36 @[execname] = quantize(timestamp - self->start);
/illumos-gate/usr/src/cmd/dtrace/demo/vars/
H A Drtime.d29 self->t = timestamp;
36 pid, tid, timestamp - self->t);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/docsExamples/
H A Drenormalize.d43 start = timestamp;
53 normalize(@func, (timestamp - start) / 1000000000);
H A Drtime.d42 self->t = timestamp;
49 tid, timestamp - self->t);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/usdt/
H A Dtst.args.d40 timeout = timestamp + 5000000000;
56 /timestamp > timeout/
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DConsumerEvent.java43 private long timestamp; field in class:ConsumerEvent
47 * and nanosecond timestamp.
51 * @param timeNanos nanosecond timestamp of this event
57 timestamp = timeNanos;
61 * Gets the nanosecond timestamp of this event.
63 * @return nanosecond timestamp of the event on the system where the
69 return timestamp;
/illumos-gate/usr/src/cmd/dtrace/demo/ip/
H A Dipio.d33 last = timestamp;
38 this->elapsed = (timestamp - last) / 1000;
42 last = timestamp;
47 this->elapsed = (timestamp - last) / 1000;
51 last = timestamp;
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/aggs/
H A Dtst.multiaggs1.d39 time_1 = timestamp;
46 time_2 = timestamp;
54 @g[timestamp] = max(new_time);
55 @h[timestamp] = quantize(new_time);
56 @i[timestamp] = lquantize(new_time, 0, 10000, 1000);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pid/
H A Dtst.ret1.d42 timeout = timestamp + 1000000000;
53 timeout = timestamp + 500000000;
69 /timestamp > timeout/
H A Dtst.ret2.d42 timeout = timestamp + 1000000000;
53 timeout = timestamp + 500000000;
69 /timestamp > timeout/
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/misc/
H A Dtst.roch.d49 printf(" %u 0x%llX %d %d comm:%s csathr:%lld", timestamp,
59 printf(" %u 0x%llX %d %d comm:%s csathr:%lld", timestamp,
67 printf(" %u 0x%llX %d %d ", timestamp,
73 printf(" %u 0x%llX %d %d tag:%d off:%d ", timestamp,
79 printf(" %u 0x%llX %d %d lock:0x%llX", timestamp,
85 printf(" %u 0x%llX %d %d lock:0x%llX", timestamp,
/illumos-gate/usr/src/cmd/dtrace/demo/fbt/
H A Ddelay.d30 self->in = timestamp
37 @snoozers[stack()] = quantize(timestamp - self->in);
/illumos-gate/usr/src/cmd/dtrace/demo/intro/
H A Drwtime.d31 ts[probefunc] = timestamp;
38 printf("%d nsecs", timestamp - ts[probefunc]);
/illumos-gate/usr/src/cmd/dtrace/demo/tcp/
H A Dtcpconnlat.d28 start[args[1]->cs_cid] = timestamp;
35 quantize(timestamp - start[args[1]->cs_cid]);

Completed in 116 milliseconds

1234567891011>>