Home
last modified time | relevance | path

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

123456

/hal_espressif-2.7.6/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-2.7.6/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()
129 value_entry_t *entry = SLIST_FIRST(tls); in pthread_local_storage_thread_deleted_callback() local
130 while(entry != NULL) { in pthread_local_storage_thread_deleted_callback()
134 key_entry_t *key = find_key(entry->key); in pthread_local_storage_thread_deleted_callback()
136 key->destructor(entry->value); in pthread_local_storage_thread_deleted_callback()
138 value_entry_t *next_entry = SLIST_NEXT(entry, next); in pthread_local_storage_thread_deleted_callback()
139 free(entry); in pthread_local_storage_thread_deleted_callback()
[all …]
Dpthread_cond_var.c56 esp_pthread_cond_waiter_t *entry; in pthread_cond_signal() local
57 entry = TAILQ_FIRST(&cond->waiter_list); in pthread_cond_signal()
58 if (entry) { in pthread_cond_signal()
59 xSemaphoreGive(entry->wait_sem); in pthread_cond_signal()
75 esp_pthread_cond_waiter_t *entry; in pthread_cond_broadcast() local
76 TAILQ_FOREACH(entry, &cond->waiter_list, link) { in pthread_cond_broadcast()
77 xSemaphoreGive(entry->wait_sem); in pthread_cond_broadcast()
/hal_espressif-2.7.6/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-2.7.6/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-2.7.6/docs/extensions/
Dtoctree_filter.py37 def filter_entry(self, env, entry): argument
38 m = self.RE_PATTERN.match(entry)
40 tag_filter, entry = m.groups()
43 return entry
Dlist_filter.py54 def filter_entry(self, env, entry): argument
55 m = self.RE_PATTERN.match(entry)
57 tag_filter, entry = m.groups()
60 return entry
/hal_espressif-2.7.6/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-2.7.6/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-2.7.6/components/nvs_flash/src/
Dnvs_storage.cpp52 BlobIndexNode* entry = new (std::nothrow) BlobIndexNode; in populateBlobIndices() local
54 if (!entry) return ESP_ERR_NO_MEM; in populateBlobIndices()
56 item.getKey(entry->key, sizeof(entry->key)); in populateBlobIndices()
57 entry->nsIndex = item.nsIndex; in populateBlobIndices()
58 entry->chunkStart = item.blobIndex.chunkStart; in populateBlobIndices()
59 entry->chunkCount = item.blobIndex.chunkCount; in populateBlobIndices()
61 blobIdxList.push_back(entry); in populateBlobIndices()
113 NamespaceEntry* entry = new (std::nothrow) NamespaceEntry; in init() local
115 if (!entry) { in init()
120 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-2.7.6/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-2.7.6/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-2.7.6/tools/ldgen/
Dfragments.py316 entry = pattern1 | pattern2 | pattern3
320 'entries': KeyGrammar(entry, 0, None, True)
388 for entry in entries[1]:
389 … fragment.entries.add((entry.object, None if entry.symbol == '' else entry.symbol, entry.scheme))
398 for entry in entries:
399 … fragment.entries.add((entry.object, None if entry.symbol == '' else entry.symbol, entry.scheme))
/hal_espressif-2.7.6/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-2.7.6/
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-2.7.6/docs/
Dbuild_docs.py182 for ret, entry in zip(errcodes, entries):
184 print('language: %s, target: %s, errcode: %d' % (entry[0], entry[1], ret))
264 def call_build_docs(entry): argument
265 (language, target, build_dir, src_dir, sphinx_parallel_jobs, builders, input_docs) = entry
414 def call_linkcheck(entry): argument
415 return sphinx_call(*entry)
/hal_espressif-2.7.6/components/nvs_flash/
DREADME.rst114entry state bitmap, and entries themselves. To be compatible with ESP32 flash encryption, entry si…
133 Page header and entry state bitmap are always written to flash unencrypted. Entries are encrypted i…
141 The following sections describe the structure of entry state bitmap and entry itself.
143 Entry and entry state bitmap
146 Each entry can be in one of the following three states represented with two bits in the entry state…
149 …Nothing is written into the specific entry yet. It is in an uninitialized state (all bytes are ``0…
152 …alue pair (or part of key-value pair which spans multiple entries) has been written into the entry.
155 …A key-value pair in this entry has been discarded. Contents of this entry will not be parsed anymo…
160 Structure of entry
163entry holds one key-value pair. For string and blob types, entry holds part of the whole key-value…
[all …]
/hal_espressif-2.7.6/components/xtensa/trax/test/
DMakefile11 -u entry \
12 -e entry \
Dgdbinit4 # Start OpenOCD and run to the entry function
7 thb entry
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-2.7.6/components/esp_common/src/
Ddbg_stubs.c84 esp_err_t esp_dbg_stub_entry_set(esp_dbg_stub_id_t id, uint32_t entry) in esp_dbg_stub_entry_set() argument
90 s_stub_entry[id] = entry; in esp_dbg_stub_entry_set()
/hal_espressif-2.7.6/examples/system/ulp_adc/main/ulp/
Dadc.S60 .global entry
61 entry: label

123456