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

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgas.cpp122 RTUINTPTR LastAddr; member in struct:RTDBGASINT
184 * @param LastAddr The last address in the address space.
187 RTDECL(int) RTDbgAsCreate(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszName) argument
194 AssertReturn(FirstAddr < LastAddr, VERR_INVALID_PARAMETER);
214 pDbgAs->LastAddr = LastAddr;
237 * @param LastAddr The last address in the address space.
241 RTDECL(int) RTDbgAsCreateV(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, va_list va)
250 int rc = RTDbgAsCreate(phDbgAs, FirstAddr, LastAddr, pszName);
265 * @param LastAddr Th
[all...]

Completed in 31 milliseconds