Home
last modified time | relevance | path

Searched refs:OS_QUEUE_READ_WRITE_GET (Results 1 – 5 of 5) sorted by relevance

/kernel/liteos_m/kal/posix/src/
Dmqueue_impl.h52 #define OS_QUEUE_READ_WRITE_GET(type) ((type) & (0x01)) macro
59 #define OS_QUEUE_IS_READ(type) (OS_QUEUE_READ_WRITE_GET(type) == OS_QUEUE_READ)
60 #define OS_QUEUE_IS_WRITE(type) (OS_QUEUE_READ_WRITE_GET(type) == OS_QUEUE_WRITE)
/kernel/liteos_a/kernel/base/include/
Dlos_queue_pri.h55 #define OS_QUEUE_READ_WRITE_GET(type) ((type) & 0x01U) macro
61 #define OS_QUEUE_IS_READ(type) (OS_QUEUE_READ_WRITE_GET(type) == OS_QUEUE_READ)
62 #define OS_QUEUE_IS_WRITE(type) (OS_QUEUE_READ_WRITE_GET(type) == OS_QUEUE_WRITE)
/kernel/liteos_m/kernel/include/
Dlos_queue.h797 #define OS_QUEUE_READ_WRITE_GET(type) ((type) & (0x01)) macro
804 #define OS_QUEUE_IS_READ(type) (OS_QUEUE_READ_WRITE_GET(type) == OS_QUEUE_READ)
805 #define OS_QUEUE_IS_WRITE(type) (OS_QUEUE_READ_WRITE_GET(type) == OS_QUEUE_WRITE)
/kernel/liteos_a/kernel/base/ipc/
Dlos_queue.c284 UINT32 readWrite = OS_QUEUE_READ_WRITE_GET(operateType); in OsQueueOperate()
/kernel/liteos_m/kernel/src/
Dlos_queue.c386 UINT32 readWrite = OS_QUEUE_READ_WRITE_GET(operateType); in OsQueueOperate()