Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 25 of 172) sorted by relevance

1234567

/hal_espressif-3.5.0/components/wpa_supplicant/src/rsn_supp/
Dpmksa_cache.c30 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()
64 MACSTR, MAC2STR(entry->aa)); in pmksa_cache_expire()
65 pmksa_cache_free_entry(pmksa, entry, PMKSA_EXPIRE); in pmksa_cache_expire()
[all …]
/hal_espressif-3.5.0/components/pthread/
Dpthread_local_storage.c100 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 …]
Dpthread_cond_var.c76 esp_pthread_cond_waiter_t *entry; in pthread_cond_signal() local
77 entry = TAILQ_FIRST(&cond->waiter_list); in pthread_cond_signal()
78 if (entry) { in pthread_cond_signal()
79 xSemaphoreGive(entry->wait_sem); in pthread_cond_signal()
96 esp_pthread_cond_waiter_t *entry; in pthread_cond_broadcast() local
97 TAILQ_FOREACH(entry, &cond->waiter_list, link) { in pthread_cond_broadcast()
98 xSemaphoreGive(entry->wait_sem); in pthread_cond_broadcast()
/hal_espressif-3.5.0/components/bt/common/osi/
Dconfig.c144 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.5.0/components/xtensa/
Dxtensa_intr.c120 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.5.0/components/spi_flash/
Dpartition.c194 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.5.0/components/nvs_flash/src/
Dnvs_storage.cpp44 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 …]
Dnvs_encrypted_partition.cpp96 for(uint8_t entry = 0; entry < (size/entrySize); entry++) in write() local
98 uint32_t offset = entry * entrySize; in write()
/hal_espressif-3.5.0/tools/esp_prov/prov/
Dwifi_scan.py94 for entry in resp.resp_scan_result.entries:
95 results += [{'ssid': entry.ssid.decode('latin-1').rstrip('\x00'),
96 'bssid': utils.str_to_hexstr(entry.bssid.decode('latin-1')),
97 'channel': entry.channel,
98 'rssi': entry.rssi,
99 'auth': authmode_str[entry.auth]}]
/hal_espressif-3.5.0/components/wpa_supplicant/src/eap_peer/
Deap_fast_pac.c141 struct eap_fast_pac *entry) in eap_fast_add_pac() argument
145 if (entry == NULL || entry->a_id == NULL) in eap_fast_add_pac()
150 entry->a_id, entry->a_id_len, entry->pac_type); in eap_fast_add_pac()
157 pac->pac_type = entry->pac_type; in eap_fast_add_pac()
158 os_memcpy(pac->pac_key, entry->pac_key, EAP_FAST_PAC_KEY_LEN); in eap_fast_add_pac()
160 entry->pac_opaque, entry->pac_opaque_len) < 0 || in eap_fast_add_pac()
162 entry->pac_info, entry->pac_info_len) < 0 || in eap_fast_add_pac()
164 entry->a_id, entry->a_id_len) < 0 || in eap_fast_add_pac()
166 entry->i_id, entry->i_id_len) < 0 || in eap_fast_add_pac()
168 entry->a_id_info, entry->a_id_info_len) < 0) { in eap_fast_add_pac()
Deap_fast.c830 static void eap_fast_parse_pac_tlv(struct eap_fast_pac *entry, int type, in eap_fast_parse_pac_tlv() argument
842 os_memcpy(entry->pac_key, pos, len); in eap_fast_parse_pac_tlv()
846 entry->pac_opaque = pos; in eap_fast_parse_pac_tlv()
847 entry->pac_opaque_len = len; in eap_fast_parse_pac_tlv()
851 entry->pac_info = pos; in eap_fast_parse_pac_tlv()
852 entry->pac_info_len = len; in eap_fast_parse_pac_tlv()
862 static int eap_fast_process_pac_tlv(struct eap_fast_pac *entry, in eap_fast_process_pac_tlv() argument
887 eap_fast_parse_pac_tlv(entry, type, pos, len, &pac_key_found); in eap_fast_process_pac_tlv()
893 if (!pac_key_found || !entry->pac_opaque || !entry->pac_info) { in eap_fast_process_pac_tlv()
903 static int eap_fast_parse_pac_info(struct eap_fast_pac *entry, int type, in eap_fast_parse_pac_info() argument
[all …]
/hal_espressif-3.5.0/examples/protocols/http_server/file_serving/main/
Dfile_server.c78 struct dirent *entry; in http_resp_dir_html() local
113 while ((entry = readdir(dir)) != NULL) { in http_resp_dir_html()
114 entrytype = (entry->d_type == DT_DIR ? "directory" : "file"); in http_resp_dir_html()
116 strlcpy(entrypath + dirpath_len, entry->d_name, sizeof(entrypath) - dirpath_len); in http_resp_dir_html()
118 ESP_LOGE(TAG, "Failed to stat %s : %s", entrytype, entry->d_name); in http_resp_dir_html()
122 ESP_LOGI(TAG, "Found %s : %s (%s bytes)", entrytype, entry->d_name, entrysize); in http_resp_dir_html()
127 httpd_resp_sendstr_chunk(req, entry->d_name); in http_resp_dir_html()
128 if (entry->d_type == DT_DIR) { in http_resp_dir_html()
132 httpd_resp_sendstr_chunk(req, entry->d_name); in http_resp_dir_html()
140 httpd_resp_sendstr_chunk(req, entry->d_name); in http_resp_dir_html()
/hal_espressif-3.5.0/tools/kconfig/
Dlist.h125 static inline void list_del(struct list_head *entry) in list_del() argument
127 __list_del(entry->prev, entry->next); in list_del()
128 entry->next = (struct list_head*)LIST_POISON1; in list_del()
129 entry->prev = (struct list_head*)LIST_POISON2; in list_del()
Dkconfig-language.txt20 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.5.0/components/xtensa/include/xtensa/
Dcoreasm.h458 entry sp, 48
468 entry sp, 48
478 entry sp, 16
518 entry sp, 32
522 entry sp, 16
526 entry sp, 48
530 entry sp, 48
535 entry sp, 48
539 entry sp, 32
543 entry sp, 16
[all …]
Dcore-macros.h485 static inline void xthal_mpu_set_entry (xthal_MPU_entry entry) in xthal_mpu_set_entry() argument
488 … __volatile__("j 1f\n\t.align 8\n\t1: memw\n\twptlb %0, %1\n\t" : : "a" (entry.at), "a"(entry.as)); in xthal_mpu_set_entry()
494 static inline void xthal_mpu_set_entry_ (xthal_MPU_entry entry) in xthal_mpu_set_entry_() argument
497 __asm__ __volatile__("wptlb %0, %1\n\t" : : "a" (entry.at), "a"(entry.as)); in xthal_mpu_set_entry_()
/hal_espressif-3.5.0/components/bt/host/bluedroid/stack/smp/
Dsmp_br_main.c318 UINT8 action, entry; in smp_br_state_machine_event() local
336 if ((event <= SMP_BR_MAX_EVT) && ( (entry = entry_table[event - 1][curr_state]) in smp_br_state_machine_event()
338 if (entry & SMP_BR_ALL_TABLE_MASK) { in smp_br_state_machine_event()
339 entry &= ~SMP_BR_ALL_TABLE_MASK; in smp_br_state_machine_event()
353 smp_set_br_state(state_table[entry - 1][SMP_BR_SME_NEXT_STATE]); in smp_br_state_machine_event()
360 if ((action = state_table[entry - 1][i]) != SMP_BR_SM_NO_ACTION) { in smp_br_state_machine_event()
/hal_espressif-3.5.0/components/esp_system/
Ddebug_stubs.c75 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.5.0/tools/ldgen/
Doutput_commands.py146 entry = '*%s' % (sections_string)
148 entry = '*%s:%s' % (self.entity.archive, sections_string)
150 entry = '*%s:%s.*%s' % (self.entity.archive, self.entity.obj, sections_string)
153 res = 'KEEP(%s)' % entry
155 res = entry
Dfragments.py503 entry = ((pattern1 | pattern2 | pattern3) + scheme +
508 'entries': Fragment.KeyValue(entry, 0, None, True)
577 for entry in entries[1]:
578 … fragment.entries.add((entry.object, None if entry.symbol == '' else entry.symbol, entry.scheme))
587 for entry in entries:
588 … fragment.entries.add((entry.object, None if entry.symbol == '' else entry.symbol, entry.scheme))
/hal_espressif-3.5.0/
Dexport.fish33 for entry in $PATH;
34 if not contains $entry $oldpath
35 set -a added_path_variables $entry
40 for entry in $added_path_variables;
41 echo $entry
/hal_espressif-3.5.0/components/esptool_py/esptool/flasher_stub/
Dcompare_stubs.py36 if new.entry != old.entry:
37 output += " Entrypoint: New {:#x}, old {:#x} \n".format(new.entry, old.entry)
/hal_espressif-3.5.0/docs/en/api-reference/storage/
Dnvs_flash.rst80 …P1619. For the purpose of encryption, each entry is treated as one `sector` and relative address o…
232entry state bitmap, and entries themselves. To be compatible with {IDF_TARGET_NAME} flash encrypti…
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…
269 …Nothing is written into the specific entry yet. It is in an uninitialized state (all bytes are ``0…
272 …alue pair (or part of key-value pair which spans multiple entries) has been written into the entry.
275 …A key-value pair in this entry has been discarded. Contents of this entry will not be parsed anymo…
280 Structure of entry
[all …]
/hal_espressif-3.5.0/components/xtensa/trax/test/
Dgdb_log_expected.txt4 Temporary breakpoint 1, entry () at test.c:22
8 entry () at test.c:26
12 0x40080400 <fib+0>: entry a1, 48
27 0x40080400 <fib+0>: entry a1, 48
42 0x40080400 <fib+0>: entry a1, 48
64 0x40080400 <fib+0>: entry a1, 48
92 0x40080400 <fib+0>: entry a1, 48
120 0x40080400 <fib+0>: entry a1, 48
135 0x40080400 <fib+0>: entry a1, 48
157 0x40080400 <fib+0>: entry a1, 48
[all …]
/hal_espressif-3.5.0/docs/zh_CN/api-guides/tools/
Didf-monitor.rst172 …panic_abort (details=details@entry=0x3fc9a37c "abort() was called at PC 0x42067cd5 on core 0") at …
174 …#0 panic_abort (details=details@entry=0x3fc9a37c "abort() was called at PC 0x42067cd5 on core 0")…
175 …#1 0x40386b02 in esp_system_abort (details=details@entry=0x3fc9a37c "abort() was called at PC 0x4…
177 …rt_func (file=file@entry=0x3c0937f4 "", line=line@entry=42, func=func@entry=0x3c0937d4 <__func__.8…
243 entry 0x40078d4c
262 entry 0x40078d4c

1234567