Home
last modified time | relevance | path

Searched refs:old_entry (Results 1 - 11 of 11) sorted by relevance

/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dpmksa_cache_auth.c395 const struct rsn_pmksa_cache_entry *old_entry, in pmksa_cache_add_okc()
404 os_memcpy(entry->pmk, old_entry->pmk, old_entry->pmk_len); in pmksa_cache_add_okc()
405 entry->pmk_len = old_entry->pmk_len; in pmksa_cache_add_okc()
406 entry->expiration = old_entry->expiration; in pmksa_cache_add_okc()
407 entry->akmp = old_entry->akmp; in pmksa_cache_add_okc()
408 os_memcpy(entry->spa, old_entry->spa, ETH_ALEN); in pmksa_cache_add_okc()
410 if (old_entry->identity) { in pmksa_cache_add_okc()
411 entry->identity = os_malloc(old_entry->identity_len); in pmksa_cache_add_okc()
413 entry->identity_len = old_entry in pmksa_cache_add_okc()
394 pmksa_cache_add_okc(struct rsn_pmksa_cache *pmksa, const struct rsn_pmksa_cache_entry *old_entry, const u8 *aa, const u8 *pmkid) pmksa_cache_add_okc() argument
[all...]
H A Dpmksa_cache_auth.h65 const struct rsn_pmksa_cache_entry *old_entry,
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dpmksa_cache_auth.c395 const struct rsn_pmksa_cache_entry *old_entry, in pmksa_cache_add_okc()
404 os_memcpy(entry->pmk, old_entry->pmk, old_entry->pmk_len); in pmksa_cache_add_okc()
405 entry->pmk_len = old_entry->pmk_len; in pmksa_cache_add_okc()
406 entry->expiration = old_entry->expiration; in pmksa_cache_add_okc()
407 entry->akmp = old_entry->akmp; in pmksa_cache_add_okc()
408 os_memcpy(entry->spa, old_entry->spa, ETH_ALEN); in pmksa_cache_add_okc()
410 if (old_entry->identity) { in pmksa_cache_add_okc()
411 entry->identity = os_malloc(old_entry->identity_len); in pmksa_cache_add_okc()
413 entry->identity_len = old_entry in pmksa_cache_add_okc()
394 pmksa_cache_add_okc(struct rsn_pmksa_cache *pmksa, const struct rsn_pmksa_cache_entry *old_entry, const u8 *aa, const u8 *pmkid) pmksa_cache_add_okc() argument
[all...]
H A Dpmksa_cache_auth.h65 const struct rsn_pmksa_cache_entry *old_entry,
/third_party/node/deps/v8/src/compiler/
H A Dvalue-numbering-reducer.cc163 Node* const old_entry = old_entries[i]; in Grow() local
164 if (!old_entry || old_entry->IsDead()) continue; in Grow()
165 for (size_t j = NodeProperties::HashCode(old_entry) & mask;; in Grow()
168 if (entry == old_entry) { in Grow()
173 entries_[j] = old_entry; in Grow()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/
H A Dpmksa_cache.c418 const struct rsn_pmksa_cache_entry *old_entry, in pmksa_cache_clone_entry()
422 os_time_t old_expiration = old_entry->expiration; in pmksa_cache_clone_entry()
423 os_time_t old_reauth_time = old_entry->reauth_time; in pmksa_cache_clone_entry()
426 if (wpa_key_mgmt_sae(old_entry->akmp) || in pmksa_cache_clone_entry()
427 wpa_key_mgmt_fils(old_entry->akmp)) in pmksa_cache_clone_entry()
428 pmkid = old_entry->pmkid; in pmksa_cache_clone_entry()
429 new_entry = pmksa_cache_add(pmksa, old_entry->pmk, old_entry->pmk_len, in pmksa_cache_clone_entry()
432 old_entry->network_ctx, old_entry in pmksa_cache_clone_entry()
417 pmksa_cache_clone_entry(struct rsn_pmksa_cache *pmksa, const struct rsn_pmksa_cache_entry *old_entry, const u8 *aa) pmksa_cache_clone_entry() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/
H A Dpmksa_cache.c369 const struct rsn_pmksa_cache_entry *old_entry, in pmksa_cache_clone_entry()
373 os_time_t old_expiration = old_entry->expiration; in pmksa_cache_clone_entry()
375 new_entry = pmksa_cache_add(pmksa, old_entry->pmk, old_entry->pmk_len, in pmksa_cache_clone_entry()
378 old_entry->network_ctx, old_entry->akmp, in pmksa_cache_clone_entry()
379 old_entry->fils_cache_id_set ? in pmksa_cache_clone_entry()
380 old_entry->fils_cache_id : NULL); in pmksa_cache_clone_entry()
368 pmksa_cache_clone_entry(struct rsn_pmksa_cache *pmksa, const struct rsn_pmksa_cache_entry *old_entry, const u8 *aa) pmksa_cache_clone_entry() argument
/third_party/python/Modules/
H A Dreadline.c664 HIST_ENTRY *old_entry; in readline_replace_history_item_impl() local
675 old_entry = replace_history_entry( in readline_replace_history_item_impl()
679 if (!old_entry) { in readline_replace_history_item_impl()
686 _py_free_history_entry(old_entry); in readline_replace_history_item_impl()
1230 HIST_ENTRY *old_entry = replace_history_entry(1, "X", NULL); in setup_readline() local
1231 _py_free_history_entry(old_entry); in setup_readline()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_copy_prop_vars.c295 struct hash_entry *old_entry = in gather_vars_written() local
298 if (old_entry) { in gather_vars_written()
300 (uintptr_t) old_entry->data; in gather_vars_written()
301 old_entry->data = (void *) ((uintptr_t) merged); in gather_vars_written()
/third_party/node/deps/v8/src/objects/
H A Dordered-hash-table.cc268 for (InternalIndex old_entry : table->IterateEntries()) { in Rehash()
269 int old_entry_raw = old_entry.as_int(); in Rehash()
270 Object key = table->KeyAt(old_entry); in Rehash()
932 for (InternalIndex old_entry : table->IterateEntries()) { in Rehash()
933 Object key = table->KeyAt(old_entry); in Rehash()
944 Object value = table->GetDataEntry(old_entry.as_int(), i); in Rehash()
/third_party/node/deps/v8/src/diagnostics/
H A Dgdb-jit.cc1973 JITCodeEntry* old_entry = (*it).second;
1974 UnregisterCodeEntry(old_entry);
1975 DestroyCodeEntry(old_entry);

Completed in 12 milliseconds