/aosp_15_r20/external/wpa_supplicant_8/src/eap_server/ |
H A D | eap_server.c | 71 static int eap_erp_add_key(struct eap_sm *sm, struct eap_server_erp_key *erp) in eap_erp_add_key() argument 74 return sm->eapol_cb->erp_add_key(sm->eapol_ctx, erp); in eap_erp_add_key() 428 struct eap_server_erp_key *erp = NULL; in eap_server_erp_init() local 444 "EAP: Too long realm for ERP keyName-NAI maximum length"); in eap_server_erp_init() 448 erp = os_zalloc(sizeof(*erp) + nai_buf_len); in eap_server_erp_init() 449 if (erp == NULL) in eap_server_erp_init() 451 erp->recv_seq = (u32) -1; in eap_server_erp_init() 456 "EAP: No suitable EMSK available for ERP"); in eap_server_erp_init() 471 pos = wpa_snprintf_hex(erp->keyname_nai, nai_buf_len, in eap_server_erp_init() 473 erp->keyname_nai[pos] = '@'; in eap_server_erp_init() [all …]
|
H A D | eap.h | 107 int (*erp_add_key)(void *ctx, struct eap_server_erp_key *erp); 256 * erp - Whether EAP Re-authentication Protocol (ERP) is enabled 258 * This controls whether the authentication server derives ERP key 260 * these keys to be used to perform ERP to derive rMSK instead of full 263 int erp; member
|
/aosp_15_r20/external/wpa_supplicant_8/src/eap_peer/ |
H A D | eap.c | 547 struct eap_erp_key *erp; in eap_erp_get_key() local 549 dl_list_for_each(erp, &sm->erp_keys, struct eap_erp_key, list) { in eap_erp_get_key() 552 pos = os_strchr(erp->keyname_nai, '@'); in eap_erp_get_key() 557 return erp; in eap_erp_get_key() 567 struct eap_erp_key *erp; in eap_erp_get_key_nai() local 569 dl_list_for_each(erp, &sm->erp_keys, struct eap_erp_key, list) { in eap_erp_get_key_nai() 570 if (os_strcmp(erp->keyname_nai, nai) == 0) in eap_erp_get_key_nai() 571 return erp; in eap_erp_get_key_nai() 578 static void eap_peer_erp_free_key(struct eap_erp_key *erp) in eap_peer_erp_free_key() argument 580 dl_list_del(&erp->list); in eap_peer_erp_free_key() [all …]
|
H A D | eap_config.h | 710 * erp - Whether EAP Re-authentication Protocol (ERP) is enabled 712 int erp; member
|
/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue479/ |
H A D | MergeKeyDeepMergeTest.java | 34 assertEquals("2", property.getSystem().get("erp").getTest1()); in testOnlyTheCurrentMappingIsMerged() 35 assertNull(property.getSystem().get("erp").getMysql().getDb_host()); in testOnlyTheCurrentMappingIsMerged() 36 assertNull(property.getSystem().get("erp").getMysql().getDb_port()); in testOnlyTheCurrentMappingIsMerged() 37 assertEquals("erp", property.getSystem().get("erp").getMysql().getDb_name()); in testOnlyTheCurrentMappingIsMerged() 38 assertNull(property.getSystem().get("erp").getMysql().getDb_user()); in testOnlyTheCurrentMappingIsMerged() 39 assertNull(property.getSystem().get("erp").getMysql().getDb_password()); in testOnlyTheCurrentMappingIsMerged() 66 String v = "!!org.yaml.snakeyaml.issues.issue479.DemoProperty\n" + "system:\n" + " erp:\n" in testMergeAsJavabean() 67 … + " mysql: {db_host: mysql.avatar2.test, db_name: erp, db_password: secret, db_port: 3306,\n" in testMergeAsJavabean() 71 assertEquals("2", property.getSystem().get("erp").getTest1()); in testMergeAsJavabean() 72 assertEquals("mysql.avatar2.test", property.getSystem().get("erp").getMysql().getDb_host()); in testMergeAsJavabean() [all …]
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/ |
H A D | tc_flower.sh | 5 # It tries to exercise as many code paths in the eRP state machine as 95 # mask and not the eRP table. Verify that under this mode the right 189 # When more than one mask is required, the eRP table is used. This 190 # test verifies that the eRP table is correctly allocated and used 370 # This test exercises the code path that transitions the eRP table 389 # mask, we want to make sure the eRP state machine is put in 399 # The first filter will create eRP, the second filter will fit into 400 # the first eRP with delta. Remove the first rule then and check that 401 # the eRP stays (referenced by the second filter). 413 check_err $? "eRP was not created" [all …]
|
/aosp_15_r20/external/wpa_supplicant_8/src/ap/ |
H A D | ap_list.c | 40 if (ap->erp != -1 && (ap->erp & ERP_INFO_NON_ERP_PRESENT)) in ap_list_beacon_olbc() 197 ap->erp = elems->erp_info[0]; in ap_list_process_beacon() 199 ap->erp = -1; in ap_list_process_beacon()
|
H A D | ap_list.h | 23 int erp; /* ERP Info or -1 if ERP info element not present */ member
|
H A D | ieee802_1x.c | 2508 struct eap_server_erp_key *erp; in ieee802_1x_erp_get_key() local 2510 dl_list_for_each(erp, &hapd->erp_keys, struct eap_server_erp_key, in ieee802_1x_erp_get_key() 2512 if (os_strcmp(erp->keyname_nai, keyname) == 0) in ieee802_1x_erp_get_key() 2513 return erp; in ieee802_1x_erp_get_key() 2520 static int ieee802_1x_erp_add_key(void *ctx, struct eap_server_erp_key *erp) in ieee802_1x_erp_add_key() argument 2524 dl_list_add(&hapd->erp_keys, &erp->list); in ieee802_1x_erp_add_key() 2632 struct eap_server_erp_key *erp; in ieee802_1x_erp_flush() local 2634 while ((erp = dl_list_first(&hapd->erp_keys, struct eap_server_erp_key, in ieee802_1x_erp_flush() 2636 dl_list_del(&erp->list); in ieee802_1x_erp_flush() 2637 bin_clear_free(erp, sizeof(*erp)); in ieee802_1x_erp_flush()
|
H A D | beacon.c | 69 u8 erp = 0; in ieee802_11_erp_info() local 76 erp |= ERP_INFO_USE_PROTECTION; in ieee802_11_erp_info() 78 erp |= ERP_INFO_NON_ERP_PRESENT | in ieee802_11_erp_info() 83 erp |= ERP_INFO_BARKER_PREAMBLE_MODE; in ieee802_11_erp_info() 85 return erp; in ieee802_11_erp_info() 116 * In addition, Non ERP present might be set, if AP detects Non ERP in hostapd_eid_erp_info() 119 /* Add ERP Information element */ in hostapd_eid_erp_info() 836 /* ERP Information element */ in hostapd_probe_resp_fill_elems() 2286 /* ERP Information element */ in ieee802_11_build_ap_params()
|
/aosp_15_r20/external/libgsm/src/ |
H A D | decode.c | 50 word erp[40], wt[160]; variable 55 Gsm_RPE_Decoding( S, *xmaxcr, *Mcr, xMcr, erp ); 56 Gsm_Long_Term_Synthesis_Filtering( S, *Ncr, *bcr, erp, drp );
|
H A D | rpe.c | 472 void Gsm_RPE_Decoding P5((S, xmaxcr, Mcr, xMcr, erp), 478 word * erp /* [0..39] OUT */ 486 RPE_grid_positioning( Mcr, xMp, erp );
|
H A D | long_term.c | 905 void Gsm_Long_Term_Synthesis_Filtering P5((S,Ncr,bcr,erp,drp), 910 register word * erp, /* [0..39] IN */ 940 drp[k] = GSM_ADD( erp[k], drpp );
|
/aosp_15_r20/external/wpa_supplicant_8/src/radius/ |
H A D | radius_server.c | 545 struct eap_server_erp_key *erp; in radius_server_erp_find_key() local 547 dl_list_for_each(erp, &data->erp_keys, struct eap_server_erp_key, in radius_server_erp_find_key() 549 if (os_strcmp(erp->keyname_nai, keyname) == 0) in radius_server_erp_find_key() 550 return erp; in radius_server_erp_find_key() 585 if (res != 0 && data->eap_cfg->erp) { in radius_server_get_new_session() 2320 * radius_server_erp_flush - Flush all ERP keys 2325 struct eap_server_erp_key *erp; in radius_server_erp_flush() local 2329 while ((erp = dl_list_first(&data->erp_keys, struct eap_server_erp_key, in radius_server_erp_flush() 2331 dl_list_del(&erp->list); in radius_server_erp_flush() 2332 bin_clear_free(erp, sizeof(*erp)); in radius_server_erp_flush() [all …]
|
/aosp_15_r20/external/libconfig/contrib/ls-config/src/ |
H A D | ls-config.c | 96 char *erp; //error output in set_config_int() local 100 bufl = strtol(dataString, &erp, 0); in set_config_int() 101 … (bufl == LONG_MAX || bufl == LONG_MIN)) || (errno != 0 && bufl == 0)) || (erp == dataString) || b… in set_config_int() 120 char *erp; //error output in set_config_int64() local 124 bufl = strtol(dataString, &erp, 0); in set_config_int64() 125 … && (bufl == LONG_MAX || bufl == LONG_MIN)) || (errno != 0 && bufl == 0)) || (erp == dataString)) { in set_config_int64() 143 char *erp; //error output in set_config_float() local 147 buff = strtod(dataString, &erp); in set_config_float() 148 …& (buff == HUGE_VALF || buff == HUGE_VALL)) || (errno != 0 && buff == 0)) || (erp == dataString)) { in set_config_float()
|
/aosp_15_r20/external/pdfium/core/fxcrt/ |
H A D | bytestring_unittest.cpp | 842 fred.Trim("ERP"); in TEST() 846 blank.Trim("ERP"); in TEST() 854 empty.Trim("ERP"); in TEST() 876 fred.TrimLeft("ERP"); in TEST() 880 blank.TrimLeft("ERP"); in TEST() 888 empty.TrimLeft("ERP"); in TEST() 935 fred.TrimRight("ERP"); in TEST() 939 blank.TrimRight("ERP"); in TEST() 947 empty.TrimRight("ERP"); in TEST()
|
H A D | widestring_unittest.cpp | 832 fred.Trim(L"ERP"); in TEST() 836 blank.Trim(L"ERP"); in TEST() 844 empty.Trim(L"ERP"); in TEST() 866 fred.TrimLeft(L"ERP"); in TEST() 870 blank.TrimLeft(L"ERP"); in TEST() 878 empty.TrimLeft(L"ERP"); in TEST() 925 fred.TrimRight(L"ERP"); in TEST() 929 blank.TrimRight(L"ERP"); in TEST() 937 empty.TrimRight(L"ERP"); in TEST()
|
/aosp_15_r20/external/snakeyaml/src/test/resources/issues/ |
H A D | issue479.yaml | 17 erp: 21 db_name: erp
|
H A D | issue479-output.yaml | 10 erp: 12 mysql: {db_name: erp}
|
H A D | issue479-1.yaml | 17 erp: 22 db_name: erp
|
/aosp_15_r20/external/libgsm/inc/ |
H A D | private.h | 204 word * erp)); /* [0..39] OUT */ 210 word * erp, /* [0..39] IN */ 218 word * erp)); /* [0..39] OUT */
|
/aosp_15_r20/external/wpa_supplicant_8/src/eap_common/ |
H A D | eap_defs.h | 41 /* ERP TV/TLV types */ 56 /* ERP Cryptosuite */
|
/aosp_15_r20/external/wpa_supplicant_8/src/pasn/ |
H A D | pasn_initiator.c | 269 "PASN: FILS: ERP EAP-Initiate/Re-auth unavailable"); in wpas_pasn_fils_build_auth() 311 /* Wrapped Data (ERP) */ in wpas_pasn_fils_build_auth() 325 wpa_printf(MSG_DEBUG, "PASN: FILS: Failed to get ERP PMKID"); in wpas_pasn_fils_build_auth() 464 wpa_printf(MSG_DEBUG, "PASN: FILS: ERP finish failed"); in wpas_pasn_wd_fils_rx() 495 wpa_printf(MSG_DEBUG, "PASN: FILS: ERP processing succeeded"); in wpas_pasn_wd_fils_rx()
|
/aosp_15_r20/external/aws-sdk-java-v2/services/supplychain/src/main/resources/codegen-resources/ |
H A D | service-2.json | 273 …ERP) and supply chain management systems. Using AWS Supply Chain, you can connect and extract your…
|
/aosp_15_r20/external/mesa3d/docs/ |
H A D | precompiled.rst | 12 - Fedora - Copr: erp and che
|