Home
last modified time | relevance | path

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

/hal_espressif-latest/components/esp_netif/lwip/
Desp_netif_sntp.c136 sntp_storage_t *storage = s_storage; in esp_netif_sntp_deinit() local
140 if (storage->num_of_servers) { in esp_netif_sntp_deinit()
141 for (int i = 0; i < storage->num_of_servers; ++i) { in esp_netif_sntp_deinit()
142 free(storage->servers[i]); in esp_netif_sntp_deinit()
144 … esp_event_handler_unregister(IP_EVENT, storage->ip_event_to_renew, esp_netif_sntp_renew_servers); in esp_netif_sntp_deinit()
146 if (storage->sync_sem) { in esp_netif_sntp_deinit()
147 vSemaphoreDelete(storage->sync_sem); in esp_netif_sntp_deinit()
149 free(storage); in esp_netif_sntp_deinit()
/hal_espressif-latest/components/esp_coex/esp32s2/
Desp_coex_adapter.c33 void *storage; /**< storage for FreeRTOS queue */ member
154 …semphr->storage = heap_caps_calloc(1, sizeof(StaticSemaphore_t), MALLOC_CAP_8BIT|MALLOC_CAP_INTERN… in esp_coex_internal_semphr_create_wrapper()
155 if (!semphr->storage) { in esp_coex_internal_semphr_create_wrapper()
159 semphr->handle = xSemaphoreCreateCountingStatic(max, init, semphr->storage); in esp_coex_internal_semphr_create_wrapper()
167 if (semphr->storage) { in esp_coex_internal_semphr_create_wrapper()
168 free(semphr->storage); in esp_coex_internal_semphr_create_wrapper()
188 if (semphr_item->storage) { in esp_coex_internal_semphr_delete_wrapper()
189 free(semphr_item->storage); in esp_coex_internal_semphr_delete_wrapper()
/hal_espressif-latest/components/esp_coex/esp32/
Desp_coex_adapter.c31 void *storage; /**< storage for FreeRTOS queue */ member
144 …semphr->storage = heap_caps_calloc(1, sizeof(StaticSemaphore_t), MALLOC_CAP_8BIT|MALLOC_CAP_INTERN… in esp_coex_internal_semphr_create_wrapper()
145 if (!semphr->storage) { in esp_coex_internal_semphr_create_wrapper()
149 semphr->handle = xSemaphoreCreateCountingStatic(max, init, semphr->storage); in esp_coex_internal_semphr_create_wrapper()
157 if (semphr->storage) { in esp_coex_internal_semphr_create_wrapper()
158 free(semphr->storage); in esp_coex_internal_semphr_create_wrapper()
178 if (semphr_item->storage) { in esp_coex_internal_semphr_delete_wrapper()
179 free(semphr_item->storage); in esp_coex_internal_semphr_delete_wrapper()
/hal_espressif-latest/components/esp_coex/esp32s3/
Desp_coex_adapter.c34 void *storage; /**< storage for FreeRTOS queue */ member
160 …semphr->storage = heap_caps_calloc(1, sizeof(StaticSemaphore_t), MALLOC_CAP_8BIT|MALLOC_CAP_INTERN… in esp_coex_internal_semphr_create_wrapper()
161 if (!semphr->storage) { in esp_coex_internal_semphr_create_wrapper()
165 semphr->handle = xSemaphoreCreateCountingStatic(max, init, semphr->storage); in esp_coex_internal_semphr_create_wrapper()
173 if (semphr->storage) { in esp_coex_internal_semphr_create_wrapper()
174 free(semphr->storage); in esp_coex_internal_semphr_create_wrapper()
194 if (semphr_item->storage) { in esp_coex_internal_semphr_delete_wrapper()
195 free(semphr_item->storage); in esp_coex_internal_semphr_delete_wrapper()
/hal_espressif-latest/components/esp_wifi/esp32s2/
Desp_adapter.c117 …queue->storage = heap_caps_calloc(1, sizeof(StaticQueue_t) + (queue_len*item_size), MALLOC_CAP_INT… in wifi_create_queue()
118 if (!queue->storage) { in wifi_create_queue()
122 …( queue_len, item_size, ((uint8_t*)(queue->storage)) + sizeof(StaticQueue_t), (StaticQueue_t*)(que… in wifi_create_queue()
132 if (queue->storage) { in wifi_create_queue()
133 free(queue->storage); in wifi_create_queue()
152 if (queue->storage) { in wifi_delete_queue()
153 free(queue->storage); in wifi_delete_queue()
/hal_espressif-latest/components/esp_wifi/esp32/
Desp_adapter.c126 …queue->storage = heap_caps_calloc(1, sizeof(StaticQueue_t) + (queue_len*item_size), MALLOC_CAP_INT… in wifi_create_queue()
127 if (!queue->storage) { in wifi_create_queue()
131 …( queue_len, item_size, ((uint8_t*)(queue->storage)) + sizeof(StaticQueue_t), (StaticQueue_t*)(que… in wifi_create_queue()
141 if (queue->storage) { in wifi_create_queue()
142 free(queue->storage); in wifi_create_queue()
161 if (queue->storage) { in wifi_delete_queue()
162 free(queue->storage); in wifi_delete_queue()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/
Dadv.c54 uint8_t *storage; member
604 …adv_queue.storage = heap_caps_calloc_prefer(1, (BLE_MESH_ADV_QUEUE_SIZE * sizeof(bt_mesh_msg_t)), … in bt_mesh_adv_init()
606 …adv_queue.storage = heap_caps_calloc_prefer(1, (BLE_MESH_ADV_QUEUE_SIZE * sizeof(bt_mesh_msg_t)), … in bt_mesh_adv_init()
608 __ASSERT(adv_queue.storage, "Failed to create queue storage"); in bt_mesh_adv_init()
609 …atic(BLE_MESH_ADV_QUEUE_SIZE, sizeof(bt_mesh_msg_t), (uint8_t*)adv_queue.storage, adv_queue.buffer… in bt_mesh_adv_init()
625 …relay_queue.storage = heap_caps_calloc_prefer(1, (BLE_MESH_RELAY_QUEUE_SIZE * sizeof(bt_mesh_msg_t… in bt_mesh_adv_init()
627 …relay_queue.storage = heap_caps_calloc_prefer(1, (BLE_MESH_RELAY_QUEUE_SIZE * sizeof(bt_mesh_msg_t… in bt_mesh_adv_init()
629 __ASSERT(relay_queue.storage, "Failed to create relay queue storage"); in bt_mesh_adv_init()
630 …(BLE_MESH_RELAY_QUEUE_SIZE, sizeof(bt_mesh_msg_t), (uint8_t*)relay_queue.storage, relay_queue.buff… in bt_mesh_adv_init()
685 heap_caps_free(relay_queue.storage); in bt_mesh_adv_deinit()
[all …]
/hal_espressif-latest/components/esp_wifi/esp32s3/
Desp_adapter.c120 …queue->storage = heap_caps_calloc(1, sizeof(StaticQueue_t) + (queue_len*item_size), MALLOC_CAP_INT… in wifi_create_queue()
121 if (!queue->storage) { in wifi_create_queue()
125 …( queue_len, item_size, ((uint8_t*)(queue->storage)) + sizeof(StaticQueue_t), (StaticQueue_t*)(que… in wifi_create_queue()
135 if (queue->storage) { in wifi_create_queue()
136 free(queue->storage); in wifi_create_queue()
155 if (queue->storage) { in wifi_delete_queue()
156 free(queue->storage); in wifi_delete_queue()
/hal_espressif-latest/components/esp_wifi/include/esp_private/
Dwifi.h41 void *storage; /**< storage for FreeRTOS queue */ member
/hal_espressif-latest/components/esp_wifi/include/
Desp_wifi.h981 esp_err_t esp_wifi_set_storage(wifi_storage_t storage);
/hal_espressif-latest/components/esp_timer/
DKconfig10 storage, and should only be used for debugging/testing purposes.
/hal_espressif-latest/zephyr/port/wifi/
Dwifi_stubs.c1052 esp_err_t esp_wifi_set_storage(wifi_storage_t storage) in esp_wifi_set_storage() argument
1054 ARG_UNUSED(storage); in esp_wifi_set_storage()
/hal_espressif-latest/components/bt/esp_ble_mesh/
DKconfig.in389 written into persistent storage (flash) after a change occurs.
395 int "How often the sequence number gets updated in storage"
400 persistent storage (i.e. flash). e.g. a value of 100 means that the
404 (update storage for every increment) can make sense. When the stack
410 int "Minimum frequency that the RPL gets updated in storage"
415 gets written to persistent storage after a change occurs. If the node
418 means the RPL is written into the storage immediately).
421 Otherwise, a power loss before RPL being written into the storage may
/hal_espressif-latest/components/spi_flash/
DKconfig301 See example: custom_chip_driver under examples/storage for more details.
/hal_espressif-latest/components/bt/
DCMakeLists.txt400 "esp_ble_mesh/mesh_core/storage"
452 "esp_ble_mesh/mesh_core/storage/settings_nvs.c"
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dbasic-commands.rst314 This UF2 file can be copied to a USB mass storage device exposed by another ESP running the `ESP US…
/hal_espressif-latest/tools/esptool_py/
DLICENSE131 a storage or distribution medium does not bring the other work under