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.cc832 int requesting_thread = process_state.requesting_thread(); in PrintProcessState() local
833 if (requesting_thread != -1) { in PrintProcessState()
836 requesting_thread, in PrintProcessState()
839 PrintStack(process_state.threads()->at(requesting_thread), cpu, in PrintProcessState()
841 process_state.thread_memory_regions()->at(requesting_thread), in PrintProcessState()
848 if (thread_index != requesting_thread) { in PrintProcessState()
880 int requesting_thread = process_state.requesting_thread(); in PrintProcessStateMachineReadable() local
901 if (requesting_thread != -1) { in PrintProcessStateMachineReadable()
902 printf("%d\n", requesting_thread); in PrintProcessStateMachineReadable()
913 if (requesting_thread != -1) { in PrintProcessStateMachineReadable()
[all …]
Dexploitability_linux.cc65 if (process_state_->requesting_thread() != -1) { in CheckPlatformExploitability()
67 process_state_->threads()->at(process_state_->requesting_thread()); in CheckPlatformExploitability()
Dmicrodump_processor_unittest.cc101 ASSERT_EQ(0, state->requesting_thread()); in AnalyzeDump()
Dminidump_processor_unittest.cc417 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.h105 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