Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/esp_system/
Desp_async_memcpy.c25 #define ASMCP_CHECK(a, msg, tag, ret, ...) \ macro
68 ASMCP_CHECK(config, "configuration can't be null", err, ESP_ERR_INVALID_ARG); in esp_async_memcpy_install()
69 ASMCP_CHECK(asmcp, "can't assign mcp handle to null", err, ESP_ERR_INVALID_ARG); in esp_async_memcpy_install()
75 ASMCP_CHECK(mcp_hdl, "allocate context memory failed", err, ESP_ERR_NO_MEM); in esp_async_memcpy_install()
118 ASMCP_CHECK(asmcp, "mcp handle can't be null", err, ESP_ERR_INVALID_ARG); in esp_async_memcpy_uninstall()
236 ASMCP_CHECK(asmcp, "mcp handle can't be null", err, ESP_ERR_INVALID_ARG); in esp_async_memcpy()
237ASMCP_CHECK(async_memcpy_impl_is_buffer_address_valid(&asmcp->mcp_impl, src, dst), "buffer address… in esp_async_memcpy()
238ASMCP_CHECK(n <= DMA_DESCRIPTOR_BUFFER_MAX_SIZE * asmcp->max_stream_num, "buffer size too large", … in esp_async_memcpy()
271 ASMCP_CHECK(rx_prepared_size == n, "out of rx descriptor", err, ESP_FAIL); in esp_async_memcpy()
272 ASMCP_CHECK(tx_prepared_size == n, "out of tx descriptor", err, ESP_FAIL); in esp_async_memcpy()