Home | History | Annotate | Download | only in quipper

Lines Matching refs:pidtid

225         const PidTid pidtid =
227 pidtid_to_comm_map_[pidtid] =
428 PidTid pidtid = std::make_pair(sample_info.pid(), sample_info.tid());
429 const auto comm_iter = pidtid_to_comm_map_.find(pidtid);
437 if (!MapIPAndPidAndGetNameAndOffset(sample_info.ip(), pidtid,
446 !MapCallchain(sample_info.ip(), pidtid, unmapped_event_ip,
452 !MapBranchStack(pidtid, sample_info.mutable_branch_stack(),
460 bool PerfParser::MapCallchain(const uint64_t ip, const PidTid pidtid,
490 entry, pidtid, &mapped_addr,
505 const PidTid pidtid, RepeatedPtrField<BranchStackEntry>* branch_stack,
539 if (!MapIPAndPidAndGetNameAndOffset(entry->from_ip(), pidtid, &from_mapped,
546 if (!MapIPAndPidAndGetNameAndOffset(entry->to_ip(), pidtid, &to_mapped,
559 uint64_t ip, PidTid pidtid, uint64_t* new_ip,
571 AddressMapper* mapper = GetOrCreateProcessMapper(pidtid.first).first;
590 dso_iter->second.threads.insert(mergeTwoU32(pidtid.first, pidtid.second));
690 PidTid parent = std::make_pair(event.ppid(), event.ptid());
691 PidTid child = std::make_pair(event.pid(), event.tid());