Lines Matching refs:pvObj
45 RTDECL(int) RTHandleTableAllocWithCtx(RTHANDLETABLE hHandleTable, void *pvObj, void *pvCtx, uint32_t *ph)
55 AssertReturn(!RTHT_IS_FREE(pvObj), VERR_INVALID_PARAMETER);
86 pEntry->pvObj = pvObj;
219 void *pvObj = NULL;
239 pvObj = pEntry->pvObj;
240 if (!RTHT_IS_FREE(pvObj))
244 int rc = pThis->pfnRetain(hHandleTable, pEntry->pvObj, pvCtx, pThis->pvRetainUser);
246 pvObj = NULL;
250 pvObj = NULL;
255 return pvObj;
262 void *pvObj = NULL;
282 pvObj = pEntry->pvObj;
283 if (!RTHT_IS_FREE(pvObj))
287 int rc = pThis->pfnRetain(hHandleTable, pEntry->pvObj, pvCtx, pThis->pvRetainUser);
289 pvObj = NULL;
295 if (pvObj)
321 pvObj = NULL;
326 return pvObj;