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

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgas.cpp120 RTUINTPTR FirstAddr; member in struct:RTDBGASINT
183 * @param FirstAddr The first 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);
213 pDbgAs->FirstAddr = FirstAddr;
236 * @param FirstAddr The first 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);
264 * @param FirstAddr Th
[all...]

Completed in 42 milliseconds