Lines Matching defs:tid
319 int fd = CreateFileForRequest(request->type, request->pid, request->tid, request->time);
333 int fd = CreateFileForRequest(request->type, request->pid, request->tid, request->time);
589 DFXLOGI("Receive dump request for pid:%{public}d tid:%{public}d.", request->pid, request->tid);
601 * 1. pid != 0 && tid != 0: means we want dump a thread, so we send signal to a thread.
602 Main thread stack is tid's stack, we need ignore other thread info.
603 * 2. pid != 0 && tid == 0: means we want dump a process, so we send signal to process.
608 * in signal_handler we need to check caller pid and tid(which is send to signal handler by SYS_rt_sig.).
610 * |- we do all tid back trace in signal handler's local unwind.
646 si.si_value.sival_int = request->tid;
647 if (request->tid == 0 && sizeof(void *) == 8) { // 8 : platform 64
700 int32_t FaultLoggerDaemon::CreateFileForRequest(int32_t type, int32_t pid, int32_t tid, uint64_t time) const
719 ss += "-" + std::to_string(tid);