Lines Matching refs:Incoming
285 bool InstrProfWriter::addMemProfData(memprof::IndexedMemProfData Incoming, in addMemProfData() argument
288 if (Incoming.Frames.empty() && Incoming.CallStacks.empty() && in addMemProfData()
289 Incoming.Records.empty()) in addMemProfData()
293 assert(!Incoming.Frames.empty() && !Incoming.CallStacks.empty() && in addMemProfData()
294 !Incoming.Records.empty()); in addMemProfData()
297 MemProfData.Frames = std::move(Incoming.Frames); in addMemProfData()
299 for (const auto &[Id, F] : Incoming.Frames) in addMemProfData()
304 MemProfData.CallStacks = std::move(Incoming.CallStacks); in addMemProfData()
306 for (const auto &[CSId, CS] : Incoming.CallStacks) in addMemProfData()
314 for (const auto &[GUID, Record] : Incoming.Records) in addMemProfData()
316 MemProfData.Records = std::move(Incoming.Records); in addMemProfData()
318 for (const auto &[GUID, Record] : Incoming.Records) in addMemProfData()