/kernel/liteos_a/testsuites/kernel/sample/kernel_base/ipc/queue/full/ |
H A D | It_los_queue_103.c | 49 ret = LOS_QueueWriteCopy(queueID, &buff1, 8, 0); // 8, Incoming buffer size. in Testcase() 53 ret = LOS_QueueWriteCopy(queueID, &buff1, 8, 0); // 8, Incoming buffer size. in Testcase() 57 ret = LOS_QueueWriteCopy(queueID, &buff1, 8, 0); // 8, Incoming buffer size. in Testcase() 61 ret = LOS_QueueWriteCopy(queueID - 1, &buff1, 8, 0); // 8, Incoming buffer size. in Testcase()
|
H A D | It_los_queue_107.c | 51 ret = LOS_QueueWriteCopy(queueID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0xffffffff); in Testcase() 59 ret = LOS_QueueWriteCopy(queueID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0xffffffff + 1); in Testcase() 67 ret = LOS_QueueWriteCopy(queueID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0xffffffff - 1); in Testcase()
|
H A D | It_los_queue_104.c | 51 ret = LOS_QueueWriteCopy(queueID, &buff1, 8, 0); // 8, Incoming buffer size. in Testcase() 62 ret = LOS_QueueWriteCopy(queueID, &buff1, 8, 0); // 8, Incoming buffer size. in Testcase()
|
H A D | It_los_queue_106.c | 51 ret = LOS_QueueWriteCopy(queueID, NULL, QUEUE_SHORT_BUFFER_LENGTH, 0); in Testcase() 59 ret = LOS_QueueWriteCopy(queueID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0); in Testcase()
|
H A D | It_los_queue_114.c | 53 ret = LOS_QueueWriteCopy(queueID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0); in Testcase() 60 ret = LOS_QueueWriteCopy(queueID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0); in Testcase()
|
H A D | It_los_queue_116.c | 51 ret = LOS_QueueWriteCopy(g_testQueueID01, &buff1, 8, 0); // 8, Incoming buffer size. in Testcase()
|
H A D | It_los_queue_111.c | 51 ret = LOS_QueueWriteCopy(g_testQueueID01, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0); in HwiF01()
|
H A D | It_los_queue_112.c | 51 ret = LOS_QueueWriteCopy(g_testQueueID01, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0); in TaskF01()
|
H A D | It_los_queue_113.c | 49 ret = LOS_QueueWriteCopy(g_testQueueID01, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0); in SwtmrF01()
|
/kernel/liteos_m/testsuites/sample/kernel/queue/ |
H A D | It_los_queue_107.c | 46 ret = LOS_QueueWriteCopy(swTmrID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0xffffffff);
in Testcase() 53 ret = LOS_QueueWriteCopy(swTmrID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0xffffffff + 1);
in Testcase() 60 ret = LOS_QueueWriteCopy(swTmrID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0xffffffff - 1);
in Testcase()
|
H A D | It_los_queue_104.c | 47 ret = LOS_QueueWriteCopy(swTmrID, &buff1, QUEUE_BASE_MSGSIZE, 0);
in Testcase() 58 ret = LOS_QueueWriteCopy(swTmrID, &buff1, QUEUE_BASE_MSGSIZE, 0);
in Testcase()
|
H A D | It_los_queue_106.c | 47 ret = LOS_QueueWriteCopy(swTmrID, NULL, QUEUE_SHORT_BUFFER_LENGTH, 0);
in Testcase() 54 ret = LOS_QueueWriteCopy(swTmrID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0);
in Testcase()
|
H A D | It_los_queue_114.c | 48 ret = LOS_QueueWriteCopy(swTmrID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0);
in Testcase() 55 ret = LOS_QueueWriteCopy(swTmrID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0);
in Testcase()
|
H A D | It_los_queue_static_004.c | 47 ret = LOS_QueueWriteCopy(g_testQueueID01, &buff1, (UINT32)QUEUE_BASE_MSGSIZE, 0);
in Testcase()
|
/kernel/liteos_a/testsuites/kernel/sample/kernel_base/ipc/queue/smoke/ |
H A D | It_los_queue_105.c | 52 ret = LOS_QueueWriteCopy(queueID, &buff1, QUEUE_SHORT_BUFFER_LENGTH, 0); in Testcase() 60 ret = LOS_QueueWriteCopy(queueID, &buff1, QUEUE_SHORT_BUFFER_LENGTH + PER_ADDED_VALUE, 0); in Testcase()
|
/kernel/liteos_m/kernel/include/ |
H A D | los_queue.h | 484 * @see LOS_QueueWriteCopy | LOS_QueueCreate
526 * @see LOS_QueueWriteCopy | LOS_QueueCreate
576 extern UINT32 LOS_QueueWriteCopy(UINT32 queueID,
619 return LOS_QueueWriteCopy(queueID, bufferAddr, bufferSize, LOS_NO_WAIT);
in LOS_QueueWriteCopyIsr()
|
/kernel/liteos_a/kernel/include/ |
H A D | los_queue.h | 426 * @see LOS_QueueWriteCopy | LOS_QueueCreate 475 extern UINT32 LOS_QueueWriteCopy(UINT32 queueID,
|
/kernel/liteos_a/kernel/base/ipc/ |
H A D | los_queue.c | 370 LITE_OS_SEC_TEXT UINT32 LOS_QueueWriteCopy(UINT32 queueID, in LOS_QueueWriteCopy() function 398 return LOS_QueueWriteCopy(queueID, &bufferAddr, bufferSize, timeout); in LOS_QueueWrite()
|
/kernel/liteos_m/kal/posix/src/ |
H A D | mqueue.c | 561 err = LOS_QueueWriteCopy(mqueueID, (VOID *)msg, (UINT32)msgLen, (UINT32)absTicks); in mq_timedsend()
|
/kernel/liteos_m/kernel/src/ |
H A D | los_swtmr.c | 290 (VOID)LOS_QueueWriteCopy(g_swtmrHandlerQueue, &swtmrHandler, sizeof(SwtmrHandlerItem), LOS_NO_WAIT);
in OsSwtmrTimeoutHandle()
|
H A D | los_queue.c | 477 LITE_OS_SEC_TEXT UINT32 LOS_QueueWriteCopy(UINT32 queueID,
in LOS_QueueWriteCopy() function
|
/kernel/liteos_a/compat/posix/src/ |
H A D | mqueue.c | 816 err = LOS_QueueWriteCopy(mqueueID, (VOID *)msg, (UINT32)msgLen, (UINT32)absTicks); in mq_timedsend()
|
/kernel/liteos_m/kal/cmsis/ |
H A D | cmsis_liteos2.c | 1302 ret = LOS_QueueWriteCopy(queueCB->queueID, msg_ptr, bufferSize, timeout);
in osMessageQueueOp()
|