Lines Matching refs:xKernelObjectPool
248 …PRIVILEGED_DATA static KernelObject_t xKernelObjectPool[ configPROTECTED_KERNEL_OBJECT_POOL_SIZE ]… variable
263 if( xKernelObjectPool[ i ].xInternalObjectHandle == NULL ) in MPU_GetFreeIndexInKernelObjectPool()
266 xKernelObjectPool[ i ].xInternalObjectHandle = ( OpaqueObjectHandle_t ) ( ~0 ); in MPU_GetFreeIndexInKernelObjectPool()
284 xKernelObjectPool[ lIndex ].xInternalObjectHandle = NULL; in MPU_SetIndexFreeInKernelObjectPool()
285 xKernelObjectPool[ lIndex ].ulKernelObjectType = KERNEL_OBJECT_TYPE_INVALID; in MPU_SetIndexFreeInKernelObjectPool()
286 xKernelObjectPool[ lIndex ].pvKernelObjectData = NULL; in MPU_SetIndexFreeInKernelObjectPool()
301 if( ( xKernelObjectPool[ i ].xInternalObjectHandle == xHandle ) && in MPU_GetIndexForHandle()
302 ( xKernelObjectPool[ i ].ulKernelObjectType == ulKernelObjectType ) ) in MPU_GetIndexForHandle()
319 xKernelObjectPool[ lIndex ].xInternalObjectHandle = xHandle; in MPU_StoreHandleAndDataAtIndex()
320 xKernelObjectPool[ lIndex ].ulKernelObjectType = ulKernelObjectType; in MPU_StoreHandleAndDataAtIndex()
321 xKernelObjectPool[ lIndex ].pvKernelObjectData = pvKernelObjectData; in MPU_StoreHandleAndDataAtIndex()
332 if( xKernelObjectPool[ lIndex ].ulKernelObjectType == ulKernelObjectType ) in MPU_GetHandleAtIndex()
334 xObjectHandle = xKernelObjectPool[ lIndex ].xInternalObjectHandle; in MPU_GetHandleAtIndex()
424 … if( ( ( TimerHandle_t ) xKernelObjectPool[ i ].xInternalObjectHandle == xInternalHandle ) && in MPU_TimerCallback()
425 ( xKernelObjectPool[ i ].ulKernelObjectType == KERNEL_OBJECT_TYPE_TIMER ) ) in MPU_TimerCallback()
435 …pxApplicationCallBack = ( TimerCallbackFunction_t ) xKernelObjectPool[ lIndex ].pvKernelObjectData; in MPU_TimerCallback()