Home
last modified time | relevance | path

Searched defs:tid (Results 1 – 25 of 99) sorted by relevance

1234

/system/nfc/src/nfc/llcp/
Dllcp_sdp.cc103 static void llcp_sdp_add_sdreq(uint8_t tid, char* p_name) { in llcp_sdp_add_sdreq()
128 tLLCP_STATUS llcp_sdp_send_sdreq(uint8_t tid, char* p_name) { in llcp_sdp_send_sdreq()
200 static void llcp_sdp_add_sdres(uint8_t tid, uint8_t sap) { in llcp_sdp_add_sdres()
224 static tLLCP_STATUS llcp_sdp_send_sdres(uint8_t tid, uint8_t sap) { in llcp_sdp_send_sdres()
325 static void llcp_sdp_return_sap(uint8_t tid, uint8_t sap) { in llcp_sdp_return_sap()
386 uint8_t type, length, tid, sap, *p_value; in llcp_sdp_proc_snl() local
/system/extras/memory_replay/
DThreads.cpp72 Thread* Threads::CreateThread(pid_t tid) { in CreateThread()
92 Thread* Threads::FindThread(pid_t tid) { in FindThread()
119 size_t Threads::GetHashEntry(pid_t tid) { in GetHashEntry()
123 Thread* Threads::FindEmptyEntry(pid_t tid) { in FindEmptyEntry()
/system/memory/libmemunreachable/
DThreadCapture.cpp138 pid_t tid = atoi(dirent->d_name); in ListThreads() local
179 void ThreadCaptureImpl::PtraceDetach(pid_t tid, unsigned int signal) { in PtraceDetach()
188 int ThreadCaptureImpl::PtraceAttach(pid_t tid) { in PtraceAttach()
211 bool ThreadCaptureImpl::PtraceThreadInfo(pid_t tid, ThreadInfo& thread_info) { in PtraceThreadInfo()
251 int ThreadCaptureImpl::CaptureThread(pid_t tid) { in CaptureThread()
297 bool ThreadCaptureImpl::ReleaseThread(pid_t tid) { in ReleaseThread()
305 bool ThreadCaptureImpl::ReleaseThread(pid_t tid, unsigned int signal) { in ReleaseThread()
355 bool ThreadCapture::ReleaseThread(pid_t tid) { in ReleaseThread()
DThreadCapture.h27 pid_t tid; member
/system/extras/simpleperf/
DCallChainJoiner.cpp45 void LRUCache::AddCallChain(pid_t tid, std::vector<uint64_t>& ips, std::vector<uint64_t>& sps) { in AddCallChain()
112 CacheNode* LRUCache::GetNode(uint32_t tid, uint64_t ip, uint64_t sp) { in GetNode()
177 static bool WriteCallChain(FILE* fp, pid_t pid, pid_t tid, CallChainJoiner::ChainType type, in WriteCallChain()
206 static bool ReadCallChain(FILE* fp, pid_t& pid, pid_t& tid, CallChainJoiner::ChainType& type, in ReadCallChain()
232 static bool ReadCallChainInReverseOrder(FILE* fp, pid_t& pid, pid_t& tid, in ReadCallChainInReverseOrder()
290 bool CallChainJoiner::AddCallChain(pid_t pid, pid_t tid, ChainType type, in AddCallChain()
341 pid_t tid; in JoinCallChains() local
384 bool CallChainJoiner::GetNextCallChain(pid_t& pid, pid_t& tid, ChainType& type, in GetNextCallChain()
Dthread_tree.cpp31 void ThreadTree::SetThreadName(int pid, int tid, const std::string& comm) { in SetThreadName()
40 void ThreadTree::ForkThread(int pid, int tid, int ppid, int ptid) { in ForkThread()
57 ThreadEntry* ThreadTree::FindThread(int tid) { in FindThread()
64 ThreadEntry* ThreadTree::FindThreadOrNew(int pid, int tid) { in FindThreadOrNew()
75 ThreadEntry* ThreadTree::CreateThread(int pid, int tid) { in CreateThread()
97 void ThreadTree::ExitThread(int pid, int tid) { in ExitThread()
127 void ThreadTree::AddThreadMap(int pid, int tid, uint64_t start_addr, uint64_t len, in AddThreadMap()
DCallChainJoiner_test.cpp26 static bool JoinCallChain(LRUCache& cache, uint32_t tid, in JoinCallChain()
180 pid_t tid; in TEST_F() local
241 pid_t tid; in TEST_F() local
259 pid_t tid; in TEST_F() local
/system/core/libprocessgroup/
Dsched_policy.cpp41 int set_cpuset_policy(int tid, SchedPolicy policy) { in set_cpuset_policy()
67 int set_sched_policy(int tid, SchedPolicy policy) { in set_sched_policy()
155 static int getCGroupSubsys(int tid, const char* subsys, std::string& subgroup) { in getCGroupSubsys()
167 int get_sched_policy(int tid, SchedPolicy* policy) { in get_sched_policy()
/system/core/debuggerd/handler/
Ddebuggerd_fallback.cpp125 long tid = strtol(ent->d_name, &end, 10); in iterate_siblings() local
148 pid_t tid; in forward_output() local
178 int32_t tid; member
182 static uint64_t pack_thread_fd(pid_t tid, int fd) { in pack_thread_fd()
250 [](pid_t tid, int output_fd) { in trace_handler()
/system/core/logd/
DRecordingLogBuffer.cpp27 pid_t tid, const char* msg, uint16_t len) { in RecordLogMessage()
58 int RecordingLogBuffer::Log(log_id_t log_id, log_time realtime, uid_t uid, pid_t pid, pid_t tid, in Log()
DSerializedLogEntry.h36 SerializedLogEntry(uid_t uid, pid_t pid, pid_t tid, uint64_t sequence, log_time realtime, in SerializedLogEntry()
83 pid_t tid() const { return tid_; } in tid() function
DRecordedLogMessage.h26 uint32_t tid; member
/system/core/debuggerd/client/
Ddebuggerd_client.cpp87 for (int tid : tids) { in get_wchan_data() local
114 bool debuggerd_trigger_dump(pid_t tid, DebuggerdDumpType dump_type, unsigned int timeout_ms, in debuggerd_trigger_dump()
303 int dump_backtrace_to_file(pid_t tid, DebuggerdDumpType dump_type, int fd) { in dump_backtrace_to_file()
307 int dump_backtrace_to_file_timeout(pid_t tid, DebuggerdDumpType dump_type, int timeout_secs, in dump_backtrace_to_file_timeout()
/system/core/libbacktrace/
DThreadEntry.cpp33 ThreadEntry::ThreadEntry(pid_t pid, pid_t tid) in ThreadEntry()
49 ThreadEntry* ThreadEntry::Get(pid_t pid, pid_t tid, bool create) { in Get()
DBacktrace.cpp41 Backtrace::Backtrace(pid_t pid, pid_t tid, BacktraceMap* map) in Backtrace()
130 Backtrace* Backtrace::Create(pid_t pid, pid_t tid, BacktraceMap* map) { in Create()
DBacktracePtrace.h29 BacktracePtrace(pid_t pid, pid_t tid, BacktraceMap* map) : Backtrace(pid, tid, map) {} in BacktracePtrace()
DBacktraceCurrent.h39 BacktraceCurrent(pid_t pid, pid_t tid, BacktraceMap* map) : Backtrace(pid, tid, map) {} in BacktraceCurrent()
DBacktracePtrace.cpp33 static bool PtraceRead(pid_t tid, uint64_t addr, word_t* out_value) { in PtraceRead()
/system/core/libprocinfo/include/procinfo/
Dprocess.h50 pid_t tid; member
84 pid_t tid; variable
/system/libartpalette/
Dpalette_fake.cc36 enum PaletteStatus PaletteSchedSetPriority(int32_t tid, int32_t priority) { in PaletteSchedSetPriority()
46 enum PaletteStatus PaletteSchedGetPriority(int32_t tid, in PaletteSchedGetPriority()
Dpalette_android.cc62 enum PaletteStatus PaletteSchedSetPriority(int32_t tid, int32_t managed_priority) { in PaletteSchedSetPriority()
88 enum PaletteStatus PaletteSchedGetPriority(int32_t tid, /*out*/ int32_t* managed_priority) { in PaletteSchedGetPriority()
/system/libbase/
Dthreads.cpp51 int tgkill(int tgid, int tid, int sig) { in tgkill()
/system/core/libutils/
DProcessCallStack.cpp77 static String8 getThreadName(pid_t tid) { in getThreadName()
156 pid_t tid = -1; in update() local
212 pid_t tid = mThreadMap.keyAt(i); in printInternal() local
/system/core/debuggerd/
Dutil.cpp37 std::string get_thread_name(pid_t tid) { in get_thread_name()
Dcrash_dump.cpp72 static bool pid_contains_tid(int pid_proc_fd, pid_t tid) { in pid_contains_tid()
88 static bool ptrace_seize_thread(int pid_proc_fd, pid_t tid, std::string* error, int flags = 0) { in ptrace_seize_thread()
115 static bool wait_for_stop(pid_t tid, int* received_signal) { in wait_for_stop()
136 static bool ptrace_interrupt(pid_t tid, int* received_signal) { in ptrace_interrupt()

1234