Searched defs:phMod (Results 1 - 5 of 5) sorted by relevance

/vbox/include/iprt/win/
H A Dlazy-dbghelp.h38 static int rtLdrLazyLoadDbgHelp(const char *pszFile, PRTLDRMOD phMod) argument
67 rc = RTLdrLoad(szPath, phMod);
75 return RTLdrLoadSystem(pszFile, true /*fNoUnload*/, phMod);
/vbox/src/VBox/Runtime/common/ldr/
H A DldrEx.cpp58 RTDECL(int) RTLdrOpenWithReader(PRTLDRREADER pReader, uint32_t fFlags, RTLDRARCH enmArch, PRTLDRMOD phMod, PRTERRINFO pErrInfo) argument
124 rc = rtldrPEOpen(pReader, fFlags, enmArch, offHdr, phMod, pErrInfo);
130 rc = rtldrELFOpen(pReader, fFlags, enmArch, phMod, pErrInfo);
136 rc = rtldrLXOpen(pReader, fFlags, enmArch, offHdr, phMod, pErrInfo);
142 rc = rtldrLEOpen(pReader, fFlags, enmArch, phMod, pErrInfo);
148 rc = rtldrNEOpen(pReader, fFlags, enmArch, phMod, pErrInfo);
154 rc = rtldrMZOpen(pReader, fFlags, enmArch, phMod, pErrInfo);
162 rc = rtldrAOUTOpen(pReader, fFlags, enmArch, phMod, pErrInfo);
178 int rc2 = rtldrkLdrOpen(pReader, fFlags, enmArch, phMod, pErrInfo);
187 LogFlow(("rtldrOpenWithReader: %s: returns %Rrc *phMod
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DDBGFAddrSpace.cpp1173 * @param phMod Where to return the module handle. Optional.
1176 PRTGCINTPTR poffDisp, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod)
1183 int rc = DBGFR3AsSymbolByAddr(pUVM, DBGF_AS_RC, pAddress, fFlags, poffDisp, pSymbol, phMod);
1185 rc = DBGFR3AsSymbolByAddr(pUVM, DBGF_AS_GLOBAL, pAddress, fFlags, poffDisp, pSymbol, phMod);
1196 AssertPtrNullReturn(phMod, VERR_INVALID_POINTER);
1199 if (phMod)
1200 *phMod = NIL_RTDBGMOD;
1213 if (!phMod)
1233 * @param phMod See DBGFR3AsSymbolByAddr.
1236 PRTGCINTPTR poffDisp, PRTDBGMOD phMod)
1175 DBGFR3AsSymbolByAddr(PUVM pUVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, uint32_t fFlags, PRTGCINTPTR poffDisp, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod) argument
1235 DBGFR3AsSymbolByAddrA(PUVM pUVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, uint32_t fFlags, PRTGCINTPTR poffDisp, PRTDBGMOD phMod) argument
1264 DBGFR3AsSymbolByName(PUVM pUVM, RTDBGAS hDbgAs, const char *pszSymbol, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod) argument
1307 DBGFR3AsLineByAddr(PUVM pUVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, PRTGCINTPTR poffDisp, PRTDBGLINE pLine, PRTDBGMOD phMod) argument
1344 DBGFR3AsLineByAddrA(PUVM pUVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, PRTGCINTPTR poffDisp, PRTDBGMOD phMod) argument
[all...]
/vbox/src/VBox/Debugger/testcase/
H A DtstDBGCStubs.cpp150 PRTGCINTPTR poffDisp, PRTDBGLINE pLine, PRTDBGMOD phMod)
173 VMMR3DECL(int) DBGFR3AsSymbolByAddr(PUVM pUVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, uint32_t fFlags, PRTGCINTPTR poffDisplacement, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod) argument
177 VMMR3DECL(int) DBGFR3AsSymbolByName(PUVM pUVM, RTDBGAS hDbgAs, const char *pszSymbol, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod) argument
149 DBGFR3AsLineByAddr(PUVM pUVM, RTDBGAS hDbgAs, PCDBGFADDRESS pAddress, PRTGCINTPTR poffDisp, PRTDBGLINE pLine, PRTDBGMOD phMod) argument
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedMain-win.cpp1600 * @param phMod Where the handle of the loaded DLL is to be
1604 supR3HardenedMonitor_LdrLoadDll(PWSTR pwszSearchPath, PULONG pfFlags, PUNICODE_STRING pName, PHANDLE phMod) argument
1903 rcNtGetDll = LdrGetDllHandle(NULL /*DllPath*/, NULL /*pfFlags*/, pOrgName, phMod);
1937 rcNt = g_pfnLdrLoadDllReal(pwszSearchPath, pfFlags, pName, phMod);
1944 if (NT_SUCCESS(rcNt) && phMod)
1945 SUP_DPRINTF(("supR3HardenedMonitor_LdrLoadDll: returns rcNt=%#x hMod=%p '%ls'\n", rcNt, *phMod, wszPath));

Completed in 77 milliseconds