/hal_espressif-3.4.0/components/wpa_supplicant/src/rsn_supp/ |
D | pmksa_cache.c | 30 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx, 39 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) in _pmksa_cache_free_entry() argument 41 wpa_bin_clear_free(entry, sizeof(*entry)); in _pmksa_cache_free_entry() 46 struct rsn_pmksa_cache_entry *entry, in pmksa_cache_free_entry() argument 50 pmksa->free_cb(entry, pmksa->ctx, reason); in pmksa_cache_free_entry() 51 _pmksa_cache_free_entry(entry); in pmksa_cache_free_entry() 61 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; in pmksa_cache_expire() local 62 pmksa->pmksa = entry->next; in pmksa_cache_expire() 63 wpa_printf(MSG_DEBUG, "RSN: expired PMKSA cache entry for " in pmksa_cache_expire() 64 MACSTR, MAC2STR(entry->aa)); in pmksa_cache_expire() [all …]
|
/hal_espressif-3.4.0/components/soc/esp32s3/include/soc/ |
D | world_controller_struct.h | 58 …uint32_t reg_core_0_entry_check : 13; /*This filed is used to enable entry address chec… 105 … reg_core_0_from_world_1 : 1; /*This bit is used to confirm world before enter entry 1 */ 106 …0_from_entry_1 : 4; /*This filed is used to confirm in which entry before enter entry 1*/ 107 …urrent_1 : 1; /*This bit is used to confirm whether the current state is in entry 1 */ 114 … reg_core_0_from_world_2 : 1; /*This bit is used to confirm world before enter entry 2 */ 115 …0_from_entry_2 : 4; /*This filed is used to confirm in which entry before enter entry 2*/ 116 …urrent_2 : 1; /*This bit is used to confirm whether the current state is in entry 2 */ 123 … reg_core_0_from_world_3 : 1; /*This bit is used to confirm world before enter entry 3 */ 124 …0_from_entry_3 : 4; /*This filed is used to confirm in which entry before enter entry 3*/ 125 …urrent_3 : 1; /*This bit is used to confirm whether the current state is in entry 3 */ [all …]
|
D | world_controller_reg.h | 25 /*description: Core_0 Entry 1 address from WORLD1 to WORLD0.*/ 33 /*description: Core_0 Entry 2 address from WORLD1 to WORLD0.*/ 41 /*description: Core_0 Entry 3 address from WORLD1 to WORLD0.*/ 49 /*description: Core_0 Entry 4 address from WORLD1 to WORLD0.*/ 57 /*description: Core_0 Entry 5 address from WORLD1 to WORLD0.*/ 65 /*description: Core_0 Entry 6 address from WORLD1 to WORLD0.*/ 73 /*description: Core_0 Entry 7 address from WORLD1 to WORLD0.*/ 81 /*description: Core_0 Entry 8 address from WORLD1 to WORLD0.*/ 89 /*description: Core_0 Entry 9 address from WORLD1 to WORLD0.*/ 97 /*description: Core_0 Entry 10 address from WORLD1 to WORLD0.*/ [all …]
|
/hal_espressif-3.4.0/components/pthread/ |
D | pthread_local_storage.c | 100 key_entry_t *entry = find_key(key); in pthread_key_delete() local 101 if (entry != NULL) { in pthread_key_delete() 102 SLIST_REMOVE(&s_keys, entry, key_entry_t_, next); in pthread_key_delete() 103 free(entry); in pthread_key_delete() 135 value_entry_t *entry = SLIST_FIRST(tls); in pthread_local_storage_thread_deleted_callback() local 136 if (entry == NULL) { in pthread_local_storage_thread_deleted_callback() 144 key_entry_t *key = find_key(entry->key); in pthread_local_storage_thread_deleted_callback() 146 key->destructor(entry->value); in pthread_local_storage_thread_deleted_callback() 148 free(entry); in pthread_local_storage_thread_deleted_callback() 214 value_entry_t *entry = find_value(tls, key); in pthread_getspecific() local [all …]
|
/hal_espressif-3.4.0/components/bt/common/osi/ |
D | config.c | 144 entry_t *entry = list_node(node); in config_has_key_in_section() local 145 OSI_TRACE_DEBUG("entry->key = %s, entry->value = %s", entry->key, entry->value); in config_has_key_in_section() 146 if (!strcmp(entry->key, key) && !strcmp(entry->value, key_value)) { in config_has_key_in_section() 162 entry_t *entry = entry_find(config, section, key); in config_get_int() local 163 if (!entry) { in config_get_int() 168 int ret = strtol(entry->value, &endptr, 0); in config_get_int() 178 entry_t *entry = entry_find(config, section, key); in config_get_bool() local 179 if (!entry) { in config_get_bool() 183 if (!strcmp(entry->value, "true")) { in config_get_bool() 186 if (!strcmp(entry->value, "false")) { in config_get_bool() [all …]
|
/hal_espressif-3.4.0/tools/kconfig/ |
D | list.h | 34 * list_entry - get the struct for this entry 54 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry 76 * Insert a new entry between two known consecutive entries. 92 * list_add_tail - add a new entry 93 * @new: new entry to be added 96 * Insert a new entry before the specified head. 105 * Delete a list entry by making the prev/next entries 120 * list_del - deletes entry from list. 121 * @entry: the element to delete from the list. 122 * Note: list_empty() on entry does not return true after this, the entry is [all …]
|
D | kconfig-language.txt | 20 Every entry has its own dependencies. These dependencies are used 21 to determine the visibility of an entry. Any child entry is only 22 visible if its parent entry is also visible. 38 arguments. "config" starts a new config entry. The following lines 48 A menu entry can have a number of attributes. Not all of them are 63 Every menu entry can have at most one prompt, which is used to display 70 Default values are not limited to the menu entry where they are 86 This defines a dependency for this menu entry. If multiple 88 are applied to all other options within this menu entry (which also 139 which can modify the behaviour of the menu entry and its config [all …]
|
/hal_espressif-3.4.0/components/nvs_flash/host_test/fixtures/ |
D | test_fixtures.hpp | 163 // entry table with one entry 188 // read entry table 192 // read next free entry's header 196 // read namespace entry 200 // read normal entry 204 // read normal entry second time during duplicated entry check 240 // entry table with one entry 255 …// entry_table with all elements deleted except the namespace entry written and the last entry free 264 // read entry table 268 // reading entry table checks empty entry [all …]
|
/hal_espressif-3.4.0/components/esp_system/include/esp_private/ |
D | dbg_stubs.h | 29 ESP_DBG_STUB_CONTROL_DATA, ///< stubs descriptor entry 31 ESP_DBG_STUB_ENTRY_GCOV ///< GCOV entry 53 * @param entry Stub entry. Usually it is stub entry function address, 58 esp_err_t esp_dbg_stub_entry_set(esp_dbg_stub_id_t id, uint32_t entry); 61 * @brief Retrives the corresponding stub entry 64 * @param entry Stub entry. Usually it is stub entry function address, 70 esp_err_t esp_dbg_stub_entry_get(esp_dbg_stub_id_t id, uint32_t *entry);
|
/hal_espressif-3.4.0/components/nvs_flash/host_test/nvs_page_test/main/ |
D | nvs_page_test.cpp | 100 // entry table with one entry in test_Page_load__corrupt_entry_table() 114 // read entry table in test_Page_load__corrupt_entry_table() 118 // read next free entry's header in test_Page_load__corrupt_entry_table() 122 // read namespace entry in test_Page_load__corrupt_entry_table() 126 // we expect a raw word write from the partition in order to change the entry bits to erased (0) in test_Page_load__corrupt_entry_table() 130 // corrupt entry table as well as crc of corresponding item in test_Page_load__corrupt_entry_table() 239 // mark first entry as written in test_page_write__write_correct_entry_state() 245 // write entry in test_page_write__write_correct_entry_state() 248 // write entry state in test_page_write__write_correct_entry_state() 268 // write entry in test_Page_write__write_correct_data() [all …]
|
/hal_espressif-3.4.0/ |
D | .pre-commit-config.yaml | 42 entry: tools/ci/check_executables.py --action executables 48 entry: tools/ci/check_executables.py --action list 54 entry: tools/ci/check_kconfigs.py 59 entry: tools/ci/check_deprecated_kconfigs.py 64 entry: cmakelint --linelength=120 --spaces=4 --filter=-whitespace/indent 72 entry: tools/ci/check_codeowners.py ci-check 78 entry: tools/ci/check_rules_yml.py 86 entry: .gitlab/ci/dependencies/generate_rules.py 94 entry: tools/ci/check_type_comments.py 102 entry: tools/ci/check_tools_files_patterns.py
|
/hal_espressif-3.4.0/components/wpa_supplicant/src/eap_peer/ |
D | eap_fast_pac.c | 46 * @pac: Pointer to the PAC entry 48 * Note that the PAC entry must not be in a list since this function does not 63 * eap_fast_get_pac - Get a PAC entry based on A-ID 68 * Returns: Pointer to the PAC entry, or %NULL if A-ID not found 128 * eap_fast_add_pac - Add a copy of a PAC entry to a list 131 * @entry: New entry to clone and add to the list 134 * This function makes a clone of the given PAC entry and adds this copied 135 * entry to the list (pac_root). If an old entry for the same A-ID is found, 136 * it will be removed from the PAC list and in this case, pac_current entry 137 * is set to %NULL if it was the removed entry. [all …]
|
/hal_espressif-3.4.0/components/spi_flash/ |
D | partition.c | 194 esp_partition_info_t entry; in load_partitions() local 197 memcpy(&entry, p_entry, sizeof(entry)); in load_partitions() 200 if (entry.magic == ESP_PARTITION_MAGIC_MD5) { in load_partitions() 205 if (entry.magic != ESP_PARTITION_MAGIC) { in load_partitions() 210 esp_rom_md5_update(&context, &entry, sizeof(entry)); in load_partitions() 220 item->info.address = entry.pos.offset; in load_partitions() 221 item->info.size = entry.pos.size; in load_partitions() 222 item->info.type = entry.type; in load_partitions() 223 item->info.subtype = entry.subtype; in load_partitions() 224 item->info.encrypted = entry.flags & PART_FLAG_ENCRYPTED; in load_partitions() [all …]
|
/hal_espressif-3.4.0/components/xtensa/ |
D | xtensa_intr.c | 120 xt_handler_table_entry * entry; in xt_set_interrupt_handler() local 131 entry = _xt_interrupt_table + n; in xt_set_interrupt_handler() 132 old = entry->handler; in xt_set_interrupt_handler() 135 entry->handler = f; in xt_set_interrupt_handler() 136 entry->arg = arg; in xt_set_interrupt_handler() 139 entry->handler = &xt_unhandled_interrupt; in xt_set_interrupt_handler() 140 entry->arg = (void*)n; in xt_set_interrupt_handler() 149 xt_handler_table_entry * entry; in xt_get_interrupt_handler_arg() local 157 entry = _xt_interrupt_table + n; in xt_get_interrupt_handler_arg() 158 return entry->arg; in xt_get_interrupt_handler_arg()
|
/hal_espressif-3.4.0/components/esp_system/ |
D | debug_stubs.c | 15 …Debug stubs is actually a table of 4-byte entries. Every entry is equal to zero or must contain me… 16 The first entry is a service one and has the followinf format: 21 This entry is used by OpenOCD code to invoke other stub entries and allocate memory for them. 75 esp_err_t esp_dbg_stub_entry_set(esp_dbg_stub_id_t id, uint32_t entry) in esp_dbg_stub_entry_set() argument 81 s_stub_entry[id] = entry; in esp_dbg_stub_entry_set() 86 esp_err_t esp_dbg_stub_entry_get(esp_dbg_stub_id_t id, uint32_t *entry) in esp_dbg_stub_entry_get() argument 92 *entry = s_stub_entry[id]; in esp_dbg_stub_entry_get()
|
/hal_espressif-3.4.0/docs/en/api-reference/storage/ |
D | nvs_flash.rst | 80 …P1619. For the purpose of encryption, each entry is treated as one `sector` and relative address o… 232 …entry state bitmap, and entries themselves. To be compatible with {IDF_TARGET_NAME} flash encrypti… 241 | Entry state bitmap (32) | 243 | Entry 0 (32) | 245 | Entry 1 (32) | 250 | Entry 125 (32) | 253 Page header and entry state bitmap are always written to flash unencrypted. Entries are encrypted i… 261 The following sections describe the structure of entry state bitmap and entry itself. 263 Entry and entry state bitmap 266 Each entry can be in one of the following three states represented with two bits in the entry state… [all …]
|
/hal_espressif-3.4.0/examples/bluetooth/bluedroid/ble/gatt_security_client/tutorial/ |
D | Gatt_Security_Client_Example_Walkthrough.md | 85 …ly** | Just Works | Just Works | Passkey Entry | Just Works | Passkey Entry… 86 …s/No** | Just Works | Just Works | Passkey Entry | Just Works | Passkey Entry… 87 | **Keyboard Only** | Passkey Entry | Passkey Entry | Passkey Entry | Just Works | … 89 | **Keyboard Display** | Passkey Entry | Passkey Entry | Passkey Entry | Just Works | …
|
/hal_espressif-3.4.0/components/wpa_supplicant/src/common/ |
D | bss.c | 52 * wpa_bss_get - Fetch a BSS table entry based on BSSID and SSID 57 * Returns: Pointer to the BSS entry or %NULL if not found 159 * Remove the oldest entry that does not match with any configured in wpa_bss_remove_oldest() 166 * Remove the oldest entry that isn't currently in use. in wpa_bss_remove_oldest() 233 "Accept this BSS entry since it looks more current than the previous update"); in wpa_bss_update() 238 /* Move the entry to the end of the list */ in wpa_bss_update() 294 * wpa_bss_update_scan_res - Update a BSS table entry based on a scan result 299 * This function updates a BSS table entry (or adds one) based on a scan result. 424 * wpa_bss_get_bssid - Fetch a BSS table entry based on BSSID 427 * Returns: Pointer to the BSS entry or %NULL if not found [all …]
|
/hal_espressif-3.4.0/components/esp_hw_support/port/esp32c3/ |
D | cpu_util_esp32c3.c | 43 _Static_assert(SOC_DEBUG_HIGH < SOC_DROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 50 _Static_assert(SOC_DROM_HIGH < SOC_DRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 60 _Static_assert(SOC_DRAM_HIGH < SOC_DROM_MASK_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 67 _Static_assert(SOC_DROM_MASK_HIGH < SOC_IROM_MASK_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 72 _Static_assert(SOC_IROM_MASK_HIGH < SOC_IRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 82 _Static_assert(SOC_IRAM_HIGH < SOC_IROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 87 _Static_assert(SOC_IROM_HIGH < SOC_RTC_IRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 95 _Static_assert(SOC_RTC_IRAM_HIGH < SOC_PERIPHERAL_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
|
/hal_espressif-3.4.0/components/esp_hw_support/port/esp32h2/ |
D | cpu_util_esp32h2.c | 43 _Static_assert(SOC_DEBUG_HIGH < SOC_DROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 50 _Static_assert(SOC_DROM_HIGH < SOC_DRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 60 _Static_assert(SOC_DRAM_HIGH < SOC_DROM_MASK_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 67 _Static_assert(SOC_DROM_MASK_HIGH < SOC_IROM_MASK_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 72 _Static_assert(SOC_IROM_MASK_HIGH < SOC_IRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 82 _Static_assert(SOC_IRAM_HIGH < SOC_IROM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 87 _Static_assert(SOC_IROM_HIGH < SOC_RTC_IRAM_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection() 95 _Static_assert(SOC_RTC_IRAM_HIGH < SOC_PERIPHERAL_LOW, "Invalid PMP entry order"); in esp_cpu_configure_region_protection()
|
/hal_espressif-3.4.0/examples/bluetooth/bluedroid/ble_50/ble50_security_client/tutorial/ |
D | ble50_security_client_Example_Walkthrough.md | 113 …ly** | Just Works | Just Works | Passkey Entry | Just Works | Passkey Entry… 114 …s/No** | Just Works | Just Works | Passkey Entry | Just Works | Passkey Entry… 115 | **Keyboard Only** | Passkey Entry | Passkey Entry | Passkey Entry | Just Works | … 117 | **Keyboard Display** | Passkey Entry | Passkey Entry | Passkey Entry | Just Works | …
|
/hal_espressif-3.4.0/tools/ldgen/ |
D | fragments.py | 195 2. min - the minimum number of value in the key entry, None means no minimum 196 3. max - the maximum number of value in the key entry, None means no maximum 242 Utility function that returns a list of sections given a sections fragment entry, 309 Ultimately, an `entity (scheme)` entry generates an 503 entry = ((pattern1 | pattern2 | pattern3) + scheme + 508 'entries': Fragment.KeyValue(entry, 0, None, True) 521 # Name of the default condition entry 544 …# To simplify parsing, classify groups of condition-mapping entry into two types: normal and defau… 557 … fragment definition can have zero or more normal group and only one default group as a last entry. 577 for entry in entries[1]: [all …]
|
/hal_espressif-3.4.0/components/nvs_flash/src/ |
D | nvs_storage.cpp | 44 BlobIndexNode* entry = new (std::nothrow) BlobIndexNode; in populateBlobIndices() local 46 if (!entry) return ESP_ERR_NO_MEM; in populateBlobIndices() 48 item.getKey(entry->key, sizeof(entry->key)); in populateBlobIndices() 49 entry->nsIndex = item.nsIndex; in populateBlobIndices() 50 entry->chunkStart = item.blobIndex.chunkStart; in populateBlobIndices() 51 entry->chunkCount = item.blobIndex.chunkCount; in populateBlobIndices() 53 blobIdxList.push_back(entry); in populateBlobIndices() 105 NamespaceEntry* entry = new (std::nothrow) NamespaceEntry; in init() local 107 if (!entry) { in init() 112 item.getKey(entry->mName, sizeof(entry->mName)); in init() [all …]
|
/hal_espressif-3.4.0/examples/bluetooth/bluedroid/ble_50/ble50_security_server/tutorial/ |
D | ble50_security_server_Example_Walkthrough.md | 13 … available and the applicable pairing algorithm (*Just Works* or *Passkey Entry*). Both the pairin… 125 …ly** | Just Works | Just Works | Passkey Entry | Just Works | Passkey Entry… 126 …s/No** | Just Works | Just Works | Passkey Entry | Just Works | Passkey Entry… 127 | **Keyboard Only** | Passkey Entry | Passkey Entry | Passkey Entry | Just Works | … 129 | **Keyboard Display** | Passkey Entry | Passkey Entry | Passkey Entry | Just Works | …
|
/hal_espressif-3.4.0/examples/bluetooth/bluedroid/ble/gatt_security_server/tutorial/ |
D | Gatt_Security_Server_Example_Walkthrough.md | 13 … available and the applicable pairing algorithm (*Just Works* or *Passkey Entry*). Both the pairin… 125 …ly** | Just Works | Just Works | Passkey Entry | Just Works | Passkey Entry… 126 …s/No** | Just Works | Just Works | Passkey Entry | Just Works | Passkey Entry… 127 | **Keyboard Only** | Passkey Entry | Passkey Entry | Passkey Entry | Just Works | … 129 | **Keyboard Display** | Passkey Entry | Passkey Entry | Passkey Entry | Just Works | …
|