/hal_espressif-3.4.0/components/esp_event/ |
D | esp_event.c | 125 …esp_event_loop_instance_t* loop, esp_event_handler_node_t *handler, esp_event_post_instance_t post) in handler_execute() argument 127 …ESP_LOGD(TAG, "running post %s:%d with handler %p and context %p on loop %p", post.base, post.id, … in handler_execute() 137 if (post.data_set) { in handler_execute() 138 if (post.data_allocated) { in handler_execute() 139 data_ptr = post.data.ptr; in handler_execute() 141 data_ptr = &post.data.val; in handler_execute() 145 (*(handler->handler_ctx->handler))(handler->handler_ctx->arg, post.base, post.id, data_ptr); in handler_execute() 147 (*(handler->handler_ctx->handler))(handler->handler_ctx->arg, post.base, post.id, post.data); in handler_execute() 432 …ic void inline __attribute__((always_inline)) post_instance_delete(esp_event_post_instance_t* post) in post_instance_delete() argument 435 if (post->data_allocated && post->data.ptr) { in post_instance_delete() [all …]
|
/hal_espressif-3.4.0/components/bt/ |
D | linker.lf | 12 # 'ALIGN(4, post) SURROUND(sym)', which generates: 23 bss_common -> dram0_bss ALIGN(4, post) SURROUND(bt_bss), 24 data -> dram0_data ALIGN(4, post) SURROUND(bt_data) 32 bss_common -> dram0_bss ALIGN(4, post) SURROUND(btdm_bss), 33 data -> dram0_data ALIGN(4, post) SURROUND(btdm_data) 39 bss_common -> dram0_bss ALIGN(4, post) SURROUND(nimble_bss), 40 data -> dram0_data ALIGN(4, post) SURROUND(nimble_data)
|
/hal_espressif-3.4.0/tools/ldgen/ |
D | fragments.py | 326 self.post = True 348 def __init__(self, alignment, pre=True, post=False): argument 351 self.post = post 368 if tok.pre == '' and tok.post == '': 370 elif tok.pre != '' and tok.post == '': 372 elif tok.pre == '' and tok.post != '': 373 res = Mapping.Align(alignment, False, tok.post) 375 res = Mapping.Align(alignment, tok.pre, tok.post) 385 self.post == other.post)
|
/hal_espressif-3.4.0/examples/cxx/experimental/experimental_cpp_component/include/ |
D | esp_event_api.hpp | 31 virtual esp_err_t post(esp_event_base_t event_base, 64 esp_err_t post(esp_event_base_t event_base, 103 esp_err_t post(esp_event_base_t event_base,
|
D | esp_event_cxx.hpp | 453 esp_err_t result = api->post(event.base, in post_event_data()
|
/hal_espressif-3.4.0/docs/en/api-reference/network/ |
D | esp_netif_driver.rst | 6 and is responsible for providing data path functions, post-attach callback and in most cases also d… 39 * post-attach function callback 52 So when the :cpp:func:`esp_netif_attach()` gets called from the initialization code, the post-attac… 54 as well in the post-attach callback. An example of a simple post-attach callback is outlined below:
|
D | esp_now.rst | 76 …task. So, do not do lengthy operations in the callback function. Instead, post the necessary data … 82 Instead, post the necessary data to a queue and handle it from a lower priority task.
|
/hal_espressif-3.4.0/examples/protocols/asio/asio_chat/main/ |
D | client.hpp | 33 asio::post(io_context_, in write() 47 asio::post(io_context_, [this]() { socket_.close(); }); in close()
|
/hal_espressif-3.4.0/examples/cxx/experimental/experimental_cpp_component/ |
D | esp_event_api.cpp | 44 esp_err_t ESPEventAPIDefault::post(esp_event_base_t event_base, in post() function in idf::event::ESPEventAPIDefault 92 esp_err_t ESPEventAPICustom::post(esp_event_base_t event_base, in post() function in idf::event::ESPEventAPICustom
|
D | esp_event_cxx.cpp | 142 esp_err_t result = api->post(event.base, in post_event_data()
|
/hal_espressif-3.4.0/docs/zh_CN/api-guides/ |
D | linker-script-generation.rst | 456 1. ALIGN(<alignment>[, pre, post]) 458 根据 ``alignment`` 中指定的数字对齐存放区域,根据是否指定 ``pre`` 和 ``post``,或两者都指定,在输入段描述(生成于映射条目)的前面和/或后面生成: 464 如果既没有指定 ``pre`` 也没有指定 ``post``,则对齐命令会在输入段描述前生成。对顺序敏感。 499 section1 -> target1 KEEP() ALIGN(4, pre, post), 500 section2 -> target2 SURROUND(sym) ALIGN(4, post) SORT()
|
/hal_espressif-3.4.0/components/esptool_py/ |
D | CMakeLists.txt | 38 # If security enabled then override post flash option 62 # Generate bootloader post-build check of the bootloader size against the offset
|
/hal_espressif-3.4.0/tools/test_apps/build_system/ldgen_test/main/ |
D | linker.lf | 7 text->iram0_text KEEP() ALIGN(9) ALIGN(12, post) SURROUND(sym1)
|
/hal_espressif-3.4.0/components/esp_event/test/ |
D | test_event.c | 1946 esp_event_post_instance_t post; variable 1950 TEST_ASSERT_EQUAL(pdTRUE, xQueueReceive(loop_def->queue, &post, portMAX_DELAY)); 1951 TEST_ASSERT_EQUAL(false, post.data_set); 1952 TEST_ASSERT_EQUAL(false, post.data_allocated); 1953 TEST_ASSERT_EQUAL(NULL, post.data.ptr); 1957 TEST_ASSERT_EQUAL(pdTRUE, xQueueReceive(loop_def->queue, &post, portMAX_DELAY)); 1958 TEST_ASSERT_EQUAL(true, post.data_set); 1959 TEST_ASSERT_EQUAL(false, post.data_allocated); 1960 TEST_ASSERT_EQUAL(false, post.data.val);
|
/hal_espressif-3.4.0/examples/protocols/http_server/restful_server/front/web-demo/src/views/ |
D | Light.vue | 48 .post("/api/v1/light/brightness", {
|
/hal_espressif-3.4.0/examples/system/esp_event/default_event_loop/ |
D | README.md | 7 …sp-idf/en/latest/api-reference/system/esp_event.html#) the system uses to post and handle events (… 149 …post. This shows the ability to register a single event handler to a single event multiple times. …
|
/hal_espressif-3.4.0/docs/en/api-guides/ |
D | linker-script-generation.rst | 456 1. ALIGN(<alignment>[, pre, post]) 464 … ``pre``, ``post`` or both are specified) the input section description generated from the mapping… 499 section1 -> target1 KEEP() ALIGN(4, pre, post), 500 section2 -> target2 SURROUND(sym) ALIGN(4, post) SORT()
|
/hal_espressif-3.4.0/examples/bluetooth/bluedroid/classic_bt/bt_discovery/ |
D | README.md | 178 …covered `bt_app_gap_cb` will be called with `ESP_BT_GAP_DISC_RES_EVT`, to post the result to users. 258 Then `bt_app_gap_cb` will be called with `ESP_BT_GAP_RMT_SRVCS_EVT` to post the service discovery r…
|
/hal_espressif-3.4.0/components/mqtt/ |
D | Kconfig | 51 Set this to true to post events for all messages which were deleted from the outbox
|
/hal_espressif-3.4.0/docs/en/api-reference/system/ |
D | esp_event.rst | 28 4. Event sources post an event to the loop using :cpp:func:`esp_event_post_to`. 152 to how default event loops and user event loops behave. It is even possible for users to post their…
|
/hal_espressif-3.4.0/examples/protocols/http_server/file_serving/ |
D | README.md | 18 …OST | For uploading files on to SPIFFS. Files are sent as body of HTTP post requests …
|
/hal_espressif-3.4.0/components/app_trace/ |
D | Kconfig | 65 Threshold for flushing last trace data to host on panic in post-mortem mode.
|
/hal_espressif-3.4.0/components/esptool_py/esptool/docs/en/espefuse/ |
D | burn-key-digest-cmd.rst | 25 …remains writable. The keys use the RS coding scheme that does not support post-write data changes.…
|
/hal_espressif-3.4.0/docs/en/api-reference/ |
D | kconfig.rst | 73 3. ``confgen.py`` post-processes ``sdkconfig`` files and generates all build
|
/hal_espressif-3.4.0/examples/system/esp_event/user_event_loops/ |
D | README.md | 112 …r the iteration event registered. The event source is started, which will post the event to the ap…
|