/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_auth.c | 251 sctp_key_t *new_key; in sctp_alloc_key() local 253 SCTP_MALLOC(new_key, sctp_key_t *, sizeof(*new_key) + keylen, in sctp_alloc_key() 255 if (new_key == NULL) { in sctp_alloc_key() 259 new_key->keylen = keylen; in sctp_alloc_key() 260 return (new_key); in sctp_alloc_key() 323 sctp_key_t *new_key; in sctp_generate_random_key() local 325 new_key = sctp_alloc_key(keylen); in sctp_generate_random_key() 326 if (new_key == NULL) { in sctp_generate_random_key() 330 SCTP_READ_RANDOM(new_key->key, keylen); in sctp_generate_random_key() 331 new_key->keylen = keylen; in sctp_generate_random_key() [all …]
|
/third_party/python/Python/ |
D | thread.c | 139 Py_tss_t *new_key = (Py_tss_t *)PyMem_RawMalloc(sizeof(Py_tss_t)); in PyThread_tss_alloc() local 140 if (new_key == NULL) { in PyThread_tss_alloc() 143 new_key->_is_initialized = 0; in PyThread_tss_alloc() 144 return new_key; in PyThread_tss_alloc()
|
/third_party/cef/tools/ |
D | gypi_to_gn.py | 162 new_key = ReplaceSubstrings(key, search_for, replace_with) 164 result[new_key] = new_value
|
/third_party/skia/third_party/externals/libpng/ |
D | pngwutil.c | 1534 png_byte new_key[80]; in png_write_tEXt() local 1538 key_len = png_check_keyword(png_ptr, key, new_key); in png_write_tEXt() 1561 png_write_chunk_data(png_ptr, new_key, key_len + 1); in png_write_tEXt() 1577 png_byte new_key[81]; in png_write_zTXt() local 1591 key_len = png_check_keyword(png_ptr, key, new_key); in png_write_zTXt() 1597 new_key[++key_len] = PNG_COMPRESSION_TYPE_BASE; in png_write_zTXt() 1611 png_write_chunk_data(png_ptr, new_key, key_len); in png_write_zTXt() 1629 png_byte new_key[82]; in png_write_iTXt() local 1634 key_len = png_check_keyword(png_ptr, key, new_key); in png_write_iTXt() 1644 compression = new_key[++key_len] = 0; /* no compression */ in png_write_iTXt() [all …]
|
D | pngset.c | 1726 png_check_keyword(png_structrp png_ptr, png_const_charp key, png_bytep new_key) in png_check_keyword() argument 1739 *new_key = 0; in png_check_keyword() 1749 *new_key++ = ch; ++key_len; space = 0; in png_check_keyword() 1757 *new_key++ = 32; ++key_len; space = 1; in png_check_keyword() 1770 --key_len; --new_key; in png_check_keyword() 1776 *new_key = 0; in png_check_keyword()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ValueMap.h | 271 void allUsesReplacedWith(Value *new_key) override { 272 assert(isa<KeySansPointerT>(new_key) && 281 KeyT typed_new_key = cast<KeySansPointerT>(new_key);
|
/third_party/libcoap/examples/ |
D | coap-server.c | 139 coap_bin_const_t *new_key; member 153 coap_bin_const_t *new_key; member 1954 (int)valid_psk_snis.psk_sni_list[i].new_key->length, in verify_psk_sni_callback() 1955 valid_psk_snis.psk_sni_list[i].new_key->s); in verify_psk_sni_callback() 1957 psk_info.key = *valid_psk_snis.psk_sni_list[i].new_key; in verify_psk_sni_callback() 1991 (int)valid_ids.id_list[i].new_key->length, in verify_id_callback() 1992 valid_ids.id_list[i].new_key->s); in verify_id_callback() 1993 return valid_ids.id_list[i].new_key; in verify_id_callback() 2525 valid_psk_snis.psk_sni_list[valid_psk_snis.count].new_key = in cmdline_read_psk_sni_check() 2570 valid_ids.id_list[valid_ids.count].new_key = in cmdline_read_identity_check() [all …]
|
D | coap-client.c | 123 coap_bin_const_t *new_key; member 1266 valid_ihs.ih_list[valid_ihs.count].new_key = in cmdline_read_hint_check() 1309 if (valid_ihs.ih_list[i].new_key) { in verify_ih_callback() 1310 psk_identity_info.key = *valid_ihs.ih_list[i].new_key; in verify_ih_callback() 2015 coap_delete_bin_const(valid_ihs.ih_list[i].new_key); in main()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_batch_cache.c | 126 struct fd_batch_key *new_key = rzalloc_size(mem_ctx, sz); in fd_batch_key_clone() local 127 memcpy(new_key, key, sz); in fd_batch_key_clone() 128 return new_key; in fd_batch_key_clone()
|
/third_party/node/src/crypto/ |
D | crypto_ec.cc | 313 ECKeyPointer new_key(EC_KEY_dup(ecdh->key_.get())); in SetPrivateKey() local 314 CHECK(new_key); in SetPrivateKey() 316 int result = EC_KEY_set_private_key(new_key.get(), priv.get()); in SetPrivateKey() 327 const BIGNUM* priv_key = EC_KEY_get0_private_key(new_key.get()); in SetPrivateKey() 339 if (!EC_KEY_set_public_key(new_key.get(), pub.get())) in SetPrivateKey() 343 ecdh->key_ = std::move(new_key); in SetPrivateKey()
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
D | ngtcp2_ksl.c | 689 const ngtcp2_ksl_key *new_key) { in ngtcp2_ksl_update_key() argument 704 ksl_node_set_key(ksl, node, new_key); in ngtcp2_ksl_update_key() 709 ksl->compar((ngtcp2_ksl_key *)node->key, new_key)) { in ngtcp2_ksl_update_key() 710 ksl_node_set_key(ksl, node, new_key); in ngtcp2_ksl_update_key()
|
D | ngtcp2_ksl.h | 233 const ngtcp2_ksl_key *new_key);
|
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
D | nghttp3_ksl.c | 697 const nghttp3_ksl_key *new_key) { in nghttp3_ksl_update_key() argument 712 ksl_node_set_key(ksl, node, new_key); in nghttp3_ksl_update_key() 717 ksl->compar((nghttp3_ksl_key *)node->key, new_key)) { in nghttp3_ksl_update_key() 718 ksl_node_set_key(ksl, node, new_key); in nghttp3_ksl_update_key()
|
D | nghttp3_ksl.h | 235 const nghttp3_ksl_key *new_key);
|
/third_party/node/deps/v8/src/compiler/ |
D | state-values-utils.cc | 130 NodeKey* new_key = zone()->New<NodeKey>(node); in GetValuesNodeFromCache() local 131 lookup->key = new_key; in GetValuesNodeFromCache()
|
/third_party/nghttp2/src/ |
D | shrpx_worker_process.cc | 256 auto &new_key = ticket_keys->keys[0]; in renew_ticket_key_cb() local 258 if (generate_ticket_key(new_key) != 0) { in renew_ticket_key_cb()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/pae/ |
D | ieee802_1x_kay_i.h | 147 struct data_key *new_key; member
|
D | ieee802_1x_kay.c | 1578 participant->new_key; in ieee802_1x_mka_dist_sak_body_present() 1628 sak = participant->new_key; in ieee802_1x_mka_encode_dist_sak_body() 2216 participant->new_key = sa_key; in ieee802_1x_kay_generate_new_sak() 2968 if (principal->new_key == sa_key) in ieee802_1x_kay_delete_sas() 2969 principal->new_key = NULL; in ieee802_1x_kay_delete_sas() 3728 participant->new_key = NULL; in ieee802_1x_kay_create_mka()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/pae/ |
D | ieee802_1x_kay_i.h | 147 struct data_key *new_key; member
|
D | ieee802_1x_kay.c | 1541 participant->new_key; in ieee802_1x_mka_dist_sak_body_present() 1591 sak = participant->new_key; in ieee802_1x_mka_encode_dist_sak_body() 2179 participant->new_key = sa_key; in ieee802_1x_kay_generate_new_sak() 2931 if (principal->new_key == sa_key) in ieee802_1x_kay_delete_sas() 2932 principal->new_key = NULL; in ieee802_1x_kay_delete_sas() 3691 participant->new_key = NULL; in ieee802_1x_kay_create_mka()
|
/third_party/cJSON/ |
D | cJSON.c | 2018 char *new_key = NULL; in add_item_to_object() local 2028 new_key = (char*)cast_away_const(string); in add_item_to_object() 2033 new_key = (char*)cJSON_strdup((const unsigned char*)string, hooks); in add_item_to_object() 2034 if (new_key == NULL) in add_item_to_object() 2047 item->string = new_key; in add_item_to_object()
|
/third_party/python/Lib/ |
D | mailbox.py | 954 new_key = 1 956 new_key = max(keys) + 1 957 new_path = os.path.join(self._path, str(new_key)) 975 self._dump_sequences(message, new_key) 982 return new_key
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_psa_crypto_slot_management.function | 628 mbedtls_svc_key_id_t new_key = MBEDTLS_SVC_KEY_ID_INIT; 671 &attributes, &new_key), 673 TEST_ASSERT(mbedtls_svc_key_id_is_null(new_key));
|
/third_party/gstreamer/gstplugins_bad/ext/ttml/ |
D | ttmlparse.c | 1373 gboolean new_key; in ttml_store_unique_children() local 1376 new_key = g_hash_table_insert (table, g_strdup (element->id), element); in ttml_store_unique_children() 1377 if (!new_key) in ttml_store_unique_children()
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | xcode_emulation.py | 200 new_key = key.split("[")[0] 201 settings[new_key] = settings[key]
|