Home
last modified time | relevance | path

Searched refs:ulValue (Results 1 – 10 of 10) sorted by relevance

/hal_espressif-3.5.0/components/freertos/include/freertos/
Datomic.h316 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()
Dtask.h2385 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 …]
Dmpu_prototypes.h96 uint32_t ulValue,
/hal_espressif-3.5.0/docs/zh_CN/api-guides/
DSYSVIEW_FreeRTOS.txt30 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/
DSYSVIEW_FreeRTOS.txt30 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/
DSYSVIEW_FreeRTOS.txt30 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/
DSYSVIEW_FreeRTOS.txt30 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/
DSYSVIEW_FreeRTOS.txt30 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/
DSEGGER_SYSVIEW_FreeRTOS.h224 …_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/
Dtasks.c5522 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()