Home
last modified time | relevance | path

Searched refs:post (Results 1 – 25 of 39) sorted by relevance

12

/hal_espressif-3.4.0/components/esp_event/
Desp_event.c125 …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/
Dlinker.lf12 # '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/
Dfragments.py326 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/
Desp_event_api.hpp31 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,
Desp_event_cxx.hpp453 esp_err_t result = api->post(event.base, in post_event_data()
/hal_espressif-3.4.0/docs/en/api-reference/network/
Desp_netif_driver.rst6 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:
Desp_now.rst76 …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/
Dclient.hpp33 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/
Desp_event_api.cpp44 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
Desp_event_cxx.cpp142 esp_err_t result = api->post(event.base, in post_event_data()
/hal_espressif-3.4.0/docs/zh_CN/api-guides/
Dlinker-script-generation.rst456 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/
DCMakeLists.txt38 # 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/
Dlinker.lf7 text->iram0_text KEEP() ALIGN(9) ALIGN(12, post) SURROUND(sym1)
/hal_espressif-3.4.0/components/esp_event/test/
Dtest_event.c1946 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/
DLight.vue48 .post("/api/v1/light/brightness", {
/hal_espressif-3.4.0/examples/system/esp_event/default_event_loop/
DREADME.md7 …sp-idf/en/latest/api-reference/system/esp_event.html#) the system uses to post and handle events (…
149post. 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/
Dlinker-script-generation.rst456 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/
DREADME.md178 …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/
DKconfig51 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/
Desp_event.rst28 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/
DREADME.md18 …OST | For uploading files on to SPIFFS. Files are sent as body of HTTP post requests …
/hal_espressif-3.4.0/components/app_trace/
DKconfig65 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/
Dburn-key-digest-cmd.rst25 …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/
Dkconfig.rst73 3. ``confgen.py`` post-processes ``sdkconfig`` files and generates all build
/hal_espressif-3.4.0/examples/system/esp_event/user_event_loops/
DREADME.md112 …r the iteration event registered. The event source is started, which will post the event to the ap…

12