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

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgas.cpp182 * @param phDbgAs Where to store the address space handle on success.
187 RTDECL(int) RTDbgAsCreate(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszName) argument
192 AssertPtrReturn(phDbgAs, VERR_INVALID_POINTER);
219 *phDbgAs = pDbgAs;
235 * @param phDbgAs Where to store the address space handle on success.
241 RTDECL(int) RTDbgAsCreateV(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, va_list va)
250 int rc = RTDbgAsCreate(phDbgAs, FirstAddr, LastAddr, pszName);
263 * @param phDbgAs Where to store the address space handle on success.
269 RTDECL(int) RTDbgAsCreateF(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, ...)
273 int rc = RTDbgAsCreateV(phDbgAs, FirstAdd
[all...]

Completed in 41 milliseconds