/hal_espressif-3.5.0/components/freertos/include/freertos/ |
D | atomic.h | 316 uint32_t ulValue ) in Atomic_OR_u32() argument 323 *pulDestination |= ulValue; in Atomic_OR_u32() 343 uint32_t ulValue ) in Atomic_AND_u32() argument 350 *pulDestination &= ulValue; in Atomic_AND_u32() 370 uint32_t ulValue ) in Atomic_NAND_u32() argument 377 *pulDestination = ~( ulCurrent & ulValue ); in Atomic_NAND_u32() 397 uint32_t ulValue ) in Atomic_XOR_u32() argument 404 *pulDestination ^= ulValue; in Atomic_XOR_u32()
|
D | task.h | 2385 uint32_t ulValue, 2388 #define xTaskNotify( xTaskToNotify, ulValue, eAction ) \ argument 2389 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), N… 2390 #define xTaskNotifyIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction ) \ argument 2391 xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), NULL ) 2421 #define xTaskNotifyAndQuery( xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue ) \ argument 2422 …xTaskGenericNotify( ( xTaskToNotify ), ( tskDEFAULT_INDEX_TO_NOTIFY ), ( ulValue ), ( eAction ), (… 2423 #define xTaskNotifyAndQueryIndexed( xTaskToNotify, uxIndexToNotify, ulValue, eAction, pulPreviousNo… argument 2424 …xTaskGenericNotify( ( xTaskToNotify ), ( uxIndexToNotify ), ( ulValue ), ( eAction ), ( pulPreviou… 2545 uint32_t ulValue, [all …]
|
D | mpu_prototypes.h | 96 uint32_t ulValue,
|
/hal_espressif-3.5.0/docs/zh_CN/api-guides/ |
D | SYSVIEW_FreeRTOS.txt | 30 44 xTaskGenericNotify xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot… 31 45 xTaskGenericNotifyFromISR xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot…
|
/hal_espressif-3.5.0/docs/en/api-guides/ |
D | SYSVIEW_FreeRTOS.txt | 30 44 xTaskGenericNotify xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot… 31 45 xTaskGenericNotifyFromISR xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot…
|
/hal_espressif-3.5.0/tools/esp_app_trace/ |
D | SYSVIEW_FreeRTOS.txt | 30 44 xTaskGenericNotify xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot… 31 45 xTaskGenericNotifyFromISR xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot…
|
/hal_espressif-3.5.0/examples/system/sysview_tracing/ |
D | SYSVIEW_FreeRTOS.txt | 30 44 xTaskGenericNotify xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot… 31 45 xTaskGenericNotifyFromISR xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot…
|
/hal_espressif-3.5.0/examples/system/sysview_tracing_heap_log/ |
D | SYSVIEW_FreeRTOS.txt | 30 44 xTaskGenericNotify xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot… 31 45 xTaskGenericNotifyFromISR xTaskToNotify=%t ulValue=%u eAction=%u pulPreviousNot…
|
/hal_espressif-3.5.0/components/app_trace/sys_view/Sample/OS/ |
D | SEGGER_SYSVIEW_FreeRTOS.h | 224 …_OFFSET + apiID_XTASKGENERICNOTIFY, SEGGER_SYSVIEW_ShrinkId((U32)pxTCB), ulValue, eAction, (U32)pu… 225 … + apiID_XTASKGENERICNOTIFYFROMISR, SEGGER_SYSVIEW_ShrinkId((U32)pxTCB), ulValue, eAction, (U32)pu…
|
/hal_espressif-3.5.0/components/freertos/ |
D | tasks.c | 5522 uint32_t ulValue, in xTaskGenericNotify() argument 5548 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotify() 5556 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 5563 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotify() 5649 uint32_t ulValue, in xTaskGenericNotifyFromISR() argument 5694 pxTCB->ulNotifiedValue[ uxIndexToNotify ] |= ulValue; in xTaskGenericNotifyFromISR() 5702 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR() 5709 pxTCB->ulNotifiedValue[ uxIndexToNotify ] = ulValue; in xTaskGenericNotifyFromISR()
|