Searched refs:gettid (Results 1 – 25 of 47) 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/netd/resolv/ |
D | res_state.cpp | 75 LOG(VERBOSE) << __func__ << ": rt=" << rt << " for thread=" << gettid(); in res_thread_free() 105 LOG(VERBOSE) << __func__ << ": tid=" << gettid() << ", rt=" << rt in res_thread_get() 109 LOG(VERBOSE) << __func__ << ": tid=" << gettid() << " rt=" << rt in res_thread_get()
|
/system/core/debuggerd/handler/ |
D | debuggerd_fallback.cpp | 82 thread.tid = gettid(); in debuggerd_fallback_trace() 83 thread.thread_name = get_thread_name(gettid()); in debuggerd_fallback_trace() 111 pid_t current_tid = gettid(); in iterate_siblings() 202 if (tid != gettid()) { in trace_handler() 205 "thread %d received output fd for thread %d?", gettid(), tid); in trace_handler() 212 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_64.policy | 11 gettid: 1
|
D | crash_dump.arm64.policy | 11 gettid: 1
|
D | crash_dump.arm.policy | 12 gettid: 1
|
D | crash_dump.x86.policy | 12 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/extras/simpleperf/ |
D | cmd_stat_test.cpp | 201 tid = gettid(); in TEST() 258 child_tid = gettid(); in TEST() 273 set2.AddMonitoredThreads({gettid()}); in TEST()
|
D | cmd_list.cpp | 48 std::unique_ptr<EventFd> event_fd = EventFd::OpenEventFile(attr, gettid(), -1, nullptr); in IsEventTypeSupported()
|
D | environment.h | 96 static inline int gettid() { in gettid() function
|
/system/core/libcutils/ |
D | threads.cpp | 36 pid_t gettid() { in gettid() function
|
D | trace-container.cpp | 128 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 | 212 header.tid = gettid(); in BM_pmsg_short() 299 buffer->header.tid = gettid(); in BM_pmsg_short_aligned() 374 buffer->header.tid = gettid(); in BM_pmsg_short_unaligned1() 449 buffer->header.tid = gettid(); in BM_pmsg_long_aligned() 522 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/memory_replay/dumps/ |
D | README | 12 The pid_t value that is the gettid() value recorded during the run.
|
/system/core/liblog/ |
D | stderr_write.cpp | 164 log_msg.entry.tid = gettid(); in stderrWrite()
|
12