Home
last modified time | relevance | path

Searched refs:xReturn (Results 1 – 25 of 51) sorted by relevance

123

/Kernel-v10.6.2/portable/Common/
HDmpu_wrappers.c65 BaseType_t xReturn; in MPU_xTaskCreate() local
75xReturn = xTaskCreate( pvTaskCode, pcName, usStackDepth, pvParameters, uxPriority, pxCreatedTask ); in MPU_xTaskCreate()
83xReturn = xTaskCreate( pvTaskCode, pcName, usStackDepth, pvParameters, uxPriority, pxCreatedTask ); in MPU_xTaskCreate()
86 return xReturn; in MPU_xTaskCreate()
100 TaskHandle_t xReturn; in MPU_xTaskCreateStatic() local
110xReturn = xTaskCreateStatic( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, puxStackB… in MPU_xTaskCreateStatic()
118xReturn = xTaskCreateStatic( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, puxStackB… in MPU_xTaskCreateStatic()
121 return xReturn; in MPU_xTaskCreateStatic()
152 BaseType_t xReturn; in MPU_xTaskDelayUntil() local
159 xReturn = xTaskDelayUntil( pxPreviousWakeTime, xTimeIncrement ); in MPU_xTaskDelayUntil()
[all …]
HDmpu_wrappers_v2.c454 BaseType_t xReturn = pdFAIL; in MPU_xTaskDelayUntilImpl() local
465 xReturn = xTaskDelayUntil( pxPreviousWakeTime, xTimeIncrement ); in MPU_xTaskDelayUntilImpl()
469 return xReturn; in MPU_xTaskDelayUntilImpl()
481 BaseType_t xReturn = pdFAIL; in MPU_xTaskAbortDelayImpl() local
498 xReturn = xTaskAbortDelay( xInternalTaskHandle ); in MPU_xTaskAbortDelayImpl()
503 return xReturn; in MPU_xTaskAbortDelayImpl()
746 TickType_t xReturn; in MPU_xTaskGetTickCountImpl() local
748 xReturn = xTaskGetTickCount(); in MPU_xTaskGetTickCountImpl()
750 return xReturn; in MPU_xTaskGetTickCountImpl()
803 configRUN_TIME_COUNTER_TYPE xReturn = 0; in MPU_ulTaskGetRunTimeCounterImpl() local
[all …]
/Kernel-v10.6.2/
HDqueue.c299 BaseType_t xReturn = pdPASS; in xQueueGenericReset() local
352 xReturn = pdFAIL; in xQueueGenericReset()
355 configASSERT( xReturn != pdFAIL ); in xQueueGenericReset()
359 return xReturn; in xQueueGenericReset()
432 BaseType_t xReturn; in xQueueGenericGetStaticBuffers() local
449 xReturn = pdTRUE; in xQueueGenericGetStaticBuffers()
453 xReturn = pdFALSE; in xQueueGenericGetStaticBuffers()
465 xReturn = pdTRUE; in xQueueGenericGetStaticBuffers()
469 return xReturn; in xQueueGenericGetStaticBuffers()
719 BaseType_t xReturn; in xQueueGiveMutexRecursive() local
[all …]
HDstream_buffer.c407 StreamBufferHandle_t xReturn; in xStreamBufferGenericCreateStatic() local
464xReturn = ( StreamBufferHandle_t ) pxStaticStreamBuffer; /*lint !e9087 Data hiding requires cast t… in xStreamBufferGenericCreateStatic()
468 xReturn = NULL; in xStreamBufferGenericCreateStatic()
469 traceSTREAM_BUFFER_CREATE_STATIC_FAILED( xReturn, xIsMessageBuffer ); in xStreamBufferGenericCreateStatic()
472 return xReturn; in xStreamBufferGenericCreateStatic()
482 BaseType_t xReturn; in xStreamBufferGetStaticBuffers() local
493 xReturn = pdTRUE; in xStreamBufferGetStaticBuffers()
497 xReturn = pdFALSE; in xStreamBufferGetStaticBuffers()
500 return xReturn; in xStreamBufferGetStaticBuffers()
541 BaseType_t xReturn = pdFAIL; in xStreamBufferReset() local
[all …]
HDtimers.c235 BaseType_t xReturn = pdFAIL; in xTimerCreateTimerTask() local
262 xReturn = pdPASS; in xTimerCreateTimerTask()
267 xReturn = xTaskCreate( prvTimerTask, in xTimerCreateTimerTask()
281 configASSERT( xReturn ); in xTimerCreateTimerTask()
282 return xReturn; in xTimerCreateTimerTask()
392 BaseType_t xReturn = pdFAIL; in xTimerGenericCommand() local
410 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); in xTimerGenericCommand()
414 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); in xTimerGenericCommand()
419xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); in xTimerGenericCommand()
422 traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn ); in xTimerGenericCommand()
[all …]
HDtasks.c577 TaskHandle_t xReturn; in xTaskCreateStatic() local
609 …iseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); in xTaskCreateStatic()
614 xReturn = NULL; in xTaskCreateStatic()
617 return xReturn; in xTaskCreateStatic()
629 BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; in xTaskCreateRestrictedStatic() local
662 xReturn = pdPASS; in xTaskCreateRestrictedStatic()
665 return xReturn; in xTaskCreateRestrictedStatic()
677 BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; in xTaskCreateRestricted() local
713 xReturn = pdPASS; in xTaskCreateRestricted()
717 return xReturn; in xTaskCreateRestricted()
[all …]
HDevent_groups.c491 BaseType_t xReturn; in xEventGroupClearBitsFromISR() local
494xReturn = xTimerPendFunctionCallFromISR( vEventGroupClearBitsCallback, ( void * ) xEventGroup, ( u… in xEventGroupClearBitsFromISR()
496 return xReturn; in xEventGroupClearBitsFromISR()
664 BaseType_t xReturn; in xEventGroupGetStaticBuffer() local
676 xReturn = pdTRUE; in xEventGroupGetStaticBuffer()
680 xReturn = pdFALSE; in xEventGroupGetStaticBuffer()
687 xReturn = pdTRUE; in xEventGroupGetStaticBuffer()
691 return xReturn; in xEventGroupGetStaticBuffer()
757 BaseType_t xReturn; in xEventGroupSetBitsFromISR() local
760xReturn = xTimerPendFunctionCallFromISR( vEventGroupSetBitsCallback, ( void * ) xEventGroup, ( uin… in xEventGroupSetBitsFromISR()
[all …]
HDcroutine.c107 BaseType_t xReturn; in xCoRoutineCreate() local
152 xReturn = pdPASS; in xCoRoutineCreate()
156 xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; in xCoRoutineCreate()
159 return xReturn; in xCoRoutineCreate()
342 BaseType_t xReturn; in xCoRoutineRemoveFromEventList() local
353 xReturn = pdTRUE; in xCoRoutineRemoveFromEventList()
357 xReturn = pdFALSE; in xCoRoutineRemoveFromEventList()
360 return xReturn; in xCoRoutineRemoveFromEventList()
/Kernel-v10.6.2/portable/GCC/IA32_flat/
HDport.c583 BaseType_t xReturn; in xPortRegisterCInterruptHandler() local
585 xReturn = prvCheckValidityOfVectorNumber( ulVectorNumber ); in xPortRegisterCInterruptHandler()
587 if( xReturn != pdFAIL ) in xPortRegisterCInterruptHandler()
595 return xReturn; in xPortRegisterCInterruptHandler()
603 BaseType_t xReturn; in xPortInstallInterruptHandler() local
605 xReturn = prvCheckValidityOfVectorNumber( ulVectorNumber ); in xPortInstallInterruptHandler()
607 if( xReturn != pdFAIL ) in xPortInstallInterruptHandler()
617 return xReturn; in xPortInstallInterruptHandler()
623 BaseType_t xReturn; in prvCheckValidityOfVectorNumber() local
629 xReturn = pdFAIL; in prvCheckValidityOfVectorNumber()
[all …]
/Kernel-v10.6.2/portable/IAR/ARM_CM0/
HDportmacro.h135 BaseType_t xReturn; in xPortIsInsideInterrupt() local
142 xReturn = pdFALSE; in xPortIsInsideInterrupt()
146 xReturn = pdTRUE; in xPortIsInsideInterrupt()
149 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/RVDS/ARM_CM0/
HDportmacro.h134 BaseType_t xReturn; in xPortIsInsideInterrupt() local
146 xReturn = pdFALSE; in xPortIsInsideInterrupt()
150 xReturn = pdTRUE; in xPortIsInsideInterrupt()
153 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/Renesas/SH2A_FPU/
HDport.c232 BaseType_t xReturn; in xPortUsesFloatingPoint() local
261 xReturn = pdPASS; in xPortUsesFloatingPoint()
265 xReturn = pdFAIL; in xPortUsesFloatingPoint()
268 return xReturn; in xPortUsesFloatingPoint()
/Kernel-v10.6.2/portable/GCC/ARM_CM0/
HDportmacro.h139 BaseType_t xReturn; in xPortIsInsideInterrupt() local
146 xReturn = pdFALSE; in xPortIsInsideInterrupt()
150 xReturn = pdTRUE; in xPortIsInsideInterrupt()
153 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/IAR/ARM_CM7/r0p1/
HDportmacro.h185 BaseType_t xReturn; in xPortIsInsideInterrupt() local
192 xReturn = pdFALSE; in xPortIsInsideInterrupt()
196 xReturn = pdTRUE; in xPortIsInsideInterrupt()
199 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/IAR/ARM_CM4F/
HDportmacro.h182 BaseType_t xReturn; in xPortIsInsideInterrupt() local
189 xReturn = pdFALSE; in xPortIsInsideInterrupt()
193 xReturn = pdTRUE; in xPortIsInsideInterrupt()
196 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/IAR/ARM_CM3/
HDportmacro.h183 BaseType_t xReturn; in xPortIsInsideInterrupt() local
190 xReturn = pdFALSE; in xPortIsInsideInterrupt()
194 xReturn = pdTRUE; in xPortIsInsideInterrupt()
197 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/GCC/ARM_CM7/r0p1/
HDportmacro.h179 BaseType_t xReturn; in xPortIsInsideInterrupt() local
186 xReturn = pdFALSE; in xPortIsInsideInterrupt()
190 xReturn = pdTRUE; in xPortIsInsideInterrupt()
193 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/GCC/ARM_CM3/
HDportmacro.h181 BaseType_t xReturn; in xPortIsInsideInterrupt() local
188 xReturn = pdFALSE; in xPortIsInsideInterrupt()
192 xReturn = pdTRUE; in xPortIsInsideInterrupt()
195 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/RVDS/ARM_CM4F/
HDportmacro.h239 BaseType_t xReturn; in xPortIsInsideInterrupt() local
251 xReturn = pdFALSE; in xPortIsInsideInterrupt()
255 xReturn = pdTRUE; in xPortIsInsideInterrupt()
258 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/RVDS/ARM_CM3/
HDportmacro.h239 BaseType_t xReturn; in xPortIsInsideInterrupt() local
251 xReturn = pdFALSE; in xPortIsInsideInterrupt()
255 xReturn = pdTRUE; in xPortIsInsideInterrupt()
258 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/GCC/ARM_CM4F/
HDportmacro.h182 BaseType_t xReturn; in xPortIsInsideInterrupt() local
189 xReturn = pdFALSE; in xPortIsInsideInterrupt()
193 xReturn = pdTRUE; in xPortIsInsideInterrupt()
196 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/RVDS/ARM_CM7/r0p1/
HDportmacro.h243 BaseType_t xReturn; in xPortIsInsideInterrupt() local
255 xReturn = pdFALSE; in xPortIsInsideInterrupt()
259 xReturn = pdTRUE; in xPortIsInsideInterrupt()
262 return xReturn; in xPortIsInsideInterrupt()
/Kernel-v10.6.2/portable/GCC/PPC405_Xilinx/
HDport.c249 BaseType_t xReturn = pdFAIL; in xPortInstallInterruptHandler() local
257 xReturn = pdPASS; in xPortInstallInterruptHandler()
260 return xReturn; in xPortInstallInterruptHandler()
/Kernel-v10.6.2/portable/GCC/PPC440_Xilinx/
HDport.c249 BaseType_t xReturn = pdFAIL; in xPortInstallInterruptHandler() local
257 xReturn = pdPASS; in xPortInstallInterruptHandler()
260 return xReturn; in xPortInstallInterruptHandler()
/Kernel-v10.6.2/portable/GCC/ARM_CM3_MPU/
HDportmacro.h290 BaseType_t xReturn; in xPortIsInsideInterrupt() local
297 xReturn = pdFALSE; in xPortIsInsideInterrupt()
301 xReturn = pdTRUE; in xPortIsInsideInterrupt()
304 return xReturn; in xPortIsInsideInterrupt()

123