Home
last modified time | relevance | path

Searched refs:tstamp (Results 1 – 11 of 11) sorted by relevance

/tools/testing/selftests/bpf/progs/
Dtest_tc_edt.c34 uint64_t tstamp, next_tstamp = 0; in throttle_flow() local
39 tstamp = skb->tstamp; in throttle_flow()
40 if (tstamp < now) in throttle_flow()
41 tstamp = now; in throttle_flow()
44 if (next_tstamp <= tstamp) { in throttle_flow()
45 if (bpf_map_update_elem(&flow_map, &key, &tstamp, BPF_ANY)) in throttle_flow()
60 skb->tstamp = next_tstamp; in throttle_flow()
/tools/testing/selftests/networking/timestamping/
Drxtimestamp.c30 bool tstamp; member
71 { tstamp: true }
107 { tstamp: true, swtstamp: true }
140 if (t->expected.tstamp) in print_test_case()
209 actual.tstamp = true; in do_recv()
238 VALIDATE(tstamp); in do_recv()
/tools/perf/util/
Dtrace-event.h85 struct evsel *evsel, u64 tstamp);
86 void (*process_stat_interval)(u64 tstamp);
/tools/include/uapi/sound/
Dasound.h462 struct timespec tstamp; /* reference timestamp */ member
481 struct timespec tstamp; /* Timestamp */ member
653 struct timespec tstamp; /* Timestamp */ member
765 struct timespec tstamp; /* Timestamp - last update */ member
815 struct timespec tstamp; member
958 struct timespec tstamp; member
/tools/testing/selftests/bpf/verifier/
Dcgroup_skb.c178 offsetof(struct __sk_buff, tstamp)),
191 offsetof(struct __sk_buff, tstamp)),
Dctx_skb.c940 offsetof(struct __sk_buff, tstamp)),
942 offsetof(struct __sk_buff, tstamp)),
/tools/perf/util/scripting-engines/
Dtrace-event-python.c1356 process_stat(struct evsel *counter, int cpu, int thread, u64 tstamp, in process_stat() argument
1379 tuple_set_u64(t, n++, tstamp); in process_stat()
1393 struct evsel *counter, u64 tstamp) in python_process_stat() argument
1400 process_stat(counter, -1, -1, tstamp, in python_process_stat()
1408 perf_thread_map__pid(threads, thread), tstamp, in python_process_stat()
1414 static void python_process_stat_interval(u64 tstamp) in python_process_stat_interval() argument
1430 tuple_set_u64(t, n++, tstamp); in python_process_stat_interval()
/tools/include/uapi/linux/
Dif_link.h349 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */ member
Dbpf.h3004 __u64 tstamp; member
/tools/perf/
Dbuiltin-script.c1919 static void __process_stat(struct evsel *counter, u64 tstamp) in __process_stat() argument
1947 tstamp, in __process_stat()
1953 static void process_stat(struct evsel *counter, u64 tstamp) in process_stat() argument
1956 scripting_ops->process_stat(&stat_config, counter, tstamp); in process_stat()
1958 __process_stat(counter, tstamp); in process_stat()
1961 static void process_stat_interval(u64 tstamp) in process_stat_interval() argument
1964 scripting_ops->process_stat_interval(tstamp); in process_stat_interval()
Dbuiltin-trace.c1302 static size_t __trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp) in __trace__fprintf_tstamp() argument
1304 double ts = (double)(tstamp - trace->base_time) / NSEC_PER_MSEC; in __trace__fprintf_tstamp()
1315 static size_t trace__fprintf_tstamp(struct trace *trace, u64 tstamp, FILE *fp) in trace__fprintf_tstamp() argument
1317 if (tstamp > 0) in trace__fprintf_tstamp()
1318 return __trace__fprintf_tstamp(trace, tstamp, fp); in trace__fprintf_tstamp()
1346 u64 duration, bool duration_calculated, u64 tstamp, FILE *fp) in trace__fprintf_entry_head() argument
1351 printed = trace__fprintf_tstamp(trace, tstamp, fp); in trace__fprintf_entry_head()