/third_party/wpa_supplicant/wpa_supplicant-2.9/src/pae/ |
D | ieee802_1x_secy_ops.c | 20 int secy_cp_control_validate_frames(struct ieee802_1x_kay *kay, in secy_cp_control_validate_frames() argument 23 kay->vf = vf; in secy_cp_control_validate_frames() 28 int secy_cp_control_protect_frames(struct ieee802_1x_kay *kay, Boolean enabled) in secy_cp_control_protect_frames() argument 32 if (!kay) { in secy_cp_control_protect_frames() 37 ops = kay->ctx; in secy_cp_control_protect_frames() 48 int secy_cp_control_encrypt(struct ieee802_1x_kay *kay, Boolean enabled) in secy_cp_control_encrypt() argument 52 if (!kay) { in secy_cp_control_encrypt() 57 ops = kay->ctx; in secy_cp_control_encrypt() 68 int secy_cp_control_replay(struct ieee802_1x_kay *kay, Boolean enabled, u32 win) in secy_cp_control_replay() argument 72 if (!kay) { in secy_cp_control_replay() [all …]
|
D | ieee802_1x_secy_ops.h | 17 int secy_init_macsec(struct ieee802_1x_kay *kay); 18 int secy_deinit_macsec(struct ieee802_1x_kay *kay); 21 int secy_cp_control_validate_frames(struct ieee802_1x_kay *kay, 23 int secy_cp_control_protect_frames(struct ieee802_1x_kay *kay, Boolean flag); 24 int secy_cp_control_encrypt(struct ieee802_1x_kay *kay, Boolean enabled); 25 int secy_cp_control_replay(struct ieee802_1x_kay *kay, Boolean flag, u32 win); 26 int secy_cp_control_current_cipher_suite(struct ieee802_1x_kay *kay, u64 cs); 27 int secy_cp_control_confidentiality_offset(struct ieee802_1x_kay *kay, 29 int secy_cp_control_enable_port(struct ieee802_1x_kay *kay, Boolean flag); 32 int secy_get_capability(struct ieee802_1x_kay *kay, enum macsec_cap *cap); [all …]
|
D | ieee802_1x_kay.c | 280 ieee802_1x_kay_get_participant(struct ieee802_1x_kay *kay, const u8 *ckn, in ieee802_1x_kay_get_participant() argument 285 dl_list_for_each(participant, &kay->participant_list, in ieee802_1x_kay_get_participant() 303 ieee802_1x_kay_get_principal_participant(struct ieee802_1x_kay *kay) in ieee802_1x_kay_get_principal_participant() argument 307 dl_list_for_each(participant, &kay->participant_list, in ieee802_1x_kay_get_principal_participant() 547 static void ieee802_1x_delete_receive_sa(struct ieee802_1x_kay *kay, in ieee802_1x_delete_receive_sa() argument 550 secy_disable_receive_sa(kay, sa); in ieee802_1x_delete_receive_sa() 551 secy_delete_receive_sa(kay, sa); in ieee802_1x_delete_receive_sa() 568 ieee802_1x_delete_receive_sa(participant->kay, psa); in ieee802_1x_kay_deinit_receive_sc() 571 secy_delete_receive_sc(participant->kay, psc); in ieee802_1x_kay_deinit_receive_sc() 627 if (secy_create_receive_sc(participant->kay, rxsc)) { in ieee802_1x_kay_create_live_peer() [all …]
|
D | ieee802_1x_cp.c | 86 struct ieee802_1x_kay *kay; member 113 secy_cp_control_enable_port(sm->kay, sm->controlled_port_enabled); in SM_STATE() 138 secy_cp_control_enable_port(sm->kay, sm->controlled_port_enabled); in SM_STATE() 141 ieee802_1x_kay_delete_sas(sm->kay, sm->lki); in SM_STATE() 143 ieee802_1x_kay_delete_sas(sm->kay, sm->oki); in SM_STATE() 158 secy_cp_control_enable_port(sm->kay, sm->controlled_port_enabled); in SM_STATE() 159 secy_cp_control_protect_frames(sm->kay, sm->protect_frames); in SM_STATE() 160 secy_cp_control_encrypt(sm->kay, sm->kay->macsec_encrypt); in SM_STATE() 161 secy_cp_control_validate_frames(sm->kay, sm->validate_frames); in SM_STATE() 162 secy_cp_control_replay(sm->kay, sm->replay_protect, sm->replay_window); in SM_STATE() [all …]
|
D | ieee802_1x_kay.h | 244 void ieee802_1x_kay_deinit(struct ieee802_1x_kay *kay); 247 ieee802_1x_kay_create_mka(struct ieee802_1x_kay *kay, 252 void ieee802_1x_kay_delete_mka(struct ieee802_1x_kay *kay, 254 void ieee802_1x_kay_mka_participate(struct ieee802_1x_kay *kay, 257 int ieee802_1x_kay_new_sak(struct ieee802_1x_kay *kay); 258 int ieee802_1x_kay_change_cipher_suite(struct ieee802_1x_kay *kay, 261 int ieee802_1x_kay_set_latest_sa_attr(struct ieee802_1x_kay *kay, 264 int ieee802_1x_kay_set_old_sa_attr(struct ieee802_1x_kay *kay, 267 int ieee802_1x_kay_create_sas(struct ieee802_1x_kay *kay, 269 int ieee802_1x_kay_delete_sas(struct ieee802_1x_kay *kay, [all …]
|
D | ieee802_1x_cp.h | 19 struct ieee802_1x_cp_sm * ieee802_1x_cp_sm_init(struct ieee802_1x_kay *kay);
|
D | ieee802_1x_kay_i.h | 150 struct ieee802_1x_kay *kay; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/pae/ |
D | ieee802_1x_secy_ops.c | 20 int secy_cp_control_validate_frames(struct ieee802_1x_kay *kay, in secy_cp_control_validate_frames() argument 23 kay->vf = vf; in secy_cp_control_validate_frames() 28 int secy_cp_control_protect_frames(struct ieee802_1x_kay *kay, bool enabled) in secy_cp_control_protect_frames() argument 32 if (!kay) { in secy_cp_control_protect_frames() 37 ops = kay->ctx; in secy_cp_control_protect_frames() 48 int secy_cp_control_encrypt(struct ieee802_1x_kay *kay, bool enabled) in secy_cp_control_encrypt() argument 52 if (!kay) { in secy_cp_control_encrypt() 57 ops = kay->ctx; in secy_cp_control_encrypt() 68 int secy_cp_control_replay(struct ieee802_1x_kay *kay, bool enabled, u32 win) in secy_cp_control_replay() argument 72 if (!kay) { in secy_cp_control_replay() [all …]
|
D | ieee802_1x_secy_ops.h | 17 int secy_init_macsec(struct ieee802_1x_kay *kay); 18 int secy_deinit_macsec(struct ieee802_1x_kay *kay); 21 int secy_cp_control_validate_frames(struct ieee802_1x_kay *kay, 23 int secy_cp_control_protect_frames(struct ieee802_1x_kay *kay, bool flag); 24 int secy_cp_control_encrypt(struct ieee802_1x_kay *kay, bool enabled); 25 int secy_cp_control_replay(struct ieee802_1x_kay *kay, bool flag, u32 win); 26 int secy_cp_control_current_cipher_suite(struct ieee802_1x_kay *kay, u64 cs); 27 int secy_cp_control_confidentiality_offset(struct ieee802_1x_kay *kay, 29 int secy_cp_control_enable_port(struct ieee802_1x_kay *kay, bool flag); 32 int secy_get_capability(struct ieee802_1x_kay *kay, enum macsec_cap *cap); [all …]
|
D | ieee802_1x_kay.c | 280 ieee802_1x_kay_get_participant(struct ieee802_1x_kay *kay, const u8 *ckn, in ieee802_1x_kay_get_participant() argument 285 dl_list_for_each(participant, &kay->participant_list, in ieee802_1x_kay_get_participant() 303 ieee802_1x_kay_get_principal_participant(struct ieee802_1x_kay *kay) in ieee802_1x_kay_get_principal_participant() argument 307 dl_list_for_each(participant, &kay->participant_list, in ieee802_1x_kay_get_principal_participant() 547 static void ieee802_1x_delete_receive_sa(struct ieee802_1x_kay *kay, in ieee802_1x_delete_receive_sa() argument 550 secy_disable_receive_sa(kay, sa); in ieee802_1x_delete_receive_sa() 551 secy_delete_receive_sa(kay, sa); in ieee802_1x_delete_receive_sa() 568 ieee802_1x_delete_receive_sa(participant->kay, psa); in ieee802_1x_kay_deinit_receive_sc() 571 secy_delete_receive_sc(participant->kay, psc); in ieee802_1x_kay_deinit_receive_sc() 627 if (secy_create_receive_sc(participant->kay, rxsc)) { in ieee802_1x_kay_create_live_peer() [all …]
|
D | ieee802_1x_cp.c | 86 struct ieee802_1x_kay *kay; member 113 secy_cp_control_enable_port(sm->kay, sm->controlled_port_enabled); in SM_STATE() 138 secy_cp_control_enable_port(sm->kay, sm->controlled_port_enabled); in SM_STATE() 141 ieee802_1x_kay_delete_sas(sm->kay, sm->lki); in SM_STATE() 143 ieee802_1x_kay_delete_sas(sm->kay, sm->oki); in SM_STATE() 153 ieee802_1x_kay_set_old_sa_attr(sm->kay, sm->oki, sm->oan, in SM_STATE() 160 ieee802_1x_kay_set_latest_sa_attr(sm->kay, sm->lki, sm->lan, in SM_STATE() 176 secy_cp_control_enable_port(sm->kay, sm->controlled_port_enabled); in SM_STATE() 177 secy_cp_control_protect_frames(sm->kay, sm->protect_frames); in SM_STATE() 178 secy_cp_control_encrypt(sm->kay, sm->kay->macsec_encrypt); in SM_STATE() [all …]
|
D | ieee802_1x_kay.h | 244 void ieee802_1x_kay_deinit(struct ieee802_1x_kay *kay); 247 ieee802_1x_kay_create_mka(struct ieee802_1x_kay *kay, 252 void ieee802_1x_kay_delete_mka(struct ieee802_1x_kay *kay, 254 void ieee802_1x_kay_mka_participate(struct ieee802_1x_kay *kay, 257 int ieee802_1x_kay_new_sak(struct ieee802_1x_kay *kay); 258 int ieee802_1x_kay_change_cipher_suite(struct ieee802_1x_kay *kay, 261 int ieee802_1x_kay_set_latest_sa_attr(struct ieee802_1x_kay *kay, 264 int ieee802_1x_kay_set_old_sa_attr(struct ieee802_1x_kay *kay, 267 int ieee802_1x_kay_create_sas(struct ieee802_1x_kay *kay, 269 int ieee802_1x_kay_delete_sas(struct ieee802_1x_kay *kay, [all …]
|
D | ieee802_1x_cp.h | 19 struct ieee802_1x_cp_sm * ieee802_1x_cp_sm_init(struct ieee802_1x_kay *kay);
|
D | ieee802_1x_kay_i.h | 150 struct ieee802_1x_kay *kay; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
D | wpas_kay.c | 250 wpa_s->kay = res; in ieee802_1x_alloc_kay_sm() 258 if (!wpa_s->kay) in ieee802_1x_dealloc_kay_sm() 261 ieee802_1x_kay_deinit(wpa_s->kay); in ieee802_1x_dealloc_kay_sm() 262 wpa_s->kay = NULL; in ieee802_1x_dealloc_kay_sm() 331 if (!wpa_s->kay || wpa_s->kay->policy == DO_NOT_SECURE) in ieee802_1x_notify_create_actor() 378 res = ieee802_1x_kay_create_mka(wpa_s->kay, ckn, cak, 0, in ieee802_1x_notify_create_actor() 415 if (ieee802_1x_alloc_kay_sm(wpa_s, ssid) < 0 || !wpa_s->kay) in ieee802_1x_create_preshared_mka() 418 if (wpa_s->kay->policy == DO_NOT_SECURE) in ieee802_1x_create_preshared_mka() 427 res = ieee802_1x_kay_create_mka(wpa_s->kay, ckn, cak, 0, PSK, FALSE); in ieee802_1x_create_preshared_mka()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
D | wpas_kay.c | 250 wpa_s->kay = res; in ieee802_1x_alloc_kay_sm() 258 if (!wpa_s->kay) in ieee802_1x_dealloc_kay_sm() 261 ieee802_1x_kay_deinit(wpa_s->kay); in ieee802_1x_dealloc_kay_sm() 262 wpa_s->kay = NULL; in ieee802_1x_dealloc_kay_sm() 331 if (!wpa_s->kay || wpa_s->kay->policy == DO_NOT_SECURE) in ieee802_1x_notify_create_actor() 378 res = ieee802_1x_kay_create_mka(wpa_s->kay, ckn, cak, 0, in ieee802_1x_notify_create_actor() 415 if (ieee802_1x_alloc_kay_sm(wpa_s, ssid) < 0 || !wpa_s->kay) in ieee802_1x_create_preshared_mka() 418 if (wpa_s->kay->policy == DO_NOT_SECURE) in ieee802_1x_create_preshared_mka() 427 res = ieee802_1x_kay_create_mka(wpa_s->kay, ckn, cak, 0, PSK, false); in ieee802_1x_create_preshared_mka()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
D | wpa_auth_kay.c | 338 hapd->kay = res; in ieee802_1x_alloc_kay_sm_hapd() 346 if (!hapd->kay) in ieee802_1x_dealloc_kay_sm_hapd() 349 ieee802_1x_kay_deinit(hapd->kay); in ieee802_1x_dealloc_kay_sm_hapd() 350 hapd->kay = NULL; in ieee802_1x_dealloc_kay_sm_hapd() 419 if (!hapd->kay || hapd->kay->policy == DO_NOT_SECURE) in ieee802_1x_notify_create_actor_hapd() 467 res = ieee802_1x_kay_create_mka(hapd->kay, ckn, cak, 0, EAP_EXCHANGE, in ieee802_1x_notify_create_actor_hapd() 498 if (ieee802_1x_alloc_kay_sm_hapd(hapd, sta) < 0 || !hapd->kay) in ieee802_1x_create_preshared_mka_hapd() 501 if (hapd->kay->policy == DO_NOT_SECURE) in ieee802_1x_create_preshared_mka_hapd() 510 res = ieee802_1x_kay_create_mka(hapd->kay, ckn, cak, 0, PSK, TRUE); in ieee802_1x_create_preshared_mka_hapd()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | wpa_auth_kay.c | 338 hapd->kay = res; in ieee802_1x_alloc_kay_sm_hapd() 346 if (!hapd->kay) in ieee802_1x_dealloc_kay_sm_hapd() 349 ieee802_1x_kay_deinit(hapd->kay); in ieee802_1x_dealloc_kay_sm_hapd() 350 hapd->kay = NULL; in ieee802_1x_dealloc_kay_sm_hapd() 419 if (!hapd->kay || hapd->kay->policy == DO_NOT_SECURE) in ieee802_1x_notify_create_actor_hapd() 467 res = ieee802_1x_kay_create_mka(hapd->kay, ckn, cak, 0, EAP_EXCHANGE, in ieee802_1x_notify_create_actor_hapd() 498 if (ieee802_1x_alloc_kay_sm_hapd(hapd, sta) < 0 || !hapd->kay) in ieee802_1x_create_preshared_mka_hapd() 501 if (hapd->kay->policy == DO_NOT_SECURE) in ieee802_1x_create_preshared_mka_hapd() 510 res = ieee802_1x_kay_create_mka(hapd->kay, ckn, cak, 0, PSK, true); in ieee802_1x_create_preshared_mka_hapd()
|
/third_party/libsnd/m4/ |
D | ax_compiler_version.m4 | 349 AC_MSG_FAILURE([[[$0]] unknown kay compiler patch version])) 352 AC_MSG_FAILURE([[[$0]] unknown kay compiler minor version])) 355 AC_MSG_FAILURE([[[$0]] unknown kay compiler major version]))
|
/third_party/gstreamer/gstplugins_base/po/ |
D | tr.po | 69 msgstr "Ses aygıtından kayıt sırasında hata. Aygıt bağlantısı kesildi." 101 msgstr "Autovideosink ögesi kayıp." 122 msgstr "Hem autoaudiosink hem de %s ögelerinin ikisi de kayıp." 125 msgstr "Autoaudiosink ögesi kayıp." 828 #~ msgstr "Autovideosink ve xvimagesink öğelerininin ikisi de kayıp." 831 #~ msgstr "Autoaudiosink ve alsasink öğelerinin ikisi de kayıp."
|
/third_party/icu/icu4c/source/data/lang/ |
D | ku.txt | 49 co{"korsîkayî"}
|
/third_party/flutter/skia/third_party/externals/icu/source/data/region/ |
D | ku.txt | 240 US{"Dewletên Yekbûyî yên Amerîkayê"}
|
/third_party/skia/third_party/externals/icu/source/data/region/ |
D | ku.txt | 240 US{"Dewletên Yekbûyî yên Amerîkayê"}
|
/third_party/icu/icu4c/source/data/region/ |
D | ku.txt | 238 US{"Dewletên Yekbûyî yên Amerîkayê"}
|
/third_party/icu/icu4j/perf-tests/data/collation/ |
D | TestRandomWordsUDHR_tr.txt | 425 kayıtlamasına izhar 659 hastalık kayıtlamasına siyasi 1688 hürriyeti kayıtlamasına 2165 hiçbir geliştirmelidir kayıtlamasına 2516 kayıtlamasına Uluslararasında 2559 kayıtlamasına derpiş tabii 2743 kayıtlamasına 2778 kayıtlamasına 2907 kayıtlamasına için 3167 sair verilecek kayıtlamasına [all …]
|