Searched refs:timestamp (Results 1 - 25 of 42) sorted by relevance

12

/fuchsia/zircon/system/ulib/zx/include/lib/zx/
H A Dinterrupt.h34 zx_status_t wait(zx::time* timestamp) { argument
35 return zx_interrupt_wait(get(), timestamp->get_address());
42 zx_status_t trigger(uint32_t options, zx::time timestamp) { argument
43 return zx_interrupt_trigger(get(), options, timestamp.get());
/fuchsia/zircon/system/public/zircon/syscalls/
H A Dlog.h16 zx_time_t timestamp; member in struct:zx_log_record
H A Dport.h131 zx_time_t timestamp; member in struct:zx_packet_interrupt
/fuchsia/zircon/system/uapp/dlog/
H A Ddlog.c84 (int)(rec->timestamp / 1000000000ULL),
85 (int)((rec->timestamp / 1000000ULL) % 1000ULL));
/fuchsia/zircon/system/utest/core/interrupt/
H A Dinterrupt-test.c83 ASSERT_EQ(out.interrupt.timestamp, signaled_timestamp_1, "");
89 ASSERT_EQ(out.interrupt.timestamp, signaled_timestamp_1, "");
96 // the 2nd timestamp is recorded and upon ACK another packet is queued
100 ASSERT_EQ(out.interrupt.timestamp, signaled_timestamp_1, "");
103 ASSERT_EQ(out.interrupt.timestamp, signaled_timestamp_2, "");
124 zx_time_t timestamp; local
142 ASSERT_EQ(zx_interrupt_wait(virt_interrupt_handle_cancelled, &timestamp), ZX_ERR_CANCELED, "");
143 ASSERT_EQ(zx_interrupt_wait(virt_interrupt_handle, &timestamp), ZX_OK, "");
144 ASSERT_EQ(timestamp, signaled_timestamp, "");
/fuchsia/zircon/kernel/object/
H A Dinterrupt_dispatcher.cpp64 bool InterruptDispatcher::SendPacketLocked(zx_time_t timestamp) { argument
65 bool status = port_dispatcher_->QueueInterruptPacket(&port_packet_, timestamp);
73 zx_status_t InterruptDispatcher::Trigger(zx_time_t timestamp) { argument
84 // only record timestamp if this is the first signal since we started waiting
86 timestamp_ = timestamp;
93 // only record timestamp if this is the first signal since we started waiting
98 SendPacketLocked(timestamp);
110 // only record timestamp if this is the first IRQ since we started waiting
H A Dport_dispatcher.cpp240 bool PortDispatcher::QueueInterruptPacket(PortInterruptPacket* port_packet, zx_time_t timestamp) { argument
245 port_packet->timestamp = timestamp;
296 out_packet->interrupt.timestamp = port_interrupt_packet->timestamp;
/fuchsia/zircon/system/dev/display/intel-i915/
H A Dinterrupts.cpp37 zx_time_t timestamp; local
38 if (zx_interrupt_wait(irq_.get(), &timestamp) != ZX_OK) {
70 HandlePipeInterrupt(registers::PIPE_C, timestamp);
72 HandlePipeInterrupt(registers::PIPE_B, timestamp);
74 HandlePipeInterrupt(registers::PIPE_A, timestamp);
90 void Interrupts::HandlePipeInterrupt(registers::Pipe pipe, zx_time_t timestamp) { argument
96 controller_->HandlePipeVsync(pipe, timestamp);
H A Dinterrupts.h36 void HandlePipeInterrupt(registers::Pipe pipe, zx_time_t timestamp);
/fuchsia/zircon/system/ulib/framebuffer/include/lib/framebuffer/
H A Dframebuffer.h70 // Wait for vsync event. VSync time is returned in |timestamp| and scanned out
72 zx_status_t fb_wait_for_vsync(zx_time_t* timestamp, uint64_t* image_id);
/fuchsia/zircon/kernel/object/include/object/
H A Dinterrupt_dispatcher.h34 zx_status_t Trigger(zx_time_t timestamp);
51 bool SendPacketLocked(zx_time_t timestamp) TA_REQ(spinlock_);
H A Dport_dispatcher.h106 zx_time_t timestamp; member in struct:final
177 bool QueueInterruptPacket(PortInterruptPacket* port_packet, zx_time_t timestamp);
/fuchsia/zircon/system/core/netsvc/
H A Ddebuglog.c50 (int)(rec->timestamp / 1000000000ULL),
51 (int)((rec->timestamp / 1000000ULL) % 1000ULL),
/fuchsia/zircon/system/ulib/trace-reader/
H A Dreader.cpp219 trace_ticks_t timestamp; local
224 if (!record.ReadUint64(&timestamp) ||
237 timestamp, process_thread, fbl::move(category), fbl::move(name),
247 timestamp, process_thread, fbl::move(category), fbl::move(name),
253 timestamp, process_thread, fbl::move(category), fbl::move(name),
259 timestamp, process_thread, fbl::move(category), fbl::move(name),
268 timestamp, process_thread, fbl::move(category), fbl::move(name),
277 timestamp, process_thread, fbl::move(category), fbl::move(name),
286 timestamp, process_thread, fbl::move(category), fbl::move(name),
295 timestamp, process_threa
384 trace_ticks_t timestamp; local
408 trace_ticks_t timestamp; local
[all...]
H A Drecords.cpp441 event_.timestamp, event_.process_thread.ToString().c_str(),
462 context_switch_.timestamp,
471 log_.timestamp, log_.process_thread.ToString().c_str(),
/fuchsia/zircon/third_party/uapp/mkfs-msdosfs/
H A Dmkfs_msdos.h46 AOPT('T', time_t, timestamp, 0, "Timestamp") \
/fuchsia/zircon/kernel/lib/debuglog/include/lib/
H A Ddebuglog.h63 uint64_t timestamp; member in struct:dlog_header
/fuchsia/zircon/system/uapp/psutils/
H A Dkstats.c166 fprintf(f, " -t Print timestamp for each report\n");
193 bool timestamp = false; local
224 timestamp = true;
254 if (timestamp) {
/fuchsia/zircon/system/public/zircon/device/
H A Dcamera.h95 int64_t timestamp; member in struct:camera_metadata
/fuchsia/zircon/system/ulib/dispatcher-pool/
H A Ddispatcher-interrupt.cpp79 zx_status_t res = process_handler_(this, pending_pkt_.interrupt.timestamp);
/fuchsia/zircon/kernel/syscalls/
H A Dddk.cpp497 zx_time_t timestamp;
498 status = interrupt->WaitForInterrupt(&timestamp);
500 status = out_timestamp.copy_to_user(timestamp);
518 zx_time_t timestamp) {
532 return interrupt->Trigger(timestamp);
516 sys_interrupt_trigger(zx_handle_t handle, uint32_t options, zx_time_t timestamp) argument
/fuchsia/zircon/system/utest/trace-reader/
H A Drecords_tests.cpp631 EXPECT_EQ(123, r.GetEvent().timestamp);
646 EXPECT_EQ(123, m.GetEvent().timestamp);
661 EXPECT_EQ(123, r.GetEvent().timestamp);
761 EXPECT_EQ(123, r.GetContextSwitch().timestamp);
773 EXPECT_EQ(123, m.GetContextSwitch().timestamp);
785 EXPECT_EQ(123, r.GetContextSwitch().timestamp);
804 EXPECT_EQ(123, r.GetLog().timestamp);
811 EXPECT_EQ(123, m.GetLog().timestamp);
818 EXPECT_EQ(123, r.GetLog().timestamp);
/fuchsia/zircon/kernel/lib/debuglog/
H A Ddebuglog.cpp129 hdr.timestamp = current_time();
369 (int)(rec.hdr.timestamp / ZX_SEC(1)),
370 (int)((rec.hdr.timestamp / ZX_MSEC(1)) % 1000ULL),
/fuchsia/zircon/system/ulib/perftest/
H A Drunner.cpp71 uint64_t timestamp = zx_ticks_get(); variable
88 // test run), plus one more timestamp for the end of the last
110 timestamps_[next_idx_] = timestamp;
114 timestamps_[next_idx_] = timestamp;
270 // Next index in timestamps_ for writing a timestamp to. The initial
/fuchsia/zircon/system/dev/display/display/
H A Dcontroller.h84 void OnDisplayVsync(uint64_t display_id, zx_time_t timestamp,

Completed in 255 milliseconds

12