Searched refs:gettid (Results 1 – 25 of 46) sorted by relevance
12
/system/core/libprocinfo/ |
D | process_test.cpp | 37 static pid_t gettid() { in gettid() function 44 ASSERT_TRUE(android::procinfo::GetProcessInfo(gettid(), &self)); in TEST() 45 ASSERT_EQ(gettid(), self.tid); in TEST() 54 int fd = open(android::base::StringPrintf("/proc/%d", gettid()).c_str(), O_DIRECTORY | O_RDONLY); in TEST() 60 ASSERT_EQ(gettid(), self.tid); in TEST() 69 pid_t main_tid = gettid(); in TEST() 71 pid_t thread_tid = gettid(); in TEST()
|
/system/core/debuggerd/handler/ |
D | debuggerd_fallback.cpp | 83 thread.tid = gettid(); in debuggerd_fallback_trace() 84 thread.thread_name = get_thread_name(gettid()); in debuggerd_fallback_trace() 112 pid_t current_tid = gettid(); in iterate_siblings() 203 if (tid != gettid()) { in trace_handler() 206 "thread %d received output fd for thread %d?", gettid(), tid); in trace_handler() 213 async_safe_format_log(ANDROID_LOG_ERROR, "libc", "cmpxchg for thread %d failed", gettid()); in trace_handler()
|
/system/bt/osi/include/ |
D | compat.h | 29 pid_t gettid(void);
|
/system/core/libcutils/include_vndk/cutils/ |
D | threads.h | 36 extern pid_t gettid();
|
/system/core/libcutils/include/cutils/ |
D | threads.h | 36 extern pid_t gettid();
|
/system/core/base/ |
D | threads.cpp | 35 return gettid(); in GetThreadId()
|
/system/bt/vendor_libs/linux/interface/ |
D | async_fd_watcher.cc | 121 if (sched_setscheduler(gettid(), SCHED_FIFO, &rt_params)) { in ThreadRoutine() 123 getpid(), gettid(), strerror(errno)); in ThreadRoutine()
|
/system/core/debuggerd/seccomp_policy/ |
D | crash_dump.x86.policy | 12 gettid: 1
|
D | crash_dump.x86_64.policy | 11 gettid: 1
|
D | crash_dump.arm.policy | 12 gettid: 1
|
D | crash_dump.arm64.policy | 11 gettid: 1
|
D | crash_dump.policy.def | 16 gettid: 1
|
/system/bt/osi/src/ |
D | compat.cc | 38 pid_t gettid(void) { return syscall(SYS_gettid); } in gettid() function
|
/system/core/libcutils/ |
D | threads.cpp | 36 pid_t gettid() { in gettid() function
|
D | trace-container.cpp | 137 int tid = gettid(); \
|
/system/bt/utils/src/ |
D | bt_utils.cc | 115 int tid = gettid(); in raise_priority_a2dp()
|
/system/core/liblog/tests/ |
D | liblog_benchmark.cpp | 195 header.tid = gettid(); in BM_pmsg_short() 282 buffer->header.tid = gettid(); in BM_pmsg_short_aligned() 357 buffer->header.tid = gettid(); in BM_pmsg_short_unaligned1() 432 buffer->header.tid = gettid(); in BM_pmsg_long_aligned() 505 buffer->header.tid = gettid(); in BM_pmsg_long_unaligned1()
|
/system/extras/tests/icachetest/ |
D | icache_main.cpp | 84 sched_setaffinity(gettid(), sizeof(g_cpu_set), &g_cpu_set); in main()
|
/system/netd/server/ |
D | Process.cpp | 126 out << "ppid:" << getppid() << " -> pid:" << getpid() << " -> tid:" << gettid() << '\n'; in dump()
|
/system/extras/simpleperf/ |
D | environment.h | 96 static inline int gettid() { in gettid() function
|
D | cmd_list.cpp | 65 EventFd::OpenEventFile(attr, gettid(), -1, nullptr, event_type.name, false); in IsEventTypeSupported()
|
D | cmd_stat_test.cpp | 220 tid = gettid(); in TEST() 277 child_tid = gettid(); in TEST() 292 set2.AddMonitoredThreads({gettid()}); in TEST()
|
/system/core/liblog/ |
D | logd_writer.cpp | 113 header.tid = gettid(); in LogdWrite()
|
D | pmsg_writer.cpp | 118 header.tid = gettid(); in PmsgWrite()
|
/system/extras/memory_replay/traces/ |
D | README | 12 The pid_t value that is the gettid() value recorded during the run.
|
12