/linux-4.4.14/tools/perf/util/ |
D | ordered-events.c | 17 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 …]
|
D | thread.h | 60 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);
|
D | comm.c | 82 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()
|
D | thread-stack.c | 76 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 …]
|
D | intel-pt.c | 136 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 …]
|
D | thread.c | 124 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()
|
D | comm.h | 22 struct comm *comm__new(const char *str, u64 timestamp, bool exec); 24 int comm__override(struct comm *comm, const char *str, u64 timestamp,
|
D | intel-bts.c | 450 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()
|
D | ordered-events.h | 9 u64 timestamp; member
|
/linux-4.4.14/arch/alpha/kernel/ |
D | err_common.c | 90 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(×tamp); 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 …]
|
D | err_ev7.c | 253 el_print_timestamp(&packet->by_type.logout.timestamp); in ev7_process_pal_subpacket()
|
/linux-4.4.14/tools/perf/util/intel-pt-decoder/ |
D | intel-pt-decoder.c | 96 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 …]
|
D | intel-pt-decoder.h | 63 uint64_t timestamp; member
|
/linux-4.4.14/include/trace/events/ |
D | power_cpu_migrate.h | 10 TP_PROTO(u64 timestamp, \ 13 TP_ARGS(timestamp, \ 22 __field(u64, timestamp ) 27 __entry->timestamp = timestamp; 32 (unsigned long long)__entry->timestamp,
|
D | v4l2.h | 110 __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/ |
D | inv_mpu_ring.c | 108 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, ×tamp, 1, in inv_mpu6050_irq_handler() 129 s64 timestamp; in inv_mpu6050_read_fifo() local 170 result = kfifo_out(&st->timestamps, ×tamp, 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/ |
D | trace-vmscan-postprocess.pl | 260 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 …]
|
D | trace-pagealloc-postprocess.pl | 188 my $timestamp;
|
/linux-4.4.14/drivers/net/wireless/ath/ath9k/ |
D | link.c | 308 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 …]
|
D | htc_drv_main.c | 752 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 …]
|
D | Kconfig | 103 based on ACK frame RX timestamp, TX frame timestamp and frame
|
/linux-4.4.14/tools/perf/ |
D | builtin-sched.c | 64 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 …]
|
D | builtin-timechart.c | 128 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/ |
D | timestamping.txt | 7 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 …]
|
D | packet_mmap.txt | 26 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/ |
D | scan.c | 82 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/ |
D | base.c | 42 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/ |
D | gen_initramfs_list.sh | 302 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/ |
D | ecma_167.h | 60 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 …]
|
D | udftime.c | 88 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()
|
D | udfdecl.h | 252 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/ |
D | timestamping.txt | 13 - 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/ |
D | cc10001_adc.c | 273 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()
|
D | ad7291.c | 118 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()
|
D | at91_adc.c | 257 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()
|
D | ad7266.c | 48 s64 timestamp; member 93 pf->timestamp); in ad7266_trigger_handler()
|
/linux-4.4.14/drivers/ptp/ |
D | ptp_ixp46x.c | 101 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()
|
D | ptp_pch.c | 377 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()
|
D | ptp_clock.c | 61 seconds = div_u64_rem(src->timestamp, 1000000000, &remainder); in enqueue_external_timestamp()
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | v4l2-event.c | 159 kev->event.timestamp = *ts; in __v4l2_event_queue_fh() 173 struct timespec timestamp; in v4l2_event_queue() local 178 ktime_get_ts(×tamp); in v4l2_event_queue() 183 __v4l2_event_queue_fh(fh, ev, ×tamp); in v4l2_event_queue() 192 struct timespec timestamp; in v4l2_event_queue_fh() local 194 ktime_get_ts(×tamp); in v4l2_event_queue_fh() 197 __v4l2_event_queue_fh(fh, ev, ×tamp); in v4l2_event_queue_fh()
|
D | v4l2-compat-ioctl32.c | 338 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()
|
D | videobuf2-v4l2.c | 123 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/ |
D | fnic_trace.h | 66 } timestamp, fnaddr; member 92 trace_buf->timestamp.low = jiffies; \ 95 trace_buf->timestamp.val = jiffies; \
|
D | fnic_trace.c | 132 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/ |
D | kbuffer-parse.c | 59 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/ |
D | digsig.h | 33 uint32_t timestamp; /* key made, always 0 for now */ member 41 uint32_t timestamp; /* signature made */ member
|
D | ptp_clock_kernel.h | 156 u64 timestamp; member
|
D | sdla.h | 239 short timestamp; member
|
D | fence.h | 80 ktime_t timestamp; member
|
D | cper.h | 272 __u64 timestamp; member
|
D | pe.h | 105 uint32_t timestamp; /* time_t */ member
|
D | perf_event.h | 624 u64 timestamp; member 686 u64 timestamp; member
|
D | firewire.h | 299 u32 timestamp; member
|
/linux-4.4.14/arch/s390/include/asm/ |
D | cpu_mf.h | 137 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/ |
D | err_common.h | 91 union el_timestamp timestamp; member 98 union el_timestamp timestamp; member
|
D | err_ev7.h | 14 union el_timestamp timestamp; member
|
/linux-4.4.14/drivers/iio/common/ssp_sensors/ |
D | ssp_iio.c | 80 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()
|
D | ssp_iio_sensor.h | 43 unsigned int len, int64_t timestamp);
|
D | ssp.h | 199 int64_t timestamp; member
|
D | ssp_spi.c | 301 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/ |
D | trace.h | 47 __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/ |
D | vivid-kthread-out.c | 98 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()
|
D | vivid-vbi-cap.c | 111 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()
|
D | vivid-sdr-cap.c | 120 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()
|
D | vivid-kthread-cap.c | 444 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/ |
D | dht11.c | 70 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/ |
D | buffer.h | 143 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()
|
D | trigger_consumer.h | 40 s64 timestamp; member
|
D | iio.h | 529 int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp);
|
/linux-4.4.14/net/hsr/ |
D | hsr_framereg.c | 360 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/ |
D | s3c_adc_battery.c | 36 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/ |
D | lis3l02dq_core.c | 454 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()
|
D | lis3l02dq_ring.c | 151 iio_push_to_buffers_with_timestamp(indio_dev, data, pf->timestamp); in lis3l02dq_trigger_handler()
|
/linux-4.4.14/Documentation/ |
D | digsig.txt | 24 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
|
D | lockup-watchdogs.txt | 50 timestamp every time it is scheduled. If that timestamp is not updated
|
/linux-4.4.14/arch/s390/appldata/ |
D | appldata_net_sum.c | 33 u64 timestamp; member 114 net_data->timestamp = get_tod_clock(); in appldata_get_net_sum_data()
|
D | appldata_mem.c | 37 u64 timestamp; member 112 mem_data->timestamp = get_tod_clock(); in appldata_get_mem_data()
|
D | appldata_os.c | 58 u64 timestamp; member 159 os_data->timestamp = get_tod_clock(); in appldata_get_os_data()
|
/linux-4.4.14/drivers/dma-buf/ |
D | fence.c | 74 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/ |
D | seq_prioq.c | 268 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()
|
D | seq_prioq.h | 56 void snd_seq_prioq_leave(struct snd_seq_prioq *f, int client, int timestamp);
|
/linux-4.4.14/drivers/iio/gyro/ |
D | ssp_gyro_sensor.c | 92 int64_t timestamp) in ssp_process_gyro_data() argument 95 timestamp); in ssp_process_gyro_data()
|
D | itg3200_buffer.c | 58 iio_push_to_buffers_with_timestamp(indio_dev, buf, pf->timestamp); in itg3200_trigger_handler()
|
/linux-4.4.14/drivers/iio/accel/ |
D | ssp_accel_sensor.c | 92 int64_t timestamp) in ssp_process_accel_data() argument 95 timestamp); in ssp_process_accel_data()
|
D | kxcjk-1013.c | 109 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()
|
D | bmc150-accel-core.c | 204 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 …]
|
D | mma9553.c | 200 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/ |
D | nosy-dump.h | 14 uint32_t timestamp; member 77 uint32_t timestamp; member
|
/linux-4.4.14/drivers/net/ethernet/cavium/liquidio/ |
D | octeon_nic.h | 100 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/ |
D | trace.h | 465 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/ |
D | tdls.c | 301 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()
|
D | fw-api.h | 497 __le32 timestamp; member 519 __le32 timestamp; member 544 __le32 timestamp; member 590 __le64 timestamp; member 865 __le32 timestamp; member 1301 __le64 timestamp; member
|
D | fw-api-rx.h | 108 __le64 timestamp; member
|
D | fw-api-tof.h | 324 __le32 timestamp; member
|
/linux-4.4.14/fs/pstore/ |
D | ram.c | 248 struct timespec timestamp; in ramoops_write_kmsg_hdr() local 252 if (__getnstimeofday(×tamp)) { 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/ |
D | mmiotrace.txt | 133 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/ |
D | ad7150.c | 494 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/ |
D | gianfar_ptp.c | 221 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/ |
D | events.h | 23 __s64 timestamp; member
|
/linux-4.4.14/net/batman-adv/ |
D | fragmentation.h | 51 batadv_has_timed_out(frags_entry->timestamp, BATADV_FRAG_TIMEOUT)) in batadv_frag_check_entry()
|
D | fragmentation.c | 182 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()
|
D | main.h | 292 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()
|
D | types.h | 154 unsigned long timestamp; member 1078 unsigned long timestamp; member
|
/linux-4.4.14/include/uapi/linux/ |
D | dlm_netlink.h | 33 unsigned long timestamp; member
|
/linux-4.4.14/drivers/scsi/bfa/ |
D | bfa_cs.h | 55 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/ |
D | bh.c | 477 unsigned long timestamp = jiffies; in cw1200_bh() local 493 ×tamp, in cw1200_bh() 500 timeout = timestamp + in cw1200_bh() 510 timestamp, jiffies); in cw1200_bh()
|
D | queue.h | 100 unsigned long *timestamp,
|
D | queue.c | 539 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()
|
D | txrx.c | 470 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()
|
D | cw1200.h | 86 unsigned long timestamp; member
|
/linux-4.4.14/drivers/spi/ |
D | spi-mpc52xx.c | 85 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/ |
D | lec_arpc.h | 28 unsigned long timestamp; /* Used for various timestamping things: member
|
D | lec.c | 1393 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/ |
D | discovery.h | 85 unsigned long timestamp; /* Last time discovered */ member
|
/linux-4.4.14/drivers/net/wireless/ti/wl1251/ |
D | rx.h | 76 u32 timestamp; /* In microseconds */ member
|
D | rx.c | 57 status->mactime = desc->timestamp; in wl1251_rx_status()
|
/linux-4.4.14/tools/iio/ |
D | iio_event_monitor.c | 219 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/ |
D | ieee80211_ext.h | 217 __le64 timestamp; member 229 __le64 timestamp; member
|
/linux-4.4.14/include/linux/iio/common/ |
D | ssp_sensors.h | 65 int64_t timestamp);
|
/linux-4.4.14/drivers/net/ethernet/intel/fm10k/ |
D | fm10k_pci.c | 1159 u64 timestamp; in fm10k_1588_msg_vf() local 1163 ×tamp); 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 ×tamp, 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 …]
|
D | fm10k_debugfs.c | 112 rxd->w.sglort, rxd->q.timestamp); in fm10k_dbg_rx_desc_seq_show()
|
/linux-4.4.14/drivers/usb/isp1760/ |
D | isp1760-hcd.h | 32 unsigned long timestamp; member
|
/linux-4.4.14/drivers/net/wireless/ |
D | ray_cs.h | 11 UCHAR timestamp[8]; member
|
D | wl3501.h | 389 u8 timestamp[8]; member 443 char timestamp[8]; member
|
D | rayctl.h | 124 UCHAR timestamp[8]; member 135 UCHAR timestamp[8]; member
|
D | rndis_wlan.c | 270 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/ |
D | core-transaction.c | 736 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/ |
D | sound_config.h | 87 int timestamp; member
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | nvram.h | 41 __be64 timestamp; member
|
/linux-4.4.14/drivers/net/ethernet/mellanox/mlx4/ |
D | en_clock.c | 63 u64 timestamp) in mlx4_en_fill_hwtstamps() argument 69 nsec = timecounter_cyc2time(&mdev->clock, timestamp); in mlx4_en_fill_hwtstamps()
|
D | en_tx.c | 277 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()
|
D | en_rx.c | 759 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/ |
D | rx.h | 141 __le32 timestamp; member
|
/linux-4.4.14/drivers/iio/ |
D | industrialio-event.c | 56 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/ |
D | hostap_80211.h | 52 u8 timestamp[8]; member
|
/linux-4.4.14/net/irda/ |
D | discovery.c | 66 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/ |
D | eni.h | 62 ktime_t timestamp; /* for RX timing */ member
|
D | iphase.c | 150 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/ |
D | timer.h | 7 u64 timestamp; member
|
/linux-4.4.14/Documentation/pps/ |
D | pps.txt | 32 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/ |
D | cpia2_v4l.c | 839 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()
|
D | cpia2.h | 357 struct timeval timestamp; member
|
/linux-4.4.14/drivers/s390/cio/ |
D | qdio.h | 190 u64 timestamp; member 243 u64 timestamp; member
|
D | qdio_debug.c | 122 q->timestamp, last_ai_time); in qstat_show()
|
/linux-4.4.14/drivers/firmware/efi/ |
D | efi-pstore.c | 40 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/ |
D | trace.h | 1065 __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,
|
D | mesh_sync.c | 129 t_t = le64_to_cpu(mgmt->u.beacon.timestamp); in mesh_sync_offset_rx_bcn_presp()
|
/linux-4.4.14/drivers/net/wireless/rt2x00/ |
D | rt2x00debug.c | 166 struct timeval timestamp; in rt2x00debug_dump_frame() local 172 do_gettimeofday(×tamp); 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()
|
D | rt2x00queue.h | 181 u64 timestamp; member
|
/linux-4.4.14/drivers/net/wireless/iwlegacy/ |
D | commands.h | 418 __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/ |
D | wmfw.h | 38 __le64 timestamp; member
|
/linux-4.4.14/drivers/iio/common/st_sensors/ |
D | st_sensors_buffer.c | 117 pf->timestamp); in st_sensors_trigger_handler()
|
/linux-4.4.14/include/uapi/linux/dvb/ |
D | video.h | 138 __kernel_time_t timestamp; member
|
/linux-4.4.14/drivers/iio/imu/ |
D | adis16400_buffer.c | 95 pf->timestamp); in adis16400_trigger_handler()
|
D | adis_buffer.c | 106 pf->timestamp); in adis_trigger_handler()
|
/linux-4.4.14/drivers/iio/light/ |
D | stk3310.c | 111 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/ |
D | sun.c | 34 __be32 timestamp[8]; /* Partition timestamp */ in sun_partition() member
|
/linux-4.4.14/fs/nfs/ |
D | nfs4proc.c | 533 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 …]
|
D | dir.c | 165 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/ |
D | gsc-m2m.c | 89 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/ |
D | nvram_64.c | 379 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/ |
D | meye.h | 284 struct timeval timestamp; /* timestamp */ member
|
D | meye.c | 816 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/ |
D | videobuf2-v4l2.h | 42 struct timeval timestamp; member
|
/linux-4.4.14/drivers/acpi/ |
D | ec.c | 265 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()
|
D | internal.h | 156 unsigned long timestamp; member
|
/linux-4.4.14/drivers/staging/iio/meter/ |
D | ade7758_ring.c | 72 iio_push_to_buffers_with_timestamp(indio_dev, dat64, pf->timestamp); in ade7758_trigger_handler()
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | ring.txt | 43 Set the number of bytes for a complete scan. (All samples + timestamp)
|
D | overview.txt | 27 merely an event code and a timestamp. Any data associated with the
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/ |
D | devices.c | 431 tsf_low = ch_switch->timestamp & 0x0ffffffff; in iwl5000_hw_channel_switch() 599 tsf_low = ch_switch->timestamp & 0x0ffffffff; in iwl6000_hw_channel_switch()
|
D | rxon.c | 307 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/ |
D | i40e_ptp.c | 105 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/ |
D | sur40.c | 52 __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/ |
D | uvc_video.c | 702 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/ |
D | mad.h | 137 s64 timestamp; /* wider than 32 bits to detect 32 bit rollover */ member
|
/linux-4.4.14/drivers/scsi/ |
D | pmcraid.c | 5566 __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()
|
D | eata_generic.h | 307 __u32 timestamp; /* Needed to measure command latency */ member
|
/linux-4.4.14/drivers/net/wireless/p54/ |
D | p54.h | 209 unsigned int timestamp; member
|
/linux-4.4.14/include/linux/usb/ |
D | wusb.h | 134 u8 timestamp[3]; member
|
/linux-4.4.14/drivers/media/pci/zoran/ |
D | zoran.h | 42 struct timeval timestamp; /* timestamp */ member
|
/linux-4.4.14/drivers/net/fddi/skfp/h/ |
D | fddimib.h | 34 TimeStamp timestamp ; member
|
/linux-4.4.14/drivers/staging/android/ |
D | sync_debug.c | 100 ktime_to_timespec64(pt->base.timestamp); in sync_print_pt()
|
/linux-4.4.14/drivers/staging/wlan-ng/ |
D | p80211metastruct.h | 101 p80211item_uint32_t timestamp; member
|
/linux-4.4.14/drivers/net/ethernet/ |
D | ec_bhf.c | 92 u8 timestamp[8]; member 109 u8 timestamp[8]; member
|
/linux-4.4.14/Documentation/filesystems/ |
D | cramfs.txt | 38 which the timestamp reverts to 1970, i.e. moves backwards in time.
|
/linux-4.4.14/drivers/media/platform/coda/ |
D | coda.h | 141 struct timeval timestamp; member
|
D | coda-bit.c | 282 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/ |
D | perf-script-perl.txt | 98 $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/ |
D | sal.h | 331 sal_log_timestamp_t timestamp; /* Timestamp */ member 505 u8 timestamp[4]; member
|
/linux-4.4.14/drivers/media/platform/sti/bdisp/ |
D | bdisp-v4l2.c | 194 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/ |
D | gspca.c | 439 v4l2_get_timestamp(&frame->v4l2_buf.timestamp); in gspca_frame_add() 1901 struct timeval timestamp; in dev_read() local 1912 v4l2_get_timestamp(×tamp); 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/ |
D | uvc_queue.c | 332 v4l2_get_timestamp(&buf->buf.timestamp); in uvcg_queue_next_buffer()
|
/linux-4.4.14/drivers/media/pci/cobalt/ |
D | cobalt-irq.c | 137 v4l2_get_timestamp(&cb->vb.timestamp); in cobalt_dma_stream_queue_handler()
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
D | cfg80211.h | 304 __le16 timestamp; member
|
/linux-4.4.14/drivers/media/usb/usbvision/ |
D | usbvision-video.c | 730 vb->timestamp = usbvision->frame[vb->index].timestamp; in vidioc_querybuf() 799 vb->timestamp = f->timestamp; in vidioc_dqbuf()
|
D | usbvision.h | 323 struct timeval timestamp; member
|
/linux-4.4.14/arch/nios2/boot/dts/ |
D | 10m50_devboard.dts | 92 timestamp = <1431309290>;
|
/linux-4.4.14/drivers/net/ethernet/broadcom/ |
D | cnic.h | 166 unsigned long timestamp; member
|
/linux-4.4.14/drivers/net/ethernet/ibm/ehea/ |
D | ehea_qmr.h | 177 u32 timestamp; member
|
/linux-4.4.14/drivers/media/pci/saa7164/ |
D | saa7164-types.h | 211 u64 timestamp; member
|