Lines Matching refs:buffer

619 void     Cy_SCB_UART_StartRingBuffer   (CySCB_Type *base, void *buffer, uint32_t size,
625 cy_en_scb_uart_status_t Cy_SCB_UART_Receive(CySCB_Type *base, void *buffer, uint32_t size,
631 cy_en_scb_uart_status_t Cy_SCB_UART_Transmit(CySCB_Type *base, void *buffer, uint32_t size,
643 __STATIC_INLINE uint32_t Cy_SCB_UART_PutArray (CySCB_Type *base, void *buffer, uint32_t size…
644 __STATIC_INLINE void Cy_SCB_UART_PutArrayBlocking(CySCB_Type *base, void *buffer, uint32_t size…
649 __STATIC_INLINE uint32_t Cy_SCB_UART_GetArray (CySCB_Type const *base, void *buffer, uint32_…
650 __STATIC_INLINE void Cy_SCB_UART_GetArrayBlocking(CySCB_Type const *base, void *buffer, uint32_…
1360 __STATIC_INLINE uint32_t Cy_SCB_UART_GetArray(CySCB_Type const *base, void *buffer, uint32_t size) in Cy_SCB_UART_GetArray() argument
1362 CY_ASSERT_L1(CY_SCB_IS_BUFFER_VALID(buffer, size)); in Cy_SCB_UART_GetArray()
1364 return Cy_SCB_ReadArray(base, buffer, size); in Cy_SCB_UART_GetArray()
1388 __STATIC_INLINE void Cy_SCB_UART_GetArrayBlocking(CySCB_Type const *base, void *buffer, uint32_t si… in Cy_SCB_UART_GetArrayBlocking() argument
1390 CY_ASSERT_L1(CY_SCB_IS_BUFFER_VALID(buffer, size)); in Cy_SCB_UART_GetArrayBlocking()
1392 Cy_SCB_ReadArrayBlocking(base, buffer, size); in Cy_SCB_UART_GetArrayBlocking()
1531 __STATIC_INLINE uint32_t Cy_SCB_UART_PutArray(CySCB_Type *base, void *buffer, uint32_t size) in Cy_SCB_UART_PutArray() argument
1533 CY_ASSERT_L1(CY_SCB_IS_BUFFER_VALID(buffer, size)); in Cy_SCB_UART_PutArray()
1535 return Cy_SCB_WriteArray(base, buffer, size); in Cy_SCB_UART_PutArray()
1559 __STATIC_INLINE void Cy_SCB_UART_PutArrayBlocking(CySCB_Type *base, void *buffer, uint32_t size) in Cy_SCB_UART_PutArrayBlocking() argument
1561 CY_ASSERT_L1(CY_SCB_IS_BUFFER_VALID(buffer, size)); in Cy_SCB_UART_PutArrayBlocking()
1563 Cy_SCB_WriteArrayBlocking(base, buffer, size); in Cy_SCB_UART_PutArrayBlocking()