/kernel/liteos_a/testsuites/kernel/sample/kernel_base/ipc/queue/full/ |
H A D | It_los_queue_116.c | 55 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 0); in Testcase() 62 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 0); in Testcase() 67 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 1); in Testcase() 72 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 2); // 2, Read the setting size of queue buffer. in Testcase()
|
H A D | It_los_queue_098.c | 53 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase() 62 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase() 70 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase() 78 ret = LOS_QueueReadCopy(queueID - 1, &buff2, &readSize, 0); in Testcase()
|
H A D | It_los_queue_102.c | 58 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0xffffffff); in Testcase() 67 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0xffffffff + 1); in Testcase() 76 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0xffffffff - 1); in Testcase()
|
H A D | It_los_queue_101.c | 58 ret = LOS_QueueReadCopy(queueID, NULL, &readSize, 0); in Testcase() 64 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase()
|
H A D | It_los_queue_111.c | 55 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 0); in HwiF01() 91 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 0); in Testcase()
|
H A D | It_los_queue_112.c | 55 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 0); in TaskF01() 96 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 0); in Testcase()
|
H A D | It_los_queue_113.c | 53 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 0); in SwtmrF01() 90 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &readSize, 0); in Testcase()
|
H A D | It_los_queue_099.c | 61 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase()
|
/kernel/liteos_a/testsuites/kernel/sample/kernel_base/ipc/queue/smoke/ |
H A D | It_los_queue_100.c | 57 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase() 66 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase() 75 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase() 84 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase()
|
H A D | It_los_queue_105.c | 87 ret = LOS_QueueReadCopy(queueID, &buff2, &readSize, 0); in Testcase()
|
/kernel/liteos_m/testsuites/sample/kernel/queue/ |
H A D | It_los_queue_isr_016.c | 45 ret = LOS_QueueReadCopy(g_testQueueID01, buff, &msgSize, LOS_WAIT_FOREVER); in TaskF01() 52 ret = LOS_QueueReadCopy(g_testQueueID01, buff, &msgSize, LOS_WAIT_FOREVER); in TaskF01() 59 ret = LOS_QueueReadCopy(g_testQueueID01, buff, &msgSize, LOS_WAIT_FOREVER); in TaskF01()
|
H A D | It_los_queue_static_004.c | 50 ret = LOS_QueueReadCopy(g_testQueueID01, &buff2, &msgSize, 0);
in Testcase()
|
H A D | It_los_queue_isr_014.c | 35 ret = LOS_QueueReadCopy(g_testQueueID01, buff2, &msgSize, LOS_WAIT_FOREVER); in TaskF01()
|
/kernel/liteos_m/kernel/include/ |
H A D | los_queue.h | 486 extern UINT32 LOS_QueueReadCopy(UINT32 queueID,
532 return LOS_QueueReadCopy(queueID, bufferAddr, bufferSize, LOS_NO_WAIT);
in LOS_QueueReadCopyIsr() 574 * @see LOS_QueueReadCopy | LOS_QueueCreate
613 * @see LOS_QueueReadCopy | LOS_QueueCreate
954 * <li>LOS_QueueReadCopy and LOS_QueueWriteHeadCopyIsr are a set of interfaces, and the two groups of interfaces need to be
|
/kernel/liteos_a/kernel/include/ |
H A D | los_queue.h | 428 extern UINT32 LOS_QueueReadCopy(UINT32 queueID, 473 * @see LOS_QueueReadCopy | LOS_QueueCreate
|
/kernel/liteos_a/kernel/base/ipc/ |
H A D | los_queue.c | 336 LITE_OS_SEC_TEXT UINT32 LOS_QueueReadCopy(UINT32 queueID, in LOS_QueueReadCopy() function 389 return LOS_QueueReadCopy(queueID, bufferAddr, &bufferSize, timeout); in LOS_QueueRead()
|
/kernel/liteos_m/kal/posix/src/ |
H A D | mqueue.c | 615 err = LOS_QueueReadCopy(mqueueID, (VOID *)msg, &receiveLen, (UINT32)absTicks); in mq_timedreceive()
|
/kernel/liteos_m/kernel/src/ |
H A D | los_swtmr.c | 84 ret = LOS_QueueReadCopy(g_swtmrHandlerQueue, &swtmrHandle, &readSize, LOS_WAIT_FOREVER);
in OsSwtmrTask()
|
H A D | los_queue.c | 439 LITE_OS_SEC_TEXT UINT32 LOS_QueueReadCopy(UINT32 queueID,
in LOS_QueueReadCopy() function
|
/kernel/liteos_a/compat/posix/src/ |
H A D | mqueue.c | 870 err = LOS_QueueReadCopy(mqueueID, (VOID *)msg, &receiveLen, (UINT32)absTicks); in mq_timedreceive()
|
/kernel/liteos_m/kal/cmsis/ |
H A D | cmsis_liteos2.c | 1304 ret = LOS_QueueReadCopy(queueCB->queueID, msg_ptr, &bufferSize, timeout);
in osMessageQueueOp()
|