Lines Matching refs:pxParams
1316 …BaseType_t MPU_xTaskGenericNotifyImpl( const xTaskGenericNotifyParams_t * pxParams ) PRIVILEGED_FU…
1318 …BaseType_t MPU_xTaskGenericNotifyImpl( const xTaskGenericNotifyParams_t * pxParams ) /* PRIVILEGED… in MPU_xTaskGenericNotifyImpl() argument
1327 if( pxParams != NULL ) in MPU_xTaskGenericNotifyImpl()
1329 xAreParamsReadable = xPortIsAuthorizedToAccessBuffer( pxParams, in MPU_xTaskGenericNotifyImpl()
1336 if( ( pxParams->uxIndexToNotify < configTASK_NOTIFICATION_ARRAY_ENTRIES ) && in MPU_xTaskGenericNotifyImpl()
1337 ( ( pxParams->eAction == eNoAction ) || in MPU_xTaskGenericNotifyImpl()
1338 ( pxParams->eAction == eSetBits ) || in MPU_xTaskGenericNotifyImpl()
1339 ( pxParams->eAction == eIncrement ) || in MPU_xTaskGenericNotifyImpl()
1340 ( pxParams->eAction == eSetValueWithOverwrite ) || in MPU_xTaskGenericNotifyImpl()
1341 ( pxParams->eAction == eSetValueWithoutOverwrite ) ) ) in MPU_xTaskGenericNotifyImpl()
1343 if( pxParams->pulPreviousNotificationValue != NULL ) in MPU_xTaskGenericNotifyImpl()
1345 …IsPreviousNotificationValueWriteable = xPortIsAuthorizedToAccessBuffer( pxParams->pulPreviousNotif… in MPU_xTaskGenericNotifyImpl()
1350 if( ( pxParams->pulPreviousNotificationValue == NULL ) || in MPU_xTaskGenericNotifyImpl()
1353 lIndex = ( int32_t ) ( pxParams->xTaskToNotify ); in MPU_xTaskGenericNotifyImpl()
1366 pxParams->uxIndexToNotify, in MPU_xTaskGenericNotifyImpl()
1367 pxParams->ulValue, in MPU_xTaskGenericNotifyImpl()
1368 pxParams->eAction, in MPU_xTaskGenericNotifyImpl()
1369 … pxParams->pulPreviousNotificationValue ); in MPU_xTaskGenericNotifyImpl()
1405 …BaseType_t MPU_xTaskGenericNotifyWaitImpl( const xTaskGenericNotifyWaitParams_t * pxParams ) PRIVI…
1407 …BaseType_t MPU_xTaskGenericNotifyWaitImpl( const xTaskGenericNotifyWaitParams_t * pxParams ) /* PR… in MPU_xTaskGenericNotifyWaitImpl() argument
1413 if( pxParams != NULL ) in MPU_xTaskGenericNotifyWaitImpl()
1415 xAreParamsReadable = xPortIsAuthorizedToAccessBuffer( pxParams, in MPU_xTaskGenericNotifyWaitImpl()
1422 if( pxParams->uxIndexToWaitOn < configTASK_NOTIFICATION_ARRAY_ENTRIES ) in MPU_xTaskGenericNotifyWaitImpl()
1424 if( pxParams->pulNotificationValue != NULL ) in MPU_xTaskGenericNotifyWaitImpl()
1426 … xIsNotificationValueWritable = xPortIsAuthorizedToAccessBuffer( pxParams->pulNotificationValue, in MPU_xTaskGenericNotifyWaitImpl()
1431 if( ( pxParams->pulNotificationValue == NULL ) || in MPU_xTaskGenericNotifyWaitImpl()
1434 xReturn = xTaskGenericNotifyWait( pxParams->uxIndexToWaitOn, in MPU_xTaskGenericNotifyWaitImpl()
1435 pxParams->ulBitsToClearOnEntry, in MPU_xTaskGenericNotifyWaitImpl()
1436 pxParams->ulBitsToClearOnExit, in MPU_xTaskGenericNotifyWaitImpl()
1437 pxParams->pulNotificationValue, in MPU_xTaskGenericNotifyWaitImpl()
1438 pxParams->xTicksToWait ); in MPU_xTaskGenericNotifyWaitImpl()
3393 …BaseType_t MPU_xTimerGenericCommandImpl( const xTimerGenericCommandParams_t * pxParams ) PRIVILEGE…
3395 …BaseType_t MPU_xTimerGenericCommandImpl( const xTimerGenericCommandParams_t * pxParams ) /* PRIVIL… in MPU_xTimerGenericCommandImpl() argument
3404 if( pxParams != NULL ) in MPU_xTimerGenericCommandImpl()
3406 xAreParamsReadable = xPortIsAuthorizedToAccessBuffer( pxParams, in MPU_xTimerGenericCommandImpl()
3413 if( pxParams->pxHigherPriorityTaskWoken != NULL ) in MPU_xTimerGenericCommandImpl()
3415 …xIsHigherPriorityTaskWokenWriteable = xPortIsAuthorizedToAccessBuffer( pxParams->pxHigherPriorityT… in MPU_xTimerGenericCommandImpl()
3420 if( ( pxParams->pxHigherPriorityTaskWoken == NULL ) || in MPU_xTimerGenericCommandImpl()
3423 lIndex = ( int32_t ) ( pxParams->xTimer ); in MPU_xTimerGenericCommandImpl()
3436 pxParams->xCommandID, in MPU_xTimerGenericCommandImpl()
3437 pxParams->xOptionalValue, in MPU_xTimerGenericCommandImpl()
3438 pxParams->pxHigherPriorityTaskWoken, in MPU_xTimerGenericCommandImpl()
3439 pxParams->xTicksToWait ); in MPU_xTimerGenericCommandImpl()
3449 …BaseType_t MPU_xTimerGenericCommandPrivImpl( const xTimerGenericCommandParams_t * pxParams ) PRIVI…
3451 …BaseType_t MPU_xTimerGenericCommandPrivImpl( const xTimerGenericCommandParams_t * pxParams ) /* PR… in MPU_xTimerGenericCommandPrivImpl() argument
3457 if( pxParams != NULL ) in MPU_xTimerGenericCommandPrivImpl()
3459 lIndex = ( int32_t ) ( pxParams->xTimer ); in MPU_xTimerGenericCommandPrivImpl()
3468 pxParams->xCommandID, in MPU_xTimerGenericCommandPrivImpl()
3469 pxParams->xOptionalValue, in MPU_xTimerGenericCommandPrivImpl()
3470 pxParams->pxHigherPriorityTaskWoken, in MPU_xTimerGenericCommandPrivImpl()
3471 pxParams->xTicksToWait ); in MPU_xTimerGenericCommandPrivImpl()
3812 …EventBits_t MPU_xEventGroupWaitBitsImpl( const xEventGroupWaitBitsParams_t * pxParams ) PRIVILEGED…
3814 …EventBits_t MPU_xEventGroupWaitBitsImpl( const xEventGroupWaitBitsParams_t * pxParams ) /* PRIVILE… in MPU_xEventGroupWaitBitsImpl() argument
3822 if( pxParams != NULL ) in MPU_xEventGroupWaitBitsImpl()
3824 xAreParamsReadable = xPortIsAuthorizedToAccessBuffer( pxParams, in MPU_xEventGroupWaitBitsImpl()
3831 if( ( ( pxParams->uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ) && in MPU_xEventGroupWaitBitsImpl()
3832 ( pxParams->uxBitsToWaitFor != 0 ) in MPU_xEventGroupWaitBitsImpl()
3834 …&& ( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( pxParams->xTicksToWait != 0 )… in MPU_xEventGroupWaitBitsImpl()
3838 lIndex = ( int32_t ) ( pxParams->xEventGroup ); in MPU_xEventGroupWaitBitsImpl()
3851 pxParams->uxBitsToWaitFor, in MPU_xEventGroupWaitBitsImpl()
3852 pxParams->xClearOnExit, in MPU_xEventGroupWaitBitsImpl()
3853 pxParams->xWaitForAllBits, in MPU_xEventGroupWaitBitsImpl()
3854 pxParams->xTicksToWait ); in MPU_xEventGroupWaitBitsImpl()