Home
last modified time | relevance | path

Searched refs:patchInfo (Results 1 – 1 of 1) sorted by relevance

/haiku/src/tools/elfsymbolpatcher/
H A DElfSymbolPatcher.cpp530 PatchInfo* patchInfo = new(std::nothrow) PatchInfo; in AddPatch() local
531 if (!patchInfo) in AddPatch()
534 status_t error = fPatcher->GetSymbolPatchInfo(symbolName, patchInfo); in AddPatch()
536 if (fPatchInfos.AddItem(patchInfo)) { in AddPatch()
537 patchInfo->fNewAddress = newAddress; in AddPatch()
538 *originalAddress = patchInfo->GetOriginalAddress(); in AddPatch()
543 if (error != B_OK && patchInfo) { in AddPatch()
544 fPatchInfos.RemoveItem(patchInfo); in AddPatch()
545 delete patchInfo; in AddPatch()