Searched refs:thread_koid (Results 1 - 6 of 6) sorted by relevance

/fuchsia/zircon/system/ulib/trace-engine/include/trace-engine/
H A Dcontext.h189 // |thread_koid| is the koid of the thread to register.
195 zx_koid_t process_koid, zx_koid_t thread_koid,
202 zx_koid_t process_koid, zx_koid_t thread_koid) {
204 trace_context_register_thread(context, process_koid, thread_koid, &ref);
270 // |thread_koid| is the koid of the thread being described.
276 zx_koid_t process_koid, zx_koid_t thread_koid,
585 // |thread_koid| is the koid of the thread being described.
592 zx_koid_t thread_koid);
200 trace_context_make_registered_thread( trace_context_t* context, zx_koid_t process_koid, zx_koid_t thread_koid) argument
H A Dtypes.h189 zx_koid_t thread_koid) {
191 thread_koid != ZX_KOID_INVALID);
195 .inline_thread_koid = thread_koid};
188 trace_make_inline_thread_ref(zx_koid_t process_koid, zx_koid_t thread_koid) argument
/fuchsia/zircon/system/ulib/trace-engine/
H A Dcontext_api.cpp95 zx_koid_t thread_koid; member in struct:trace::__anon1227::ThreadEntry
101 zx_koid_t GetKey() const { return thread_koid; }
183 ThreadEntry* CacheThreadEntry(uint32_t generation, zx_koid_t thread_koid) { argument
188 auto it = cache->thread_table.find(thread_koid);
197 entry->thread_koid = thread_koid;
470 zx_koid_t process_koid, zx_koid_t thread_koid) {
482 .WriteUint64(thread_koid);
616 zx_koid_t thread_koid = trace::GetCurrentThreadKoid(); local
617 trace_context_write_thread_info_record(context, process_koid, thread_koid,
469 WriteThreadRecord(trace_context_t* context, trace_thread_index_t index, zx_koid_t process_koid, zx_koid_t thread_koid) argument
646 trace_context_register_thread( trace_context_t* context, zx_koid_t process_koid, zx_koid_t thread_koid, trace_thread_ref_t* out_ref) argument
807 trace_context_write_thread_info_record( trace_context_t* context, zx_koid_t process_koid, zx_koid_t thread_koid, const trace_string_ref_t* thread_name_ref) argument
1095 trace_context_write_thread_record( trace_context_t* context, trace_thread_index_t index, zx_koid_t process_koid, zx_koid_t thread_koid) argument
[all...]
/fuchsia/zircon/system/utest/trace-reader/
H A Drecords_tests.cpp25 EXPECT_EQ(ZX_KOID_INVALID, pt.thread_koid());
30 EXPECT_EQ(1, pt.thread_koid());
35 EXPECT_EQ(0, pt.thread_koid());
40 EXPECT_EQ(5, pt.thread_koid());
601 EXPECT_EQ(5, r.GetThread().process_thread.thread_koid());
607 EXPECT_EQ(5, m.GetThread().process_thread.thread_koid());
613 EXPECT_EQ(5, r.GetThread().process_thread.thread_koid());
633 EXPECT_EQ(5, r.GetEvent().process_thread.thread_koid());
648 EXPECT_EQ(5, m.GetEvent().process_thread.thread_koid());
663 EXPECT_EQ(5, r.GetEvent().process_thread.thread_koid());
[all...]
/fuchsia/zircon/system/ulib/trace-reader/
H A Dreader.cpp199 zx_koid_t process_koid, thread_koid; local
201 !record.ReadUint64(&thread_koid))
204 ProcessThread process_thread(process_koid, thread_koid);
614 zx_koid_t process_koid, thread_koid; local
616 !chunk.ReadUint64(&thread_koid)) {
620 *out_process_thread = ProcessThread(process_koid, thread_koid);
/fuchsia/zircon/system/ulib/trace-reader/include/trace-reader/
H A Drecords.h30 constexpr explicit ProcessThread(zx_koid_t process_koid, zx_koid_t thread_koid) argument
31 : process_koid_(process_koid), thread_koid_(thread_koid) {}
56 constexpr zx_koid_t thread_koid() const { return thread_koid_; } function in class:trace::final

Completed in 90 milliseconds