Home
last modified time | relevance | path

Searched refs:requesting_thread (Results 1 – 7 of 7) sorted by relevance

/external/google-breakpad/src/processor/
Dstackwalk_common.cc846 int requesting_thread = process_state.requesting_thread(); in PrintProcessState() local
847 if (requesting_thread != -1) { in PrintProcessState()
850 requesting_thread, in PrintProcessState()
853 PrintStack(process_state.threads()->at(requesting_thread), cpu, in PrintProcessState()
855 process_state.thread_memory_regions()->at(requesting_thread), in PrintProcessState()
862 if (thread_index != requesting_thread) { in PrintProcessState()
901 int requesting_thread = process_state.requesting_thread(); in PrintProcessStateMachineReadable() local
922 if (requesting_thread != -1) { in PrintProcessStateMachineReadable()
923 printf("%d\n", requesting_thread); in PrintProcessStateMachineReadable()
934 if (requesting_thread != -1) { in PrintProcessStateMachineReadable()
[all …]
Dexploitability_linux.cc95 if (process_state_->requesting_thread() != -1) { in CheckPlatformExploitability()
97 process_state_->threads()->at(process_state_->requesting_thread()); in CheckPlatformExploitability()
Dmicrodump_processor_unittest.cc104 ASSERT_EQ(0, state->requesting_thread()); in AnalyzeDump()
Dminidump_processor_unittest.cc522 ASSERT_EQ(state.requesting_thread(), 0); in TEST_F()
/external/google-breakpad/src/tools/mac/crash_report/
Dcrash_report.mm271 int requesting_thread = process_state.requesting_thread();
272 if (requesting_thread != -1) {
275 requesting_thread,
278 PrintStack(process_state.threads()->at(requesting_thread), cpu);
287 if (thread_index != requesting_thread) {
301 if (requesting_thread != -1) {
302 printf("\nThread %d:", requesting_thread);
303 PrintRegisters(process_state.threads()->at(requesting_thread), cpu);
/external/google-breakpad/src/google_breakpad/processor/
Dprocess_state.h108 int requesting_thread() const { return requesting_thread_; } in requesting_thread() function
/external/google-breakpad/src/processor/proto/
Dprocess_state.proto82 optional int32 requesting_thread = 4; field