Searched refs:old_entry (Results 1 – 8 of 8) sorted by relevance
/external/wpa_supplicant_8/src/ap/ |
D | pmksa_cache_auth.c | 395 const struct rsn_pmksa_cache_entry *old_entry, in pmksa_cache_add_okc() argument 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->identity_len; in pmksa_cache_add_okc() 414 os_memcpy(entry->identity, old_entry->identity, in pmksa_cache_add_okc() [all …]
|
D | pmksa_cache_auth.h | 65 const struct rsn_pmksa_cache_entry *old_entry,
|
/external/wpa_supplicant_8/src/rsn_supp/ |
D | pmksa_cache.c | 375 const struct rsn_pmksa_cache_entry *old_entry, in pmksa_cache_clone_entry() argument 379 os_time_t old_expiration = old_entry->expiration; in pmksa_cache_clone_entry() 382 if (wpa_key_mgmt_sae(old_entry->akmp)) in pmksa_cache_clone_entry() 383 pmkid = old_entry->pmkid; in pmksa_cache_clone_entry() 384 new_entry = pmksa_cache_add(pmksa, old_entry->pmk, old_entry->pmk_len, in pmksa_cache_clone_entry() 387 old_entry->network_ctx, old_entry->akmp, in pmksa_cache_clone_entry() 388 old_entry->fils_cache_id_set ? in pmksa_cache_clone_entry() 389 old_entry->fils_cache_id : NULL); in pmksa_cache_clone_entry()
|
/external/crosvm/devices/src/pci/ |
D | msix.rs | 334 let old_entry = self.table_entries[index].clone(); in write_msix_table() localVariable 366 && (old_entry.msg_addr_lo != new_entry.msg_addr_lo in write_msix_table() 367 || old_entry.msg_addr_hi != new_entry.msg_addr_hi in write_msix_table() 368 || old_entry.msg_data != new_entry.msg_data) in write_msix_table() 386 if old_entry.masked() && !self.table_entries[index].masked() { in write_msix_table() 391 } else if !old_entry.masked() && self.table_entries[index].masked() { in write_msix_table()
|
/external/python/cpython2/Modules/ |
D | readline.c | 440 HIST_ENTRY *old_entry; in py_replace_history() local 451 old_entry = replace_history_entry(entry_number, line, (void *)NULL); in py_replace_history() 452 if (!old_entry) { in py_replace_history() 459 _py_free_history_entry(old_entry); in py_replace_history()
|
/external/python/cpython3/Modules/ |
D | readline.c | 558 HIST_ENTRY *old_entry; in py_replace_history() local 573 old_entry = replace_history_entry(entry_number, PyBytes_AS_STRING(encoded), (void *)NULL); in py_replace_history() 575 if (!old_entry) { in py_replace_history() 582 _py_free_history_entry(old_entry); in py_replace_history()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_opt_copy_prop_vars.c | 294 struct hash_entry *old_entry = in gather_vars_written() local 297 if (old_entry) { in gather_vars_written() 299 (uintptr_t) old_entry->data; in gather_vars_written() 300 old_entry->data = (void *) ((uintptr_t) merged); in gather_vars_written()
|
/external/python/setuptools/setuptools/command/ |
D | easy_install.py | 1854 old_entry = cache[p] 1856 new_entry = updater and updater(p, old_entry) 1866 def clear_and_remove_cached_zip_archive_directory_data(path, old_entry): argument 1867 old_entry.clear() 1888 def replace_cached_zip_archive_directory_data(path, old_entry): argument 1896 old_entry.clear() 1898 old_entry.update(zipimport._zip_directory_cache[path]) 1899 return old_entry
|