Searched refs:phHandleTable (Results 1 - 2 of 2) sorted by relevance

/vbox/include/iprt/
H A Dhandletable.h112 * location phHandleTable points at.
114 * @param phHandleTable Where to store the handle table handle on success.
126 RTDECL(int) RTHandleTableCreateEx(PRTHANDLETABLE phHandleTable, uint32_t fFlags, uint32_t uBase, uint32_t cMax,
135 * @returns IPRT status code and *phHandleTable.
137 * @param phHandleTable Where to store the handle table handle on success.
139 RTDECL(int) RTHandleTableCreate(PRTHANDLETABLE phHandleTable); variable
/vbox/src/VBox/Runtime/common/misc/
H A Dhandletable.cpp46 RTDECL(int) RTHandleTableCreateEx(PRTHANDLETABLE phHandleTable, uint32_t fFlags, uint32_t uBase, uint32_t cMax, argument
56 AssertPtrReturn(phHandleTable, VERR_INVALID_POINTER);
57 *phHandleTable = NIL_RTHANDLETABLE;
119 *phHandleTable = pThis;
125 RTDECL(int) RTHandleTableCreate(PRTHANDLETABLE phHandleTable) argument
127 return RTHandleTableCreateEx(phHandleTable, RTHANDLETABLE_FLAGS_LOCKED, 1, 65534, NULL, NULL);

Completed in 45 milliseconds