Lines Matching refs:DbgObj
231 bool darwinDsymMatchesBinary(const MachOObjectFile *DbgObj, in darwinDsymMatchesBinary() argument
233 ArrayRef<uint8_t> dbg_uuid = DbgObj->getUuid(); in darwinDsymMatchesBinary()
259 ObjectFile *DbgObj = DbgObjOrErr.get(); in lookUpDsymFile() local
260 if (!DbgObj) in lookUpDsymFile()
262 const MachOObjectFile *MachDbgObj = dyn_cast<const MachOObjectFile>(DbgObj); in lookUpDsymFile()
266 return DbgObj; in lookUpDsymFile()
307 ObjectFile *DbgObj = nullptr; in getOrCreateObjectPair() local
310 DbgObj = lookUpDsymFile(Path, MachObj, ArchName); in getOrCreateObjectPair()
311 if (!DbgObj) in getOrCreateObjectPair()
312 DbgObj = lookUpDebuglinkObject(Path, Obj, ArchName); in getOrCreateObjectPair()
313 if (!DbgObj) in getOrCreateObjectPair()
314 DbgObj = Obj; in getOrCreateObjectPair()
315 ObjectPair Res = std::make_pair(Obj, DbgObj); in getOrCreateObjectPair()