Lines Matching refs:DbgObj
280 bool darwinDsymMatchesBinary(const MachOObjectFile *DbgObj, in darwinDsymMatchesBinary() argument
282 ArrayRef<uint8_t> dbg_uuid = DbgObj->getUuid(); in darwinDsymMatchesBinary()
382 ObjectFile *DbgObj = DbgObjOrErr.get(); in lookUpDsymFile() local
383 if (!DbgObj) in lookUpDsymFile()
385 const MachOObjectFile *MachDbgObj = dyn_cast<const MachOObjectFile>(DbgObj); in lookUpDsymFile()
389 return DbgObj; in lookUpDsymFile()
449 ObjectFile *DbgObj = nullptr; in getOrCreateObjectPair() local
452 DbgObj = lookUpDsymFile(Path, MachObj, ArchName); in getOrCreateObjectPair()
454 DbgObj = lookUpBuildIDObject(Path, ELFObj, ArchName); in getOrCreateObjectPair()
455 if (!DbgObj) in getOrCreateObjectPair()
456 DbgObj = lookUpDebuglinkObject(Path, Obj, ArchName); in getOrCreateObjectPair()
457 if (!DbgObj) in getOrCreateObjectPair()
458 DbgObj = Obj; in getOrCreateObjectPair()
459 ObjectPair Res = std::make_pair(Obj, DbgObj); in getOrCreateObjectPair()