Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 – 200 of 447) sorted by relevance

123

/linux-4.4.14/tools/perf/util/
Dordered-events.c17 u64 timestamp = new->timestamp; in queue_event() local
23 pr_oe_time2(timestamp, "queue_event nr_events %u\n", oe->nr_events); in queue_event()
27 oe->max_timestamp = timestamp; in queue_event()
36 if (last->timestamp <= timestamp) { in queue_event()
37 while (last->timestamp <= timestamp) { in queue_event()
41 oe->max_timestamp = timestamp; in queue_event()
48 while (last->timestamp > timestamp) { in queue_event()
134 ordered_events__new_event(struct ordered_events *oe, u64 timestamp, in ordered_events__new_event() argument
141 new->timestamp = timestamp; in ordered_events__new_event()
158 u64 timestamp = sample->time; in ordered_events__queue() local
[all …]
Dthread.h60 int __thread__set_comm(struct thread *thread, const char *comm, u64 timestamp,
63 u64 timestamp) in thread__set_comm() argument
65 return __thread__set_comm(thread, comm, timestamp, false); in thread__set_comm()
73 int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
Dcomm.c82 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() argument
89 comm->start = timestamp; in comm__new()
103 int comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) in comm__override() argument
114 comm->start = timestamp; in comm__override()
Dthread-stack.c76 u64 timestamp; member
197 u64 timestamp, u64 ref, bool no_return) in thread_stack__call_return() argument
209 cr.call_time = tse->timestamp; in thread_stack__call_return()
210 cr.return_time = timestamp; in thread_stack__call_return()
470 u64 timestamp, u64 ref, struct call_path *cp, in thread_stack__push_cp() argument
484 tse->timestamp = timestamp; in thread_stack__push_cp()
494 u64 ret_addr, u64 timestamp, u64 ref, in thread_stack__pop_cp() argument
507 timestamp, ref, false); in thread_stack__pop_cp()
512 timestamp, ref, false); in thread_stack__pop_cp()
523 timestamp, ref, in thread_stack__pop_cp()
[all …]
Dintel-pt.c136 u64 timestamp; member
869 if (state->timestamp) in intel_pt_setup_queue()
873 ptq->timestamp = state->timestamp; in intel_pt_setup_queue()
875 queue_nr, ptq->timestamp); in intel_pt_setup_queue()
879 ret = auxtrace_heap__add(&pt->heap, queue_nr, ptq->timestamp); in intel_pt_setup_queue()
980 sample.time = tsc_to_perf_time(ptq->timestamp, &pt->tc); in intel_pt_synth_branch_sample()
1036 sample.time = tsc_to_perf_time(ptq->timestamp, &pt->tc); in intel_pt_synth_instruction_sample()
1093 sample.time = tsc_to_perf_time(ptq->timestamp, &pt->tc); in intel_pt_synth_transaction_sample()
1312 static int intel_pt_run_decoder(struct intel_pt_queue *ptq, u64 *timestamp) in intel_pt_run_decoder() argument
1369 state->timestamp, state->est_timestamp); in intel_pt_run_decoder()
[all …]
Dthread.c124 int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp, in __thread__set_comm() argument
132 err = comm__override(curr, str, timestamp, exec); in __thread__set_comm()
136 new = comm__new(str, timestamp, exec); in __thread__set_comm()
208 int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp) in thread__fork() argument
216 err = thread__set_comm(thread, comm, timestamp); in thread__fork()
Dcomm.h22 struct comm *comm__new(const char *str, u64 timestamp, bool exec);
24 int comm__override(struct comm *comm, const char *str, u64 timestamp,
Dintel-bts.c450 static int intel_bts_process_queue(struct intel_bts_queue *btsq, u64 *timestamp) in intel_bts_process_queue() argument
515 if (timestamp) in intel_bts_process_queue()
516 *timestamp = btsq->buffer->reference; in intel_bts_process_queue()
556 static int intel_bts_process_queues(struct intel_bts *bts, u64 timestamp) in intel_bts_process_queues() argument
568 if (bts->heap.heap_array[0].ordinal > timestamp) in intel_bts_process_queues()
602 u64 timestamp; in intel_bts_process_event() local
614 timestamp = perf_time_to_tsc(sample->time, &bts->tc); in intel_bts_process_event()
616 timestamp = 0; in intel_bts_process_event()
622 err = intel_bts_process_queues(bts, timestamp); in intel_bts_process_event()
Dordered-events.h9 u64 timestamp; member
/linux-4.4.14/arch/alpha/kernel/
Derr_common.c90 union el_timestamp timestamp; in el_process_header_subpacket() local
108 timestamp.as_int = 0; in el_process_header_subpacket()
115 timestamp = header->by_type.sys_event.timestamp; in el_process_header_subpacket()
122 timestamp = header->by_type.err_halt.timestamp; in el_process_header_subpacket()
128 timestamp.as_int = 0; in el_process_header_subpacket()
142 el_print_timestamp(&timestamp); in el_process_header_subpacket()
168 el_print_timestamp(union el_timestamp *timestamp) in el_print_timestamp() argument
170 if (timestamp->as_int) in el_print_timestamp()
173 timestamp->b.month, timestamp->b.day, in el_print_timestamp()
174 timestamp->b.year, timestamp->b.hour, in el_print_timestamp()
[all …]
Derr_ev7.c253 el_print_timestamp(&packet->by_type.logout.timestamp); in ev7_process_pal_subpacket()
/linux-4.4.14/tools/perf/util/intel-pt-decoder/
Dintel-pt-decoder.c96 uint64_t timestamp; member
463 decoder->timestamp = 0; in intel_pt_get_data()
585 uint64_t timestamp; member
595 uint64_t timestamp; in intel_pt_calc_cyc_cb() local
628 timestamp = data->ctc_timestamp + in intel_pt_calc_cyc_cb()
631 timestamp = data->ctc_timestamp + in intel_pt_calc_cyc_cb()
637 if (timestamp < data->timestamp) in intel_pt_calc_cyc_cb()
641 data->timestamp = timestamp; in intel_pt_calc_cyc_cb()
648 timestamp = pkt_info->packet.payload | in intel_pt_calc_cyc_cb()
649 (data->timestamp & (0xffULL << 56)); in intel_pt_calc_cyc_cb()
[all …]
Dintel-pt-decoder.h63 uint64_t timestamp; member
/linux-4.4.14/include/trace/events/
Dpower_cpu_migrate.h10 TP_PROTO(u64 timestamp, \
13 TP_ARGS(timestamp, \
22 __field(u64, timestamp )
27 __entry->timestamp = timestamp;
32 (unsigned long long)__entry->timestamp,
Dv4l2.h110 __field(s64, timestamp)
131 __entry->timestamp = timeval_to_ns(&buf->timestamp);
154 __entry->timestamp,
187 __field(s64, timestamp)
208 __entry->timestamp = timeval_to_ns(&vbuf->timestamp);
228 __entry->timestamp,
/linux-4.4.14/drivers/iio/imu/inv_mpu6050/
Dinv_mpu_ring.c108 s64 timestamp; in inv_mpu6050_irq_handler() local
110 timestamp = iio_get_time_ns(); in inv_mpu6050_irq_handler()
111 kfifo_in_spinlocked(&st->timestamps, &timestamp, 1, in inv_mpu6050_irq_handler()
129 s64 timestamp; in inv_mpu6050_read_fifo() local
170 result = kfifo_out(&st->timestamps, &timestamp, 1); in inv_mpu6050_read_fifo()
173 timestamp = 0; in inv_mpu6050_read_fifo()
176 timestamp); in inv_mpu6050_read_fifo()
/linux-4.4.14/Documentation/trace/postprocess/
Dtrace-vmscan-postprocess.pl260 my $timestamp = $_[0];
262 my ($sec, $usec) = split (/\./, $timestamp);
270 my $timestamp;
280 $timestamp = $4;
305 $timestamp = timestamp_to_ms($timestamp);
307 $perprocesspid{$process_pid}->{STATE_DIRECT_BEGIN} = $timestamp;
326 $timestamp = timestamp_to_ms($timestamp);
328 my $latency = ($timestamp - $perprocesspid{$process_pid}->{STATE_DIRECT_BEGIN});
343 $timestamp = timestamp_to_ms($timestamp);
345 $perprocesspid{$process_pid}->{STATE_KSWAPD_BEGIN} = $timestamp;
[all …]
Dtrace-pagealloc-postprocess.pl188 my $timestamp;
/linux-4.4.14/drivers/net/wireless/ath/ath9k/
Dlink.c308 unsigned int timestamp = jiffies_to_msecs(jiffies); in ath_ani_calibrate() local
337 if ((timestamp - common->ani.longcal_timer) >= long_cal_interval) { in ath_ani_calibrate()
339 common->ani.longcal_timer = timestamp; in ath_ani_calibrate()
344 if ((timestamp - common->ani.shortcal_timer) >= short_cal_interval) { in ath_ani_calibrate()
346 common->ani.shortcal_timer = timestamp; in ath_ani_calibrate()
347 common->ani.resetcal_timer = timestamp; in ath_ani_calibrate()
350 if ((timestamp - common->ani.resetcal_timer) >= in ath_ani_calibrate()
354 common->ani.resetcal_timer = timestamp; in ath_ani_calibrate()
359 if ((timestamp - common->ani.checkani_timer) >= ah->config.ani_poll_interval) { in ath_ani_calibrate()
361 common->ani.checkani_timer = timestamp; in ath_ani_calibrate()
[all …]
Dhtc_drv_main.c752 unsigned long timestamp = jiffies_to_msecs(jiffies); in ath9k_htc_start_ani() local
754 common->ani.longcal_timer = timestamp; in ath9k_htc_start_ani()
755 common->ani.shortcal_timer = timestamp; in ath9k_htc_start_ani()
756 common->ani.checkani_timer = timestamp; in ath9k_htc_start_ani()
780 unsigned int timestamp = jiffies_to_msecs(jiffies); in ath9k_htc_ani_work() local
791 if ((timestamp - common->ani.longcal_timer) >= ATH_LONG_CALINTERVAL) { in ath9k_htc_ani_work()
794 common->ani.longcal_timer = timestamp; in ath9k_htc_ani_work()
802 if ((timestamp - common->ani.shortcal_timer) >= in ath9k_htc_ani_work()
806 common->ani.shortcal_timer = timestamp; in ath9k_htc_ani_work()
807 common->ani.resetcal_timer = timestamp; in ath9k_htc_ani_work()
[all …]
DKconfig103 based on ACK frame RX timestamp, TX frame timestamp and frame
/linux-4.4.14/tools/perf/
Dbuiltin-sched.c64 u64 timestamp; member
242 get_new_event(struct task_desc *task, u64 timestamp) in get_new_event() argument
248 event->timestamp = timestamp; in get_new_event()
270 u64 timestamp, u64 duration) in add_sched_event_run() argument
284 event = get_new_event(task, timestamp); in add_sched_event_run()
293 u64 timestamp, struct task_desc *wakee) in add_sched_event_wakeup() argument
297 event = get_new_event(task, timestamp); in add_sched_event_wakeup()
320 u64 timestamp, u64 task_state __maybe_unused) in add_sched_event_sleep() argument
322 struct sched_atom *event = get_new_event(task, timestamp); in add_sched_event_sleep()
726 u64 timestamp0, timestamp = sample->time; in replay_switch_event() local
[all …]
Dbuiltin-timechart.c128 u64 timestamp; member
240 static void pid_fork(struct timechart *tchart, int pid, int ppid, u64 timestamp) in pid_fork() argument
249 p->start_time = timestamp; in pid_fork()
251 p->current->start_time = timestamp; in pid_fork()
252 p->current->state_since = timestamp; in pid_fork()
256 static void pid_exit(struct timechart *tchart, int pid, u64 timestamp) in pid_exit() argument
260 p->end_time = timestamp; in pid_exit()
262 p->current->end_time = timestamp; in pid_exit()
345 static void c_state_start(int cpu, u64 timestamp, int state) in c_state_start() argument
347 cpus_cstate_start_times[cpu] = timestamp; in c_state_start()
[all …]
/linux-4.4.14/Documentation/networking/
Dtimestamping.txt7 Generates a timestamp for each incoming packet in (not necessarily
8 monotonic) system time. Reports the timestamp via recvmsg() in a
13 timestamp as struct timespec (nsec resolution).
16 Only for multicast:approximate transmit timestamp obtained by
17 reading the looped packet receive timestamp.
21 multiple timestamp sources, including hardware. Supports generating
30 same is true for all early receive timestamp options.
44 Supports multiple types of timestamp requests. As a result, this
60 calls, one to enable timestamp generation and one to disable it.
85 difference between this timestamp and one taken at
[all …]
Dpacket_mmap.txt26 capture each packet, it requires two if you want to get packet's timestamp
378 meta information like timestamp. So what we draw here a frame it's really
1011 The PACKET_TIMESTAMP setting determines the source of the timestamp in
1025 what kind of timestamp has been reported, the tp_status field is binary |'ed
1045 one can extract the type of timestamp in a second step from tp_status)!
1050 members do not contain a valid value. For TX_RINGs, by default no timestamp
/linux-4.4.14/drivers/net/wireless/orinoco/
Dscan.c82 u64 timestamp; in orinoco_add_hostscan_result() local
121 timestamp = 0; in orinoco_add_hostscan_result()
127 bss->a.bssid, timestamp, capability, in orinoco_add_hostscan_result()
141 u64 timestamp; in orinoco_add_extscan_result() local
154 timestamp = le64_to_cpu(bss->timestamp); in orinoco_add_extscan_result()
161 bss->bssid, timestamp, capability, in orinoco_add_extscan_result()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/timer/
Dbase.c42 if (alarm->timestamp <= nvkm_timer_read(tmr)) in nvkm_timer_alarm_trigger()
49 tmr->func->alarm_init(tmr, alarm->timestamp); in nvkm_timer_alarm_trigger()
68 alarm->timestamp = nvkm_timer_read(tmr) + nsec; in nvkm_timer_alarm()
77 if (list->timestamp > alarm->timestamp) in nvkm_timer_alarm()
/linux-4.4.14/scripts/
Dgen_initramfs_list.sh302 timestamp=
304 timestamp="$(date -d"$KBUILD_BUILD_TIMESTAMP" +%s || :)"
305 if test -n "$timestamp"; then
306 timestamp="-t $timestamp"
310 usr/gen_init_cpio $timestamp ${cpio_list} > ${cpio_tfile}
/linux-4.4.14/fs/udf/
Decma_167.h60 struct timestamp { struct
139 struct timestamp descCreationDateAndTime;
209 struct timestamp recordingDateAndTime;
340 struct timestamp recordingDateAndTime;
419 struct timestamp recordingDateAndTime;
555 struct timestamp accessTime;
556 struct timestamp modificationTime;
557 struct timestamp attrTime;
733 struct timestamp recordingDateAndTime;
780 struct timestamp accessTime;
[all …]
Dudftime.c88 udf_disk_stamp_to_time(struct timespec *dest, struct timestamp src) in udf_disk_stamp_to_time()
119 struct timestamp *
120 udf_time_to_disk_stamp(struct timestamp *dest, struct timespec ts) in udf_time_to_disk_stamp()
Dudfdecl.h252 struct timestamp src);
253 extern struct timestamp *udf_time_to_disk_stamp(struct timestamp *dest, struct timespec src);
/linux-4.4.14/Documentation/sound/alsa/
Dtimestamping.txt13 - tstamp is the current system timestamp updated during the last
70 audio_tstamp_config fields, get an estimate of the timestamp
80 timestamp will report the DMA time based on the hw_pointer value.
83 provide timestamp selection, with a zero-valued COMPAT timestamp type
87 The audio timestamp accuracy can be returned to user-space, so that
105 - including the delay in the audio timestamp may
122 The ALSA API only allows for a single audio timestamp to be reported
127 timestamp is reported. Applications that need different timestamps
131 In some hardware-specific configuration, the system timestamp is
137 timestamp shows when the information is put together by the driver
[all …]
/linux-4.4.14/drivers/iio/adc/
Dcc10001_adc.c273 struct iio_chan_spec *chan_array, *timestamp; in cc10001_adc_channel_init() local
300 timestamp = &chan_array[idx]; in cc10001_adc_channel_init()
301 timestamp->type = IIO_TIMESTAMP; in cc10001_adc_channel_init()
302 timestamp->channel = -1; in cc10001_adc_channel_init()
303 timestamp->scan_index = idx; in cc10001_adc_channel_init()
304 timestamp->scan_type.sign = 's'; in cc10001_adc_channel_init()
305 timestamp->scan_type.realbits = 64; in cc10001_adc_channel_init()
306 timestamp->scan_type.storagebits = 64; in cc10001_adc_channel_init()
Dad7291.c118 s64 timestamp = iio_get_time_ns(); in ad7291_event_handler() local
142 timestamp); in ad7291_event_handler()
149 timestamp); in ad7291_event_handler()
158 timestamp); in ad7291_event_handler()
165 timestamp); in ad7291_event_handler()
Dat91_adc.c257 iio_push_to_buffers_with_timestamp(idev, st->buffer, pf->timestamp); in at91_adc_trigger_handler()
463 struct iio_chan_spec *chan_array, *timestamp; in at91_adc_channel_init() local
501 timestamp = chan_array + idx; in at91_adc_channel_init()
503 timestamp->type = IIO_TIMESTAMP; in at91_adc_channel_init()
504 timestamp->channel = -1; in at91_adc_channel_init()
505 timestamp->scan_index = idx; in at91_adc_channel_init()
506 timestamp->scan_type.sign = 's'; in at91_adc_channel_init()
507 timestamp->scan_type.realbits = 64; in at91_adc_channel_init()
508 timestamp->scan_type.storagebits = 64; in at91_adc_channel_init()
Dad7266.c48 s64 timestamp; member
93 pf->timestamp); in ad7266_trigger_handler()
/linux-4.4.14/drivers/ptp/
Dptp_ixp46x.c101 event.timestamp = ((u64) hi) << 32; in isr()
102 event.timestamp |= lo; in isr()
103 event.timestamp <<= TICKS_NS_SHIFT; in isr()
115 event.timestamp = ((u64) hi) << 32; in isr()
116 event.timestamp |= lo; in isr()
117 event.timestamp <<= TICKS_NS_SHIFT; in isr()
Dptp_pch.c377 event.timestamp = ((u64) hi) << 32; in isr()
378 event.timestamp |= lo; in isr()
379 event.timestamp <<= TICKS_NS_SHIFT; in isr()
391 event.timestamp = ((u64) hi) << 32; in isr()
392 event.timestamp |= lo; in isr()
393 event.timestamp <<= TICKS_NS_SHIFT; in isr()
Dptp_clock.c61 seconds = div_u64_rem(src->timestamp, 1000000000, &remainder); in enqueue_external_timestamp()
/linux-4.4.14/drivers/media/v4l2-core/
Dv4l2-event.c159 kev->event.timestamp = *ts; in __v4l2_event_queue_fh()
173 struct timespec timestamp; in v4l2_event_queue() local
178 ktime_get_ts(&timestamp); in v4l2_event_queue()
183 __v4l2_event_queue_fh(fh, ev, &timestamp); in v4l2_event_queue()
192 struct timespec timestamp; in v4l2_event_queue_fh() local
194 ktime_get_ts(&timestamp); in v4l2_event_queue_fh()
197 __v4l2_event_queue_fh(fh, ev, &timestamp); in v4l2_event_queue_fh()
Dv4l2-compat-ioctl32.c338 struct compat_timeval timestamp; member
426 get_user(kp->timestamp.tv_sec, &up->timestamp.tv_sec) || in get_v4l2_buffer32()
427 get_user(kp->timestamp.tv_usec, in get_v4l2_buffer32()
428 &up->timestamp.tv_usec)) in get_v4l2_buffer32()
508 put_user(kp->timestamp.tv_sec, &up->timestamp.tv_sec) || in put_v4l2_buffer32()
509 put_user(kp->timestamp.tv_usec, &up->timestamp.tv_usec) || in put_v4l2_buffer32()
764 struct compat_timespec timestamp; member
776 compat_put_timespec(&kp->timestamp, &up->timestamp) || in put_v4l2_event32()
Dvideobuf2-v4l2.c123 vbuf->timestamp = b->timestamp; in __set_timestamp()
194 b->timestamp = vbuf->timestamp; in __fill_v4l2_buffer()
311 vbuf->timestamp.tv_sec = 0; in __fill_vb2_buffer()
312 vbuf->timestamp.tv_usec = 0; in __fill_vb2_buffer()
1203 v4l2_get_timestamp(&fileio->b.timestamp); in __vb2_perform_fileio()
1310 v4l2_get_timestamp(&fileio->b.timestamp); in vb2_thread()
/linux-4.4.14/drivers/scsi/fnic/
Dfnic_trace.h66 } timestamp, fnaddr; member
92 trace_buf->timestamp.low = jiffies; \
95 trace_buf->timestamp.val = jiffies; \
Dfnic_trace.c132 jiffies_to_timespec(tbp->timestamp.low, &val); in fnic_get_trace_data()
135 jiffies_to_timespec(tbp->timestamp.val, &val); in fnic_get_trace_data()
174 jiffies_to_timespec(tbp->timestamp.low, &val); in fnic_get_trace_data()
177 jiffies_to_timespec(tbp->timestamp.val, &val); in fnic_get_trace_data()
/linux-4.4.14/tools/lib/traceevent/
Dkbuffer-parse.c59 unsigned long long timestamp; member
337 kbuf->timestamp += delta; in old_update_pointers()
414 kbuf->timestamp += delta; in update_pointers()
505 *ts = kbuf->timestamp; in kbuffer_next_event()
531 kbuf->timestamp = read_8(kbuf, ptr); in kbuffer_load_subbuffer()
580 *ts = kbuf->timestamp; in kbuffer_read_event()
592 return kbuf->timestamp; in kbuffer_timestamp()
/linux-4.4.14/include/linux/
Ddigsig.h33 uint32_t timestamp; /* key made, always 0 for now */ member
41 uint32_t timestamp; /* signature made */ member
Dptp_clock_kernel.h156 u64 timestamp; member
Dsdla.h239 short timestamp; member
Dfence.h80 ktime_t timestamp; member
Dcper.h272 __u64 timestamp; member
Dpe.h105 uint32_t timestamp; /* time_t */ member
Dperf_event.h624 u64 timestamp; member
686 u64 timestamp; member
Dfirewire.h299 u32 timestamp; member
/linux-4.4.14/arch/s390/include/asm/
Dcpu_mf.h137 unsigned char timestamp[16]; /* 16 - 31 timestamp */ member
262 return *((unsigned long long *) &te->timestamp[1]); in trailer_timestamp()
265 return *((unsigned long long *) &te->timestamp[0]); in trailer_timestamp()
/linux-4.4.14/arch/alpha/include/asm/
Derr_common.h91 union el_timestamp timestamp; member
98 union el_timestamp timestamp; member
Derr_ev7.h14 union el_timestamp timestamp; member
/linux-4.4.14/drivers/iio/common/ssp_sensors/
Dssp_iio.c80 unsigned int len, int64_t timestamp) in ssp_common_process_data() argument
97 timestamp + (int64_t)le32_to_cpu(time) * 1000000; in ssp_common_process_data()
Dssp_iio_sensor.h43 unsigned int len, int64_t timestamp);
Dssp.h199 int64_t timestamp; member
Dssp_spi.c301 data->timestamp); in ssp_parse_dataframe()
332 data->timestamp = ts.tv_sec * 1000000000ULL + ts.tv_nsec; in ssp_parse_dataframe()
/linux-4.4.14/drivers/net/wireless/ath/wil6210/
Dtrace.h47 __field(u32, timestamp)
55 __entry->timestamp = le32_to_cpu(wmi->timestamp);
62 __entry->mid, __entry->id, __entry->buf_len, __entry->timestamp
/linux-4.4.14/drivers/media/platform/vivid/
Dvivid-kthread-out.c98 v4l2_get_timestamp(&vid_out_buf->vb.timestamp); in vivid_thread_vid_out_tick()
99 vid_out_buf->vb.timestamp.tv_sec += dev->time_wrap_offset; in vivid_thread_vid_out_tick()
111 v4l2_get_timestamp(&vbi_out_buf->vb.timestamp); in vivid_thread_vid_out_tick()
112 vbi_out_buf->vb.timestamp.tv_sec += dev->time_wrap_offset; in vivid_thread_vid_out_tick()
Dvivid-vbi-cap.c111 v4l2_get_timestamp(&buf->vb.timestamp); in vivid_raw_vbi_cap_process()
112 buf->vb.timestamp.tv_sec += dev->time_wrap_offset; in vivid_raw_vbi_cap_process()
136 v4l2_get_timestamp(&buf->vb.timestamp); in vivid_sliced_vbi_cap_process()
137 buf->vb.timestamp.tv_sec += dev->time_wrap_offset; in vivid_sliced_vbi_cap_process()
Dvivid-sdr-cap.c120 v4l2_get_timestamp(&sdr_cap_buf->vb.timestamp); in vivid_thread_sdr_cap_tick()
121 sdr_cap_buf->vb.timestamp.tv_sec += dev->time_wrap_offset; in vivid_thread_sdr_cap_tick()
Dvivid-kthread-cap.c444 v4l2_get_timestamp(&buf->vb.timestamp); in vivid_fillbuff()
561 v4l2_get_timestamp(&buf->vb.timestamp); in vivid_fillbuff()
562 buf->vb.timestamp.tv_sec += dev->time_wrap_offset; in vivid_fillbuff()
/linux-4.4.14/drivers/iio/humidity/
Ddht11.c70 s64 timestamp; member
120 dht11->timestamp = ktime_get_real_ns(); in dht11_decode()
167 if (dht11->timestamp + DHT11_DATA_VALID_TIME < ktime_get_real_ns()) { in dht11_read_raw()
282 dht11->timestamp = ktime_get_real_ns() - DHT11_DATA_VALID_TIME - 1; in dht11_probe()
/linux-4.4.14/include/linux/iio/
Dbuffer.h143 void *data, int64_t timestamp) in iio_push_to_buffers_with_timestamp() argument
147 ((int64_t *)data)[ts_offset] = timestamp; in iio_push_to_buffers_with_timestamp()
Dtrigger_consumer.h40 s64 timestamp; member
Diio.h529 int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp);
/linux-4.4.14/net/hsr/
Dhsr_framereg.c360 unsigned long timestamp; in hsr_prune_nodes() local
381 timestamp = time_a; in hsr_prune_nodes()
385 timestamp = time_b; in hsr_prune_nodes()
388 if (time_is_after_jiffies(timestamp + in hsr_prune_nodes()
398 if (time_is_before_jiffies(timestamp + in hsr_prune_nodes()
/linux-4.4.14/drivers/power/
Ds3c_adc_battery.c36 unsigned int timestamp; member
84 jiffies_to_msecs(jiffies - bat->timestamp) > in s3c_adc_backup_bat_get_property()
90 bat->timestamp = jiffies; in s3c_adc_backup_bat_get_property()
160 jiffies_to_msecs(jiffies - bat->timestamp) > in s3c_adc_bat_get_property()
168 bat->timestamp = jiffies; in s3c_adc_bat_get_property()
/linux-4.4.14/drivers/staging/iio/accel/
Dlis3l02dq_core.c454 s64 timestamp = iio_get_time_ns(); in lis3l02dq_event_handler() local
467 timestamp); in lis3l02dq_event_handler()
476 timestamp); in lis3l02dq_event_handler()
485 timestamp); in lis3l02dq_event_handler()
494 timestamp); in lis3l02dq_event_handler()
503 timestamp); in lis3l02dq_event_handler()
512 timestamp); in lis3l02dq_event_handler()
Dlis3l02dq_ring.c151 iio_push_to_buffers_with_timestamp(indio_dev, data, pf->timestamp); in lis3l02dq_trigger_handler()
/linux-4.4.14/Documentation/
Ddigsig.txt24 time_t timestamp; /* key made, always 0 for now */
32 time_t timestamp; /* signature made */
43 It protects timestamp from been changed and can be used for rollback
Dlockup-watchdogs.txt50 timestamp every time it is scheduled. If that timestamp is not updated
/linux-4.4.14/arch/s390/appldata/
Dappldata_net_sum.c33 u64 timestamp; member
114 net_data->timestamp = get_tod_clock(); in appldata_get_net_sum_data()
Dappldata_mem.c37 u64 timestamp; member
112 mem_data->timestamp = get_tod_clock(); in appldata_get_mem_data()
Dappldata_os.c58 u64 timestamp; member
159 os_data->timestamp = get_tod_clock(); in appldata_get_os_data()
/linux-4.4.14/drivers/dma-buf/
Dfence.c74 if (!ktime_to_ns(fence->timestamp)) { in fence_signal_locked()
75 fence->timestamp = ktime_get(); in fence_signal_locked()
114 if (!ktime_to_ns(fence->timestamp)) { in fence_signal()
115 fence->timestamp = ktime_get(); in fence_signal()
/linux-4.4.14/sound/core/seq/
Dseq_prioq.c268 int client, int timestamp) in prioq_match() argument
273 if (!timestamp) in prioq_match()
290 void snd_seq_prioq_leave(struct snd_seq_prioq * f, int client, int timestamp) in snd_seq_prioq_leave() argument
302 if (prioq_match(cell, client, timestamp)) { in snd_seq_prioq_leave()
Dseq_prioq.h56 void snd_seq_prioq_leave(struct snd_seq_prioq *f, int client, int timestamp);
/linux-4.4.14/drivers/iio/gyro/
Dssp_gyro_sensor.c92 int64_t timestamp) in ssp_process_gyro_data() argument
95 timestamp); in ssp_process_gyro_data()
Ditg3200_buffer.c58 iio_push_to_buffers_with_timestamp(indio_dev, buf, pf->timestamp); in itg3200_trigger_handler()
/linux-4.4.14/drivers/iio/accel/
Dssp_accel_sensor.c92 int64_t timestamp) in ssp_process_accel_data() argument
95 timestamp); in ssp_process_accel_data()
Dkxcjk-1013.c109 int64_t timestamp; member
977 data->timestamp); in kxcjk1013_trigger_handler()
1072 data->timestamp); in kxcjk1013_event_handler()
1080 data->timestamp); in kxcjk1013_event_handler()
1090 data->timestamp); in kxcjk1013_event_handler()
1098 data->timestamp); in kxcjk1013_event_handler()
1107 data->timestamp); in kxcjk1013_event_handler()
1115 data->timestamp); in kxcjk1013_event_handler()
1134 data->timestamp = iio_get_time_ns(); in kxcjk1013_data_rdy_trig_poll()
Dbmc150-accel-core.c204 int64_t timestamp, old_timestamp; /* Only used in hw fifo mode. */ member
894 data->old_timestamp = data->timestamp; in __bmc150_accel_fifo_flush()
895 data->timestamp = iio_get_time_ns(); in __bmc150_accel_fifo_flush()
912 sample_period = (data->timestamp - data->old_timestamp); in __bmc150_accel_fifo_flush()
914 tstamp = data->timestamp - (count - 1) * sample_period; in __bmc150_accel_fifo_flush()
1131 pf->timestamp); in bmc150_accel_trigger_handler()
1229 data->timestamp); in bmc150_accel_handle_roc_event()
1238 data->timestamp); in bmc150_accel_handle_roc_event()
1247 data->timestamp); in bmc150_accel_handle_roc_event()
1298 data->old_timestamp = data->timestamp; in bmc150_accel_irq_handler()
[all …]
Dmma9553.c200 s64 timestamp; member
1005 data->timestamp = iio_get_time_ns(); in mma9553_irq_handler()
1046 data->timestamp); in mma9553_event_handler()
1059 data->timestamp); in mma9553_event_handler()
1068 data->timestamp); in mma9553_event_handler()
/linux-4.4.14/tools/firewire/
Dnosy-dump.h14 uint32_t timestamp; member
77 uint32_t timestamp; member
/linux-4.4.14/drivers/net/ethernet/cavium/liquidio/
Docteon_nic.h100 u32 timestamp:1; member
184 packet_params.s.tsflag = setup->s.timestamp; in octnet_prepare_pci_cmd()
/linux-4.4.14/drivers/net/wireless/ath/ath10k/
Dtrace.h465 u32 timestamp,
470 TP_ARGS(ar, type, timestamp, code, len, data),
476 __field(u32, timestamp)
486 __entry->timestamp = timestamp;
497 __entry->timestamp,
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/
Dtdls.c301 const u8 *peer, bool peer_initiator, u32 timestamp) in iwl_mvm_tdls_check_action() argument
340 else if (timestamp <= mvm->tdls_cs.peer.sent_timestamp) in iwl_mvm_tdls_check_action()
388 u32 timestamp, u16 switch_time, in iwl_mvm_tdls_config_channel_switch() argument
402 timestamp); in iwl_mvm_tdls_config_channel_switch()
412 cmd.timing.frame_timestamp = cpu_to_le32(timestamp); in iwl_mvm_tdls_config_channel_switch()
719 params->chandef, params->timestamp, in iwl_mvm_tdls_recv_channel_switch()
Dfw-api.h497 __le32 timestamp; member
519 __le32 timestamp; member
544 __le32 timestamp; member
590 __le64 timestamp; member
865 __le32 timestamp; member
1301 __le64 timestamp; member
Dfw-api-rx.h108 __le64 timestamp; member
Dfw-api-tof.h324 __le32 timestamp; member
/linux-4.4.14/fs/pstore/
Dram.c248 struct timespec timestamp; in ramoops_write_kmsg_hdr() local
252 if (__getnstimeofday(&timestamp)) { in ramoops_write_kmsg_hdr()
253 timestamp.tv_sec = 0; in ramoops_write_kmsg_hdr()
254 timestamp.tv_nsec = 0; in ramoops_write_kmsg_hdr()
257 (long)timestamp.tv_sec, (long)(timestamp.tv_nsec / 1000), in ramoops_write_kmsg_hdr()
/linux-4.4.14/Documentation/trace/
Dmmiotrace.txt133 read event R width, timestamp, map id, physical, value, PC, PID
134 write event W width, timestamp, map id, physical, value, PC, PID
135 ioremap event MAP timestamp, map id, physical, virtual, length, PC, PID
136 iounmap event UNMAP timestamp, map id, PC, PID
137 marker MARK timestamp, text
141 unk. opcode UNKNOWN timestamp, map id, physical, data, PC, PID
/linux-4.4.14/drivers/staging/iio/cdc/
Dad7150.c494 s64 timestamp = iio_get_time_ns(); in ad7150_event_handler() local
510 timestamp); in ad7150_event_handler()
518 timestamp); in ad7150_event_handler()
527 timestamp); in ad7150_event_handler()
535 timestamp); in ad7150_event_handler()
/linux-4.4.14/drivers/net/ethernet/freescale/
Dgianfar_ptp.c221 event.timestamp = ((u64) hi) << 32; in isr()
222 event.timestamp |= lo; in isr()
232 event.timestamp = ((u64) hi) << 32; in isr()
233 event.timestamp |= lo; in isr()
242 event.timestamp = etsects->alarm_value; in isr()
/linux-4.4.14/include/uapi/linux/iio/
Devents.h23 __s64 timestamp; member
/linux-4.4.14/net/batman-adv/
Dfragmentation.h51 batadv_has_timed_out(frags_entry->timestamp, BATADV_FRAG_TIMEOUT)) in batadv_frag_check_entry()
Dfragmentation.c182 chain->timestamp = jiffies; in batadv_frag_insert_packet()
199 chain->timestamp = jiffies; in batadv_frag_insert_packet()
212 chain->timestamp = jiffies; in batadv_frag_insert_packet()
Dmain.h292 static inline bool batadv_has_timed_out(unsigned long timestamp, in batadv_has_timed_out() argument
295 return time_is_before_jiffies(timestamp + msecs_to_jiffies(timeout)); in batadv_has_timed_out()
Dtypes.h154 unsigned long timestamp; member
1078 unsigned long timestamp; member
/linux-4.4.14/include/uapi/linux/
Ddlm_netlink.h33 unsigned long timestamp; member
/linux-4.4.14/drivers/scsi/bfa/
Dbfa_cs.h55 u32 timestamp; member
122 trc->timestamp = BFA_TRC_TS(trcm); in __bfa_trc()
142 trc->timestamp = BFA_TRC_TS(trcm); in __bfa_trc32()
/linux-4.4.14/drivers/net/wireless/cw1200/
Dbh.c477 unsigned long timestamp = jiffies; in cw1200_bh() local
493 &timestamp, in cw1200_bh()
500 timeout = timestamp + in cw1200_bh()
510 timestamp, jiffies); in cw1200_bh()
Dqueue.h100 unsigned long *timestamp,
Dqueue.c539 unsigned long *timestamp, in cw1200_queue_get_xmit_timestamp() argument
551 *timestamp)) in cw1200_queue_get_xmit_timestamp()
552 *timestamp = item->xmit_timestamp; in cw1200_queue_get_xmit_timestamp()
Dtxrx.c470 priv->link_id_db[t->txpriv.raw_link_id - 1].timestamp = in cw1200_tx_h_calc_link_ids()
1033 entry->timestamp = jiffies; in cw1200_rx_cb()
1318 priv->link_id_db[i].timestamp = jiffies; in cw1200_find_link_id()
1341 now - priv->link_id_db[i].timestamp; in cw1200_alloc_link_id()
1424 ttl = priv->link_id_db[i].timestamp - now + in cw1200_link_id_gc_work()
1446 priv->link_id_db[i].timestamp = now; in cw1200_link_id_gc_work()
Dcw1200.h86 unsigned long timestamp; member
/linux-4.4.14/drivers/spi/
Dspi-mpc52xx.c85 int timestamp; member
251 ms->timestamp = get_tbl(); in mpc52xx_spi_fsmstate_transfer()
252 ms->timestamp += ms->transfer->delay_usecs * tb_ticks_per_usec; in mpc52xx_spi_fsmstate_transfer()
280 if (((int)get_tbl()) - ms->timestamp < 0) in mpc52xx_spi_fsmstate_wait()
/linux-4.4.14/net/atm/
Dlec_arpc.h28 unsigned long timestamp; /* Used for various timestamping things: member
Dlec.c1393 rulla->timestamp, rulla->no_tries); in dump_arp_table()
1420 rulla->timestamp, rulla->no_tries); in dump_arp_table()
1445 rulla->timestamp, rulla->no_tries); in dump_arp_table()
1470 rulla->timestamp, rulla->no_tries); in dump_arp_table()
1646 time_after_eq(now, entry->timestamp + in __lec_arp_check_expire()
1648 entry->timestamp = jiffies; in __lec_arp_check_expire()
1657 time_after_eq(now, entry->timestamp + in __lec_arp_check_expire()
1801 entry->last_used = entry->timestamp = jiffies; in lec_arp_resolve()
2047 entry->timestamp = jiffies; in lec_vcc_added()
/linux-4.4.14/include/net/irda/
Ddiscovery.h85 unsigned long timestamp; /* Last time discovered */ member
/linux-4.4.14/drivers/net/wireless/ti/wl1251/
Drx.h76 u32 timestamp; /* In microseconds */ member
Drx.c57 status->mactime = desc->timestamp; in wl1251_rx_status()
/linux-4.4.14/tools/iio/
Diio_event_monitor.c219 event->timestamp, event->id); in print_event()
224 printf("Event: time: %lld, type: %s", event->timestamp, in print_event()
/linux-4.4.14/drivers/staging/rtl8188eu/include/
Dieee80211_ext.h217 __le64 timestamp; member
229 __le64 timestamp; member
/linux-4.4.14/include/linux/iio/common/
Dssp_sensors.h65 int64_t timestamp);
/linux-4.4.14/drivers/net/ethernet/intel/fm10k/
Dfm10k_pci.c1159 u64 timestamp; in fm10k_1588_msg_vf() local
1163 &timestamp); in fm10k_1588_msg_vf()
1169 fm10k_ts_tx_hwtstamp(interface, 0, timestamp); in fm10k_1588_msg_vf()
1295 struct fm10k_swapi_1588_timestamp timestamp; in fm10k_1588_msg_pf() local
1303 &timestamp, sizeof(timestamp)); in fm10k_1588_msg_pf()
1309 if (timestamp.dglort) { in fm10k_1588_msg_pf()
1310 fm10k_ts_tx_hwtstamp(interface, timestamp.dglort, in fm10k_1588_msg_pf()
1311 le64_to_cpu(timestamp.egress)); in fm10k_1588_msg_pf()
1316 if (!timestamp.sglort) in fm10k_1588_msg_pf()
1320 sglort = le16_to_cpu(timestamp.sglort); in fm10k_1588_msg_pf()
[all …]
Dfm10k_debugfs.c112 rxd->w.sglort, rxd->q.timestamp); in fm10k_dbg_rx_desc_seq_show()
/linux-4.4.14/drivers/usb/isp1760/
Disp1760-hcd.h32 unsigned long timestamp; member
/linux-4.4.14/drivers/net/wireless/
Dray_cs.h11 UCHAR timestamp[8]; member
Dwl3501.h389 u8 timestamp[8]; member
443 char timestamp[8]; member
Drayctl.h124 UCHAR timestamp[8]; member
135 UCHAR timestamp[8]; member
Drndis_wlan.c270 u8 timestamp[8]; member
1988 u64 timestamp; in rndis_bss_info_update() local
2021 timestamp = le64_to_cpu(*(__le64 *)fixed->timestamp); in rndis_bss_info_update()
2027 timestamp, capability, beacon_interval, in rndis_bss_info_update()
2653 u64 timestamp; in rndis_wlan_craft_connected_bss() local
2707 timestamp = 0; in rndis_wlan_craft_connected_bss()
2712 bssid, (u32)timestamp, capability, beacon_period, ie_len, in rndis_wlan_craft_connected_bss()
2717 timestamp, capability, beacon_period, in rndis_wlan_craft_connected_bss()
/linux-4.4.14/drivers/firewire/
Dcore-transaction.c736 u32 timestamp; in compute_split_timeout_timestamp() local
741 timestamp = request_timestamp & ~0x1fff; in compute_split_timeout_timestamp()
742 timestamp += (cycles / 8000) << 13; in compute_split_timeout_timestamp()
743 timestamp |= cycles % 8000; in compute_split_timeout_timestamp()
745 return timestamp; in compute_split_timeout_timestamp()
789 request->response.timestamp = in allocate_request()
790 compute_split_timeout_timestamp(card, p->timestamp); in allocate_request()
/linux-4.4.14/sound/oss/
Dsound_config.h87 int timestamp; member
/linux-4.4.14/arch/powerpc/include/asm/
Dnvram.h41 __be64 timestamp; member
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/
Den_clock.c63 u64 timestamp) in mlx4_en_fill_hwtstamps() argument
69 nsec = timecounter_cyc2time(&mdev->clock, timestamp); in mlx4_en_fill_hwtstamps()
Den_tx.c277 int index, u8 owner, u64 timestamp) in mlx4_en_free_tx_desc() argument
292 if (unlikely(timestamp)) { in mlx4_en_free_tx_desc()
295 mlx4_en_fill_hwtstamps(priv->mdev, &hwts, timestamp); in mlx4_en_free_tx_desc()
442 u64 timestamp = 0; in mlx4_en_process_tx_cq() local
448 timestamp = mlx4_en_get_cqe_ts(cqe); in mlx4_en_process_tx_cq()
454 ring->size), timestamp); in mlx4_en_process_tx_cq()
Den_rx.c759 u64 timestamp; in mlx4_en_process_rx_cq() local
933 timestamp = mlx4_en_get_cqe_ts(cqe); in mlx4_en_process_rx_cq()
936 timestamp); in mlx4_en_process_rx_cq()
988 timestamp = mlx4_en_get_cqe_ts(cqe); in mlx4_en_process_rx_cq()
990 timestamp); in mlx4_en_process_rx_cq()
/linux-4.4.14/drivers/net/wireless/ti/wlcore/
Drx.h141 __le32 timestamp; member
/linux-4.4.14/drivers/iio/
Dindustrialio-event.c56 int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp) in iio_push_event() argument
66 ev.timestamp = timestamp; in iio_push_event()
/linux-4.4.14/drivers/net/wireless/hostap/
Dhostap_80211.h52 u8 timestamp[8]; member
/linux-4.4.14/net/irda/
Ddiscovery.c66 new->firststamp = new->timestamp; in irlmp_add_discovery()
171 ((jiffies - curr->timestamp) > DISCOVERY_EXPIRE_TIMEOUT))) in irlmp_expire_discoveries()
/linux-4.4.14/drivers/atm/
Deni.h62 ktime_t timestamp; /* for RX timing */ member
Diphase.c150 else if (!dev->desc_tbl[desc1 -1].timestamp) { in ia_hack_tcq()
154 else if (dev->desc_tbl[desc1 -1].timestamp) { in ia_hack_tcq()
160 dev->desc_tbl[desc1 -1].timestamp = 0; in ia_hack_tcq()
190 if (!dev->desc_tbl[i].timestamp) { in get_desc()
195 delta = jiffies - dev->desc_tbl[i].timestamp; in get_desc()
197 … run!! desc_tbl %d = %d delta = %ld, time = %ld\n", i,dev->desc_tbl[i].timestamp, delta, jiffies)… in get_desc()
208 dev->desc_tbl[i].timestamp = 0; in get_desc()
221 while (!desc_num || (dev->desc_tbl[desc_num -1]).timestamp) { in get_desc()
231 dev->desc_tbl[desc_num -1].timestamp = jiffies; in get_desc()
1046 printk("Desc_tbl[%d] = %d \n", i, iadev->desc_tbl[i].timestamp);
[all …]
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/
Dtimer.h7 u64 timestamp; member
/linux-4.4.14/Documentation/pps/
Dpps.txt32 case when a new pulse arrives the system must apply to it a timestamp
122 where "ts" is the event's timestamp.
145 Inside each "assert" and "clear" file you can find the timestamp and a
151 Where before the "#" is the timestamp in seconds; after it is the
/linux-4.4.14/drivers/media/usb/cpia2/
Dcpia2_v4l.c839 buf->timestamp = cam->buffers[buf->index].timestamp; in cpia2_querybuf()
896 tv1 = &cam->buffers[i].timestamp; in find_earliest_filled_buffer()
897 tv2 = &cam->buffers[found].timestamp; in find_earliest_filled_buffer()
951 buf->timestamp = cam->buffers[buf->index].timestamp; in cpia2_dqbuf()
Dcpia2.h357 struct timeval timestamp; member
/linux-4.4.14/drivers/s390/cio/
Dqdio.h190 u64 timestamp; member
243 u64 timestamp; member
Dqdio_debug.c122 q->timestamp, last_ai_time); in qstat_show()
/linux-4.4.14/drivers/firmware/efi/
Defi-pstore.c40 static inline u64 generic_id(unsigned long timestamp, in generic_id() argument
43 return ((u64) timestamp * 100 + part) * 1000 + count; in generic_id()
/linux-4.4.14/net/mac80211/
Dtrace.h1065 __field(u64, timestamp)
1075 __entry->timestamp = ch_switch->timestamp;
2188 __field(u64, timestamp)
2198 __entry->timestamp = ch_switch->timestamp;
2208 __entry->block_tx, __entry->timestamp
2318 __field(u32, timestamp)
2331 __entry->timestamp = params->timestamp;
2341 __entry->timestamp, __entry->switch_time,
Dmesh_sync.c129 t_t = le64_to_cpu(mgmt->u.beacon.timestamp); in mesh_sync_offset_rx_bcn_presp()
/linux-4.4.14/drivers/net/wireless/rt2x00/
Drt2x00debug.c166 struct timeval timestamp; in rt2x00debug_dump_frame() local
172 do_gettimeofday(&timestamp); in rt2x00debug_dump_frame()
201 dump_hdr->timestamp_sec = cpu_to_le32(timestamp.tv_sec); in rt2x00debug_dump_frame()
202 dump_hdr->timestamp_usec = cpu_to_le32(timestamp.tv_usec); in rt2x00debug_dump_frame()
Drt2x00queue.h181 u64 timestamp; member
/linux-4.4.14/drivers/net/wireless/iwlegacy/
Dcommands.h418 __le32 timestamp; member
518 __le32 timestamp; member
531 __le64 timestamp; member
746 __le64 timestamp; member
1183 __le64 timestamp; member
1226 __le64 timestamp; /* TSF at on air rise */ member
/linux-4.4.14/sound/soc/codecs/
Dwmfw.h38 __le64 timestamp; member
/linux-4.4.14/drivers/iio/common/st_sensors/
Dst_sensors_buffer.c117 pf->timestamp); in st_sensors_trigger_handler()
/linux-4.4.14/include/uapi/linux/dvb/
Dvideo.h138 __kernel_time_t timestamp; member
/linux-4.4.14/drivers/iio/imu/
Dadis16400_buffer.c95 pf->timestamp); in adis16400_trigger_handler()
Dadis_buffer.c106 pf->timestamp); in adis_trigger_handler()
/linux-4.4.14/drivers/iio/light/
Dstk3310.c111 u64 timestamp; member
532 data->timestamp = iio_get_time_ns(); in stk3310_irq_handler()
558 iio_push_event(indio_dev, event, data->timestamp); in stk3310_irq_event_handler()
/linux-4.4.14/block/partitions/
Dsun.c34 __be32 timestamp[8]; /* Partition timestamp */ in sun_partition() member
/linux-4.4.14/fs/nfs/
Dnfs4proc.c533 static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp) in do_renew_lease() argument
536 if (time_before(clp->cl_last_renewal,timestamp)) in do_renew_lease()
537 clp->cl_last_renewal = timestamp; in do_renew_lease()
541 static void renew_lease(const struct nfs_server *server, unsigned long timestamp) in renew_lease() argument
546 do_renew_lease(clp, timestamp); in renew_lease()
996 unsigned long timestamp; member
1891 renew_lease(data->o_res.server, data->timestamp); in nfs4_open_confirm_done()
1947 data->timestamp = jiffies; in _nfs4_proc_open_confirm()
2000 data->timestamp = jiffies; in nfs4_open_prepare()
2049 renew_lease(data->o_res.server, data->timestamp); in nfs4_open_done()
[all …]
Ddir.c165 unsigned long timestamp; member
374 unsigned long timestamp, gencount; in nfs_readdir_xdr_filler() local
378 timestamp = jiffies; in nfs_readdir_xdr_filler()
392 desc->timestamp = timestamp; in nfs_readdir_xdr_filler()
406 entry->fattr->time_start = desc->timestamp; in xdr_decode()
/linux-4.4.14/drivers/media/platform/exynos-gsc/
Dgsc-m2m.c89 dst_vb->timestamp = src_vb->timestamp; in gsc_m2m_job_finish()
128 dst_vb->timestamp = src_vb->timestamp; in gsc_get_bufs()
/linux-4.4.14/arch/powerpc/kernel/
Dnvram_64.c379 oops_hdr->timestamp = cpu_to_be64(ktime_get_real_seconds()); in zip_oops()
426 oops_hdr->timestamp = cpu_to_be64(ktime_get_real_seconds()); in nvram_pstore_write()
541 time->tv_sec = be64_to_cpu(oops_hdr->timestamp); in nvram_pstore_read()
724 oops_hdr->timestamp = cpu_to_be64(ktime_get_real_seconds()); in oops_to_nvram()
/linux-4.4.14/drivers/media/pci/meye/
Dmeye.h284 struct timeval timestamp; /* timestamp */ member
Dmeye.c816 v4l2_get_timestamp(&meye.grab_buffer[reqnr].timestamp); in meye_irq()
837 v4l2_get_timestamp(&meye.grab_buffer[reqnr].timestamp); in meye_irq()
1295 buf->timestamp = meye.grab_buffer[index].timestamp; in vidioc_querybuf()
1361 buf->timestamp = meye.grab_buffer[reqnr].timestamp; in vidioc_dqbuf()
/linux-4.4.14/include/media/
Dvideobuf2-v4l2.h42 struct timeval timestamp; member
/linux-4.4.14/drivers/acpi/
Dec.c265 ec->timestamp = jiffies; in acpi_ec_read_data()
274 ec->timestamp = jiffies; in acpi_ec_write_cmd()
281 ec->timestamp = jiffies; in acpi_ec_write_data()
612 unsigned long timeout = ec->timestamp + guard; in ec_guard()
1236 ec->timestamp = jiffies; in make_acpi_ec()
Dinternal.h156 unsigned long timestamp; member
/linux-4.4.14/drivers/staging/iio/meter/
Dade7758_ring.c72 iio_push_to_buffers_with_timestamp(indio_dev, dat64, pf->timestamp); in ade7758_trigger_handler()
/linux-4.4.14/drivers/staging/iio/Documentation/
Dring.txt43 Set the number of bytes for a complete scan. (All samples + timestamp)
Doverview.txt27 merely an event code and a timestamp. Any data associated with the
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/
Ddevices.c431 tsf_low = ch_switch->timestamp & 0x0ffffffff; in iwl5000_hw_channel_switch()
599 tsf_low = ch_switch->timestamp & 0x0ffffffff; in iwl6000_hw_channel_switch()
Drxon.c307 ctx->timing.timestamp = cpu_to_le64(priv->timestamp); in iwl_send_rxon_timing()
343 tsf = priv->timestamp; /* tsf is modifed by do_div: copy it */ in iwl_send_rxon_timing()
1456 priv->timestamp = bss_conf->sync_tsf; in iwlagn_bss_info_changed()
/linux-4.4.14/drivers/net/ethernet/intel/i40e/
Di40e_ptp.c105 u64 timestamp) in i40e_ptp_convert_to_hwtstamp() argument
109 hwtstamps->hwtstamp = ns_to_ktime(timestamp); in i40e_ptp_convert_to_hwtstamp()
/linux-4.4.14/drivers/input/touchscreen/
Dsur40.c52 __le32 timestamp; /* milliseconds (inc. by 16 or 17 each frame) */ member
100 __le32 timestamp; /* milliseconds (increases by 16 or 17 each frame) */ member
447 v4l2_get_timestamp(&new_buf->vb.timestamp); in sur40_process_video()
/linux-4.4.14/drivers/media/usb/uvc/
Duvc_video.c702 vbuf->timestamp.tv_sec, in uvc_video_clock_update()
703 (unsigned long)vbuf->timestamp.tv_usec, in uvc_video_clock_update()
708 vbuf->timestamp.tv_sec = ts.tv_sec; in uvc_video_clock_update()
709 vbuf->timestamp.tv_usec = ts.tv_nsec / NSEC_PER_USEC; in uvc_video_clock_update()
1037 buf->buf.timestamp.tv_sec = ts.tv_sec; in uvc_video_decode_start()
1038 buf->buf.timestamp.tv_usec = in uvc_video_decode_start()
/linux-4.4.14/drivers/staging/rdma/hfi1/
Dmad.h137 s64 timestamp; /* wider than 32 bits to detect 32 bit rollover */ member
/linux-4.4.14/drivers/scsi/
Dpmcraid.c5566 __le64 timestamp; in pmcraid_set_timestamp() local
5568 timestamp = ktime_get_real_seconds() * 1000; in pmcraid_set_timestamp()
5570 pinstance->timestamp_data->timestamp[0] = (__u8)(timestamp); in pmcraid_set_timestamp()
5571 pinstance->timestamp_data->timestamp[1] = (__u8)((timestamp) >> 8); in pmcraid_set_timestamp()
5572 pinstance->timestamp_data->timestamp[2] = (__u8)((timestamp) >> 16); in pmcraid_set_timestamp()
5573 pinstance->timestamp_data->timestamp[3] = (__u8)((timestamp) >> 24); in pmcraid_set_timestamp()
5574 pinstance->timestamp_data->timestamp[4] = (__u8)((timestamp) >> 32); in pmcraid_set_timestamp()
5575 pinstance->timestamp_data->timestamp[5] = (__u8)((timestamp) >> 40); in pmcraid_set_timestamp()
Deata_generic.h307 __u32 timestamp; /* Needed to measure command latency */ member
/linux-4.4.14/drivers/net/wireless/p54/
Dp54.h209 unsigned int timestamp; member
/linux-4.4.14/include/linux/usb/
Dwusb.h134 u8 timestamp[3]; member
/linux-4.4.14/drivers/media/pci/zoran/
Dzoran.h42 struct timeval timestamp; /* timestamp */ member
/linux-4.4.14/drivers/net/fddi/skfp/h/
Dfddimib.h34 TimeStamp timestamp ; member
/linux-4.4.14/drivers/staging/android/
Dsync_debug.c100 ktime_to_timespec64(pt->base.timestamp); in sync_print_pt()
/linux-4.4.14/drivers/staging/wlan-ng/
Dp80211metastruct.h101 p80211item_uint32_t timestamp; member
/linux-4.4.14/drivers/net/ethernet/
Dec_bhf.c92 u8 timestamp[8]; member
109 u8 timestamp[8]; member
/linux-4.4.14/Documentation/filesystems/
Dcramfs.txt38 which the timestamp reverts to 1970, i.e. moves backwards in time.
/linux-4.4.14/drivers/media/platform/coda/
Dcoda.h141 struct timeval timestamp; member
Dcoda-bit.c282 meta->timestamp = src_buf->timestamp; in coda_fill_bitstream()
1367 dst_buf->timestamp = src_buf->timestamp; in coda_finish_encode()
2043 dst_buf->timestamp = meta->timestamp; in coda_finish_decode()
/linux-4.4.14/tools/perf/Documentation/
Dperf-script-perl.txt98 $common_secs the secs portion of the event timestamp
99 $common_nsecs the nsecs portion of the event timestamp
/linux-4.4.14/arch/ia64/include/asm/
Dsal.h331 sal_log_timestamp_t timestamp; /* Timestamp */ member
505 u8 timestamp[4]; member
/linux-4.4.14/drivers/media/platform/sti/bdisp/
Dbdisp-v4l2.c194 dst_vb->timestamp = src_vb->timestamp; in bdisp_job_finish()
300 dst_vb->timestamp = src_vb->timestamp; in bdisp_get_bufs()
/linux-4.4.14/drivers/media/usb/gspca/
Dgspca.c439 v4l2_get_timestamp(&frame->v4l2_buf.timestamp); in gspca_frame_add()
1901 struct timeval timestamp; in dev_read() local
1912 v4l2_get_timestamp(&timestamp); in dev_read()
1913 timestamp.tv_sec--; in dev_read()
1930 if (frame->v4l2_buf.timestamp.tv_sec >= timestamp.tv_sec) in dev_read()
/linux-4.4.14/drivers/usb/gadget/function/
Duvc_queue.c332 v4l2_get_timestamp(&buf->buf.timestamp); in uvcg_queue_next_buffer()
/linux-4.4.14/drivers/media/pci/cobalt/
Dcobalt-irq.c137 v4l2_get_timestamp(&cb->vb.timestamp); in cobalt_dma_stream_queue_handler()
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/
Dcfg80211.h304 __le16 timestamp; member
/linux-4.4.14/drivers/media/usb/usbvision/
Dusbvision-video.c730 vb->timestamp = usbvision->frame[vb->index].timestamp; in vidioc_querybuf()
799 vb->timestamp = f->timestamp; in vidioc_dqbuf()
Dusbvision.h323 struct timeval timestamp; member
/linux-4.4.14/arch/nios2/boot/dts/
D10m50_devboard.dts92 timestamp = <1431309290>;
/linux-4.4.14/drivers/net/ethernet/broadcom/
Dcnic.h166 unsigned long timestamp; member
/linux-4.4.14/drivers/net/ethernet/ibm/ehea/
Dehea_qmr.h177 u32 timestamp; member
/linux-4.4.14/drivers/media/pci/saa7164/
Dsaa7164-types.h211 u64 timestamp; member

123