HomeSort by: relevance | last modified time | path
    Searched refs:CurrentRecord (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/XRay/
FDRTraceExpander.cpp 15 C(CurrentRecord);
17 CurrentRecord.CallArgs.clear();
18 CurrentRecord.Data.clear();
42 CurrentRecord.TSC = R.tsc();
43 CurrentRecord.CPU = R.cpu();
44 CurrentRecord.PId = PID;
45 CurrentRecord.TId = TID;
46 CurrentRecord.Type = RecordTypes::CUSTOM_EVENT;
47 CurrentRecord.Data = std::string(R.data());
57 CurrentRecord.TSC = BaseTSC
    [all...]
BlockVerifier.cpp 110 if (CurrentRecord >= State::StateMax)
115 recordToString(CurrentRecord).data(), recordToString(To).data());
119 if (CurrentRecord == State::EndOfBuffer && To != State::NewBuffer)
122 auto &Mapping = TransitionTable[number(CurrentRecord)];
124 assert(Mapping.From == CurrentRecord &&
130 recordToString(CurrentRecord).data(), recordToString(To).data());
132 CurrentRecord = To;
184 switch (CurrentRecord) {
197 recordToString(CurrentRecord).data());
201 void BlockVerifier::reset() { CurrentRecord = State::Unknown;
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
BlockVerifier.h 44 State CurrentRecord = State::Unknown;
FDRTraceExpander.h 29 XRayRecord CurrentRecord{0, 0, RecordTypes::ENTER, 0, 0, 0, 0, {}, {}};
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
mDNS.c 337 rr = m->CurrentRecord;
340 LogMemCorruption("CurrentRecord: %p is garbage (%X)", rr, rr->resrec.RecordType);
2234 // Any code walking either list must use the CurrentQuestion and/or CurrentRecord mechanism to protect against this.
2481 if (m->CurrentRecord == rr) m->CurrentRecord = rr->next;
2817 // Any code walking either list must use the CurrentQuestion and/or CurrentRecord mechanism to protect against this.
2820 if (m->CurrentRecord)
2822 LogRedact(MDNS_LOG_CATEGORY_DEFAULT, MDNS_LOG_DEFAULT, "DiscardDeregistrations ERROR m->CurrentRecord already set " PRI_S,
2823 ARDisplayString(m, m->CurrentRecord));
2825 m->CurrentRecord = m->ResourceRecords
    [all...]
uDNS.c 2404 if (m->CurrentRecord)
2405 LogMsg("UpdateAllSRVRecords ERROR m->CurrentRecord already set %s", ARDisplayString(m, m->CurrentRecord));
2406 m->CurrentRecord = m->ResourceRecords;
2407 while (m->CurrentRecord)
2409 AuthRecord *rptr = m->CurrentRecord;
2410 m->CurrentRecord = m->CurrentRecord->next;
3922 if (m->CurrentRecord)
3923 LogMsg("uDNS_ReceiveMsg ERROR m->CurrentRecord already set %s", ARDisplayString(m, m->CurrentRecord))
    [all...]
mDNSEmbeddedAPI.h 2467 AuthRecord *CurrentRecord; // Next AuthRecord about to be examined
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 186 size_t CurrentRecord = 0;
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
NeonEmitter.cpp 61 static Record *CurrentRecord = nullptr;
64 if (CurrentRecord)
65 PrintFatalError(CurrentRecord->getLoc(), Str);
1833 CurrentRecord = R;
1865 CurrentRecord = nullptr;
1869 CurrentRecord = R;
1875 CurrentRecord = nullptr;
1948 CurrentRecord = R;
1988 CurrentRecord = nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMappingReader.cpp 1125 if (CurrentRecord >= MappingRecords.size())
1131 auto &R = MappingRecords[CurrentRecord];
1144 ++CurrentRecord;

Completed in 34 milliseconds