/external/wpa_supplicant_8/src/wps/ |
D | wps_attr_process.c | 83 static int wps_process_cred_network_idx(struct wps_credential *cred, in wps_process_cred_network_idx() argument 98 static int wps_process_cred_ssid(struct wps_credential *cred, const u8 *ssid, in wps_process_cred_ssid() argument 112 if (ssid_len <= sizeof(cred->ssid)) { in wps_process_cred_ssid() 113 os_memcpy(cred->ssid, ssid, ssid_len); in wps_process_cred_ssid() 114 cred->ssid_len = ssid_len; in wps_process_cred_ssid() 121 static int wps_process_cred_auth_type(struct wps_credential *cred, in wps_process_cred_auth_type() argument 130 cred->auth_type = WPA_GET_BE16(auth_type); in wps_process_cred_auth_type() 132 cred->auth_type); in wps_process_cred_auth_type() 138 static int wps_process_cred_encr_type(struct wps_credential *cred, in wps_process_cred_encr_type() argument 147 cred->encr_type = WPA_GET_BE16(encr_type); in wps_process_cred_encr_type() [all …]
|
D | wps_registrar.c | 1484 const struct wps_credential *cred) in wps_build_cred_network_idx() argument 1495 const struct wps_credential *cred) in wps_build_cred_ssid() argument 1499 cred->ssid, cred->ssid_len); in wps_build_cred_ssid() 1501 wpabuf_put_be16(msg, cred->ssid_len); in wps_build_cred_ssid() 1502 wpabuf_put_data(msg, cred->ssid, cred->ssid_len); in wps_build_cred_ssid() 1508 const struct wps_credential *cred) in wps_build_cred_auth_type() argument 1511 cred->auth_type); in wps_build_cred_auth_type() 1514 wpabuf_put_be16(msg, cred->auth_type); in wps_build_cred_auth_type() 1520 const struct wps_credential *cred) in wps_build_cred_encr_type() argument 1523 cred->encr_type); in wps_build_cred_encr_type() [all …]
|
D | wps_enrollee.c | 663 static int wps_process_cred_e(struct wps_data *wps, const u8 *cred, in wps_process_cred_e() argument 671 os_memset(&wps->cred, 0, sizeof(wps->cred)); in wps_process_cred_e() 672 wpabuf_set(&msg, cred, cred_len); in wps_process_cred_e() 674 wps_process_cred(&attr, &wps->cred)) in wps_process_cred_e() 677 if (os_memcmp(wps->cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) != in wps_process_cred_e() 681 ")", MAC2STR(wps->cred.mac_addr), in wps_process_cred_e() 699 if (!(wps->cred.encr_type & in wps_process_cred_e() 701 if (wps->cred.encr_type & WPS_ENCR_WEP) { in wps_process_cred_e() 709 "invalid encr_type 0x%x", wps->cred.encr_type); in wps_process_cred_e() 714 wps->cred.cred_attr = cred - 4; in wps_process_cred_e() [all …]
|
D | wps_er.c | 86 os_free(sta->cred); in wps_er_sta_free() 1054 os_free(sta->cred); in wps_er_sta_start() 1055 sta->cred = os_malloc(sizeof(*sta->cred)); in wps_er_sta_start() 1056 if (sta->cred) { in wps_er_sta_start() 1057 os_memcpy(sta->cred, sta->ap->ap_settings, in wps_er_sta_start() 1058 sizeof(*sta->cred)); in wps_er_sta_start() 1059 sta->cred->cred_attr = NULL; in wps_er_sta_start() 1060 os_memcpy(sta->cred->mac_addr, sta->addr, ETH_ALEN); in wps_er_sta_start() 1061 sta->wps->use_cred = sta->cred; in wps_er_sta_start() 1607 static void wps_er_ap_settings_cb(void *ctx, const struct wps_credential *cred) in wps_er_ap_settings_cb() argument [all …]
|
D | wps_common.c | 384 struct wps_credential cred; in wps_get_oob_cred() local 389 os_memset(&cred, 0, sizeof(cred)); in wps_get_oob_cred() 390 os_memcpy(cred.ssid, wps->ssid, wps->ssid_len); in wps_get_oob_cred() 391 cred.ssid_len = wps->ssid_len; in wps_get_oob_cred() 392 cred.auth_type = WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK; in wps_get_oob_cred() 393 cred.encr_type = WPS_ENCR_TKIP | WPS_ENCR_AES; in wps_get_oob_cred() 394 os_memcpy(cred.key, data.new_psk, data.new_psk_len); in wps_get_oob_cred() 395 cred.key_len = data.new_psk_len; in wps_get_oob_cred() 402 wps->cred_cb(wps->cb_ctx, &cred); in wps_get_oob_cred() 444 wpabuf_set(&msg, attr->cred[i], attr->cred_len[i]); in wps_oob_use_cred()
|
D | wps.h | 557 const struct wps_credential *cred; member 759 int (*cred_cb)(void *ctx, const struct wps_credential *cred); 814 struct wps_credential *cred); 824 const struct wps_credential *cred); 849 const struct wps_credential *cred); 852 const struct wps_credential *cred); 854 struct wps_credential *cred);
|
D | wps_i.h | 100 struct wps_credential cred; member 117 void (*ap_settings_cb)(void *ctx, const struct wps_credential *cred); 188 struct wps_credential *cred); 190 struct wps_credential *cred);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | interworking.c | 136 struct wpa_cred *cred; in cred_with_roaming_consortium() local 138 for (cred = wpa_s->conf->cred; cred; cred = cred->next) { in cred_with_roaming_consortium() 139 if (cred->roaming_consortium_len) in cred_with_roaming_consortium() 141 if (cred->required_roaming_consortium_len) in cred_with_roaming_consortium() 150 struct wpa_cred *cred; in cred_with_3gpp() local 152 for (cred = wpa_s->conf->cred; cred; cred = cred->next) { in cred_with_3gpp() 153 if (cred->pcsc || cred->imsi) in cred_with_3gpp() 162 struct wpa_cred *cred; in cred_with_nai_realm() local 164 for (cred = wpa_s->conf->cred; cred; cred = cred->next) { in cred_with_nai_realm() 165 if (cred->pcsc || cred->imsi) in cred_with_nai_realm() [all …]
|
D | config_file.c | 213 struct wpa_cred *cred; in wpa_config_read_cred() local 218 cred = os_zalloc(sizeof(*cred)); in wpa_config_read_cred() 219 if (cred == NULL) in wpa_config_read_cred() 221 cred->id = id; in wpa_config_read_cred() 222 cred->sim_num = DEFAULT_USER_SELECTED_SIM; in wpa_config_read_cred() 248 if (wpa_config_set_cred(cred, pos, pos2, *line) < 0) in wpa_config_read_cred() 259 wpa_config_free_cred(cred); in wpa_config_read_cred() 260 cred = NULL; in wpa_config_read_cred() 263 return cred; in wpa_config_read_cred() 356 struct wpa_cred *cred, *cred_tail, *cred_head; in wpa_config_read() local [all …]
|
D | config.c | 1944 void wpa_config_free_cred(struct wpa_cred *cred) in wpa_config_free_cred() argument 1948 os_free(cred->realm); in wpa_config_free_cred() 1949 str_clear_free(cred->username); in wpa_config_free_cred() 1950 str_clear_free(cred->password); in wpa_config_free_cred() 1951 os_free(cred->ca_cert); in wpa_config_free_cred() 1952 os_free(cred->client_cert); in wpa_config_free_cred() 1953 os_free(cred->private_key); in wpa_config_free_cred() 1954 str_clear_free(cred->private_key_passwd); in wpa_config_free_cred() 1955 os_free(cred->imsi); in wpa_config_free_cred() 1956 str_clear_free(cred->milenage); in wpa_config_free_cred() [all …]
|
D | wps_supplicant.c | 174 const struct wps_credential *cred) in wpas_wps_security_workaround() argument 195 bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len); in wpas_wps_security_workaround() 303 const struct wps_credential *cred) in wpa_supplicant_wps_cred() argument 313 wpa_s->conf->wps_cred_processing == 2) && cred->cred_attr) { in wpa_supplicant_wps_cred() 314 size_t blen = cred->cred_attr_len * 2 + 1; in wpa_supplicant_wps_cred() 318 cred->cred_attr, cred->cred_attr_len); in wpa_supplicant_wps_cred() 324 wpas_notify_wps_credential(wpa_s, cred); in wpa_supplicant_wps_cred() 329 cred->cred_attr, cred->cred_attr_len); in wpa_supplicant_wps_cred() 334 wpa_hexdump_ascii(MSG_DEBUG, "WPS: SSID", cred->ssid, cred->ssid_len); in wpa_supplicant_wps_cred() 336 cred->auth_type); in wpa_supplicant_wps_cred() [all …]
|
D | config.h | 356 struct wpa_cred *cred; member 1090 void wpa_config_free_cred(struct wpa_cred *cred); 1091 int wpa_config_set_cred(struct wpa_cred *cred, const char *var, 1093 char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var);
|
/external/wpa_supplicant_8/src/tls/ |
D | tlsv1_cred.c | 20 struct tlsv1_credentials *cred; in tlsv1_cred_alloc() local 21 cred = os_zalloc(sizeof(*cred)); in tlsv1_cred_alloc() 22 return cred; in tlsv1_cred_alloc() 26 void tlsv1_cred_free(struct tlsv1_credentials *cred) in tlsv1_cred_free() argument 28 if (cred == NULL) in tlsv1_cred_free() 31 x509_certificate_chain_free(cred->trusted_certs); in tlsv1_cred_free() 32 x509_certificate_chain_free(cred->cert); in tlsv1_cred_free() 33 crypto_private_key_free(cred->key); in tlsv1_cred_free() 34 os_free(cred->dh_p); in tlsv1_cred_free() 35 os_free(cred->dh_g); in tlsv1_cred_free() [all …]
|
D | tlsv1_cred.h | 26 void tlsv1_cred_free(struct tlsv1_credentials *cred); 27 int tlsv1_set_ca_cert(struct tlsv1_credentials *cred, const char *cert, 30 int tlsv1_set_cert(struct tlsv1_credentials *cred, const char *cert, 32 int tlsv1_set_private_key(struct tlsv1_credentials *cred, 37 int tlsv1_set_dhparams(struct tlsv1_credentials *cred, const char *dh_file,
|
D | tlsv1_server_write.c | 29 cert = conn->cred->cert; in tls_server_cert_chain_der_len() 34 cert = x509_certificate_get_subject(conn->cred->trusted_certs, in tls_server_cert_chain_der_len() 189 cert = conn->cred->cert; in tls_write_server_certificate() 207 cert = x509_certificate_get_subject(conn->cred->trusted_certs, in tls_write_server_certificate() 210 if (cert == conn->cred->cert || cert == NULL) { in tls_write_server_certificate() 271 if (conn->cred == NULL || conn->cred->dh_p == NULL || in tls_write_server_key_exchange() 272 conn->cred->dh_g == NULL) { in tls_write_server_key_exchange() 324 if (crypto_mod_exp(conn->cred->dh_g, conn->cred->dh_g_len, in tls_write_server_key_exchange() 388 if (pos + 2 + conn->cred->dh_g_len > end) { in tls_write_server_key_exchange() 396 WPA_PUT_BE16(pos, conn->cred->dh_g_len); in tls_write_server_key_exchange() [all …]
|
D | tlsv1_client_write.c | 29 if (conn->cred == NULL) in tls_client_cert_chain_der_len() 32 cert = conn->cred->cert; in tls_client_cert_chain_der_len() 37 cert = x509_certificate_get_subject(conn->cred->trusted_certs, in tls_client_cert_chain_der_len() 155 cert = conn->cred ? conn->cred->cert : NULL; in tls_write_client_certificate() 173 cert = x509_certificate_get_subject(conn->cred->trusted_certs, in tls_write_client_certificate() 176 if (conn->cred == NULL || cert == conn->cred->cert || cert == NULL) { in tls_write_client_certificate() 575 if (conn->cred == NULL || in tls_write_client_certificate_verify() 576 crypto_private_key_sign_pkcs1(conn->cred->key, hash, hlen, in tls_write_client_certificate_verify() 758 (conn->certificate_requested && conn->cred && conn->cred->key && in tls_send_client_key_exchange()
|
/external/smack/src/org/xbill/DNS/ |
D | Cache.java | 24 public int compareCredibility(int cred); in compareCredibility() argument 45 CacheRRset(Record rec, int cred, long maxttl) { in CacheRRset() argument 47 this.credibility = cred; in CacheRRset() 53 CacheRRset(RRset rrset, int cred, long maxttl) { in CacheRRset() argument 55 this.credibility = cred; in CacheRRset() 66 compareCredibility(int cred) { in compareCredibility() argument 67 return credibility - cred; in compareCredibility() 87 NegativeElement(Name name, int type, SOARecord soa, int cred, in NegativeElement() argument 95 this.credibility = cred; in NegativeElement() 111 compareCredibility(int cred) { in compareCredibility() argument [all …]
|
/external/wpa_supplicant_8/src/ap/ |
D | wps_hostapd.c | 320 const struct wps_credential *cred) in hapd_wps_reconfig_in_memory() argument 327 if (cred->ssid_len <= HOSTAPD_MAX_SSID_LEN) { in hapd_wps_reconfig_in_memory() 328 os_memcpy(bss->ssid.ssid, cred->ssid, cred->ssid_len); in hapd_wps_reconfig_in_memory() 329 bss->ssid.ssid_len = cred->ssid_len; in hapd_wps_reconfig_in_memory() 333 if ((cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) && in hapd_wps_reconfig_in_memory() 334 (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK))) in hapd_wps_reconfig_in_memory() 336 else if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) in hapd_wps_reconfig_in_memory() 338 else if (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK)) in hapd_wps_reconfig_in_memory() 344 if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA)) in hapd_wps_reconfig_in_memory() 346 if (cred->auth_type & (WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK)) in hapd_wps_reconfig_in_memory() [all …]
|
/external/qemu/distrib/jpeg-6b/ |
D | jdmerge.c | 255 register int y, cred, cgreen, cblue; in h2v1_merged_upsample() local 277 cred = Crrtab[cr]; in h2v1_merged_upsample() 282 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 287 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 296 cred = Crrtab[cr]; in h2v1_merged_upsample() 300 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 314 register int y, cred, cgreen, cblue; in h2v1_merged_upsample_565() local 338 cred = Crrtab[cr]; in h2v1_merged_upsample_565() 343 r = range_limit[y + cred]; in h2v1_merged_upsample_565() 348 r = range_limit[y + cred]; in h2v1_merged_upsample_565() [all …]
|
/external/jpeg/ |
D | jdmerge.c | 255 register int y, cred, cgreen, cblue; in h2v1_merged_upsample() local 277 cred = Crrtab[cr]; in h2v1_merged_upsample() 282 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 287 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 296 cred = Crrtab[cr]; in h2v1_merged_upsample() 300 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 314 register int y, cred, cgreen, cblue; in h2v1_merged_upsample_565() local 338 cred = Crrtab[cr]; in h2v1_merged_upsample_565() 343 r = range_limit[y + cred]; in h2v1_merged_upsample_565() 348 r = range_limit[y + cred]; in h2v1_merged_upsample_565() [all …]
|
/external/wpa_supplicant_8/src/crypto/ |
D | tls_internal.c | 184 struct tlsv1_credentials *cred; in tls_connection_set_params() local 189 cred = tlsv1_cred_alloc(); in tls_connection_set_params() 190 if (cred == NULL) in tls_connection_set_params() 193 if (tlsv1_set_ca_cert(cred, params->ca_cert, in tls_connection_set_params() 198 tlsv1_cred_free(cred); in tls_connection_set_params() 202 if (tlsv1_set_cert(cred, params->client_cert, in tls_connection_set_params() 207 tlsv1_cred_free(cred); in tls_connection_set_params() 211 if (tlsv1_set_private_key(cred, params->private_key, in tls_connection_set_params() 216 tlsv1_cred_free(cred); in tls_connection_set_params() 220 if (tlsv1_set_dhparams(cred, params->dh_file, params->dh_blob, in tls_connection_set_params() [all …]
|
/external/pdfium/core/src/fxcodec/libjpeg/ |
D | fpdfapi_jdmerge.c | 235 register int y, cred, cgreen, cblue; in h2v1_merged_upsample() local 257 cred = Crrtab[cr]; in h2v1_merged_upsample() 262 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 267 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 276 cred = Crrtab[cr]; in h2v1_merged_upsample() 280 outptr[RGB_RED] = range_limit[y + cred]; in h2v1_merged_upsample() 297 register int y, cred, cgreen, cblue; in h2v2_merged_upsample() local 321 cred = Crrtab[cr]; in h2v2_merged_upsample() 326 outptr0[RGB_RED] = range_limit[y + cred]; in h2v2_merged_upsample() 331 outptr0[RGB_RED] = range_limit[y + cred]; in h2v2_merged_upsample() [all …]
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | eap_wsc.c | 62 static int eap_wsc_new_ap_settings(struct wps_credential *cred, in eap_wsc_new_ap_settings() argument 68 os_memset(cred, 0, sizeof(*cred)); in eap_wsc_new_ap_settings() 79 if ((len & 1) || len > 2 * sizeof(cred->ssid) || in eap_wsc_new_ap_settings() 80 hexstr2bin(pos, cred->ssid, len / 2)) { in eap_wsc_new_ap_settings() 84 cred->ssid_len = len / 2; in eap_wsc_new_ap_settings() 92 cred->auth_type = WPS_AUTH_OPEN; in eap_wsc_new_ap_settings() 94 cred->auth_type = WPS_AUTH_WPAPSK; in eap_wsc_new_ap_settings() 96 cred->auth_type = WPS_AUTH_WPA2PSK; in eap_wsc_new_ap_settings() 108 cred->encr_type = WPS_ENCR_NONE; in eap_wsc_new_ap_settings() 111 cred->encr_type = WPS_ENCR_WEP; in eap_wsc_new_ap_settings() [all …]
|
/external/chromium_org/ipc/ |
D | unix_domain_socket_util.cc | 152 struct ucred cred; in GetPeerEuid() local 153 socklen_t cred_len = sizeof(cred); in GetPeerEuid() 154 if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &cred, &cred_len) < 0) { in GetPeerEuid() 158 if (static_cast<unsigned>(cred_len) < sizeof(cred)) { in GetPeerEuid() 162 *peer_euid = cred.uid; in GetPeerEuid()
|
/external/wpa_supplicant_8/hs20/server/ |
D | spp_server.c | 513 static int add_username_password(struct hs20_svc *ctx, xml_node_t *cred, in add_username_password() argument 518 node = build_username_password(ctx, cred, user, pw); in add_username_password() 530 static void add_creation_date(struct hs20_svc *ctx, xml_node_t *cred) in add_creation_date() argument 541 xml_node_create_text(ctx->xml, cred, NULL, "CreationDate", str); in add_creation_date() 549 xml_node_t *cred; in build_credential_pw() local 551 cred = xml_node_create_root(ctx->xml, NULL, NULL, NULL, "Credential"); in build_credential_pw() 552 if (cred == NULL) { in build_credential_pw() 556 add_creation_date(ctx, cred); in build_credential_pw() 557 if (add_username_password(ctx, cred, user, pw) < 0) { in build_credential_pw() 558 xml_node_free(ctx->xml, cred); in build_credential_pw() [all …]
|