Searched refs:detach_failed (Results 1 – 6 of 6) sorted by relevance
/system/core/debuggerd/ |
D | backtrace.cpp | 71 log_t* log, pid_t tid, bool attached, bool* detach_failed, int* total_sleep_time_usec) { in dump_thread() argument 96 if (!attached && wait_for_sigstop(tid, total_sleep_time_usec, detach_failed) == -1) { in dump_thread() 109 *detach_failed = true; in dump_thread() 113 void dump_backtrace(int fd, int amfd, pid_t pid, pid_t tid, bool* detach_failed, in dump_backtrace() argument 120 dump_thread(&log, tid, true, detach_failed, total_sleep_time_usec); in dump_backtrace() 138 dump_thread(&log, new_tid, false, detach_failed, total_sleep_time_usec); in dump_backtrace()
|
D | debuggerd.cpp | 386 bool detach_failed = false; in handle_request() local 401 int signal = wait_for_sigstop(request.tid, &total_sleep_time_usec, &detach_failed); in handle_request() 414 &detach_failed, &total_sleep_time_usec); in handle_request() 417 dump_backtrace(fd, -1, request.pid, request.tid, &detach_failed, in handle_request() 450 &detach_failed, &total_sleep_time_usec); in handle_request() 478 detach_failed = true; in handle_request() 494 if (detach_failed) { in handle_request()
|
D | tombstone.cpp | 434 bool detach_failed = false; in dump_sibling_thread_report() local 455 if (wait_for_sigstop(new_tid, total_sleep_time_usec, &detach_failed) == -1) { in dump_sibling_thread_report() 475 detach_failed = true; in dump_sibling_thread_report() 480 return detach_failed; in dump_sibling_thread_report() 683 bool detach_failed = false; in dump_crash() local 685 detach_failed = dump_sibling_thread_report(log, pid, tid, total_sleep_time_usec, map.get()); in dump_crash() 701 return detach_failed; in dump_crash() 785 bool* detach_failed, int* total_sleep_time_usec) { in engrave_tombstone() argument 809 *detach_failed = false; in engrave_tombstone() 818 *detach_failed = dump_crash(&log, pid, tid, signal, original_si_code, abort_msg_address, in engrave_tombstone()
|
D | tombstone.h | 28 bool dump_sibling_threads, bool* detach_failed,
|
D | backtrace.h | 28 void dump_backtrace(int fd, int amfd, pid_t pid, pid_t tid, bool* detach_failed,
|
D | utility.cpp | 82 int wait_for_sigstop(pid_t tid, int* total_sleep_time_usec, bool* detach_failed) { in wait_for_sigstop() argument 115 *detach_failed = true; in wait_for_sigstop()
|