Home
last modified time | relevance | path

Searched refs:pcReturn (Results 1 – 3 of 3) sorted by relevance

/Kernel-v10.6.2/portable/Common/
HDmpu_wrappers.c486 char * pcReturn; in MPU_pcTaskGetName() local
493 pcReturn = pcTaskGetName( xTaskToQuery ); in MPU_pcTaskGetName()
501 pcReturn = pcTaskGetName( xTaskToQuery ); in MPU_pcTaskGetName()
504 return pcReturn; in MPU_pcTaskGetName()
1678 const char * pcReturn; in MPU_pcQueueGetName() local
1685 pcReturn = pcQueueGetName( xQueue ); in MPU_pcQueueGetName()
1693 pcReturn = pcQueueGetName( xQueue ); in MPU_pcQueueGetName()
1696 return pcReturn; in MPU_pcQueueGetName()
1874 const char * pcReturn; in MPU_pcTimerGetName() local
1881 pcReturn = pcTimerGetName( xTimer ); in MPU_pcTimerGetName()
[all …]
HDmpu_wrappers_v2.c770 char * pcReturn = NULL; in MPU_pcTaskGetNameImpl() local
776 pcReturn = pcTaskGetName( xTaskToQuery ); in MPU_pcTaskGetNameImpl()
788 pcReturn = pcTaskGetName( xInternalTaskHandle ); in MPU_pcTaskGetNameImpl()
793 return pcReturn; in MPU_pcTaskGetNameImpl()
2647 const char * pcReturn = NULL; in MPU_pcQueueGetNameImpl() local
2664 pcReturn = pcQueueGetName( xInternalQueueHandle ); in MPU_pcQueueGetNameImpl()
2669 return pcReturn; in MPU_pcQueueGetNameImpl()
3488 const char * pcReturn = NULL; in MPU_pcTimerGetNameImpl() local
3505 pcReturn = pcTimerGetName( xInternalTimerHandle ); in MPU_pcTimerGetNameImpl()
3510 return pcReturn; in MPU_pcTimerGetNameImpl()
/Kernel-v10.6.2/
HDqueue.c2881 …const char * pcReturn = NULL; /*lint !e971 Unqualified char types are allowed for strings and sing… in pcQueueGetName() local
2892 pcReturn = xQueueRegistry[ ux ].pcQueueName; in pcQueueGetName()
2901 return pcReturn; in pcQueueGetName()