Home | History | Annotate | Download | only in processor

Lines Matching refs:thread_id

1400     Swap(&thread_.thread_id);
1473 thread_id) const {
1474 BPLOG_IF(ERROR, !thread_id) << "MinidumpThread::GetThreadID requires "
1475 "|thread_id|";
1476 assert(thread_id);
1477 *thread_id = 0;
1484 *thread_id = thread_.thread_id;
1496 printf(" thread_id = 0x%x\n", thread_.thread_id);
1623 uint32_t thread_id;
1624 if (!thread->GetThreadID(&thread_id)) {
1630 if (GetThreadByID(thread_id)) {
1633 HexString(thread_id) << " at thread " <<
1637 id_to_thread_map_[thread_id] = thread;
1667 MinidumpThread* MinidumpThreadList::GetThreadByID(uint32_t thread_id) {
1670 return id_to_thread_map_[thread_id];
2920 Swap(&exception_.thread_id);
2943 bool MinidumpException::GetThreadID(uint32_t *thread_id) const {
2944 BPLOG_IF(ERROR, !thread_id) << "MinidumpException::GetThreadID requires "
2945 "|thread_id|";
2946 assert(thread_id);
2947 *thread_id = 0;
2954 *thread_id = exception_.thread_id;
2994 printf(" thread_id = 0x%x\n",
2995 exception_.thread_id);
3641 bool MinidumpBreakpadInfo::GetDumpThreadID(uint32_t *thread_id) const {
3642 BPLOG_IF(ERROR, !thread_id) << "MinidumpBreakpadInfo::GetDumpThreadID "
3643 "requires |thread_id|";
3644 assert(thread_id);
3645 *thread_id = 0;
3657 *thread_id = breakpad_info_.dump_thread_id;
3662 bool MinidumpBreakpadInfo::GetRequestingThreadID(uint32_t *thread_id)
3664 BPLOG_IF(ERROR, !thread_id) << "MinidumpBreakpadInfo::GetRequestingThreadID "
3665 "requires |thread_id|";
3666 assert(thread_id);
3667 *thread_id = 0;
3669 if (!thread_id || !valid_) {
3680 *thread_id = breakpad_info_.requesting_thread_id;