HomeSort by relevance Sort by last modified time
    Searched refs:sm (Results 1 - 25 of 357) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/pae/
ieee802_1x_cp.c 97 static int changed_cipher(struct ieee802_1x_cp_sm *sm)
99 return sm->confidentiality_offset != sm->cipher_offset ||
100 os_memcmp(sm->current_cipher_suite, sm->cipher_suite,
105 static int changed_connect(struct ieee802_1x_cp_sm *sm)
107 return sm->connect != SECURE || sm->chgd_server || changed_cipher(sm);
115 sm->controlled_port_enabled = FALSE
435 struct ieee802_1x_cp_sm *sm; local
514 struct ieee802_1x_cp_sm *sm = eloop_ctx; local
545 struct ieee802_1x_cp_sm *sm = cp_ctx; local
556 struct ieee802_1x_cp_sm *sm = (struct ieee802_1x_cp_sm *)cp_ctx; local
567 struct ieee802_1x_cp_sm *sm = cp_ctx; local
578 struct ieee802_1x_cp_sm *sm = cp_ctx; local
589 struct ieee802_1x_cp_sm *sm = cp_ctx; local
600 struct ieee802_1x_cp_sm *sm = cp_ctx; local
610 struct ieee802_1x_cp_sm *sm = cp_ctx; local
623 struct ieee802_1x_cp_sm *sm = cp_ctx; local
633 struct ieee802_1x_cp_sm *sm = cp_ctx; local
643 struct ieee802_1x_cp_sm *sm = cp_ctx; local
654 struct ieee802_1x_cp_sm *sm = cp_ctx; local
664 struct ieee802_1x_cp_sm *sm = cp_ctx; local
674 struct ieee802_1x_cp_sm *sm = cp_ctx; local
684 struct ieee802_1x_cp_sm *sm = cp_ctx; local
694 struct ieee802_1x_cp_sm *sm = cp_ctx; local
704 struct ieee802_1x_cp_sm *sm = cp_ctx; local
723 struct ieee802_1x_cp_sm *sm = cp_ctx; local
732 struct ieee802_1x_cp_sm *sm = eloop_ctx; local
741 struct ieee802_1x_cp_sm *sm = eloop_ctx; local
    [all...]
  /external/libcxx/test/re/re.submatch/re.submatch.members/
length.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 assert(sm.length() == 0);
27 sm.first = s;
28 sm.second = s + 3;
29 sm.matched = true;
30 assert(sm.length() == 3);
34 typedef std::sub_match<const CharT*> SM;
35 SM sm = SM(); local
    [all...]
compare_string_type.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 typedef SM::string_type string;
25 SM sm = SM(); local
26 SM sm2 = SM();
27 assert(sm.compare(string()) == 0);
29 sm.first = s;
30 sm.second = s + 3
39 SM sm = SM(); local
    [all...]
compare_value_type_ptr.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM sm2 = SM();
26 assert(sm.compare("") == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true
37 SM sm = SM(); local
    [all...]
operator_string.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM::string_type str = sm;
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 str = sm;
37 SM sm = SM(); local
    [all...]
str.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM::string_type str = sm.str();
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 str = sm.str()
37 SM sm = SM(); local
    [all...]
default.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm; local
25 assert(sm.matched == false);
29 typedef std::sub_match<const CharT*> SM;
30 SM sm; local
31 assert(sm.matched == false);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/
length.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 assert(sm.length() == 0);
27 sm.first = s;
28 sm.second = s + 3;
29 sm.matched = true;
30 assert(sm.length() == 3);
34 typedef std::sub_match<const CharT*> SM;
35 SM sm = SM(); local
    [all...]
compare_string_type.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 typedef SM::string_type string;
25 SM sm = SM(); local
26 SM sm2 = SM();
27 assert(sm.compare(string()) == 0);
29 sm.first = s;
30 sm.second = s + 3
39 SM sm = SM(); local
    [all...]
compare_value_type_ptr.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM sm2 = SM();
26 assert(sm.compare("") == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true
37 SM sm = SM(); local
    [all...]
operator_string.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM::string_type str = sm;
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 str = sm;
37 SM sm = SM(); local
    [all...]
str.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm = SM(); local
25 SM::string_type str = sm.str();
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 str = sm.str()
37 SM sm = SM(); local
    [all...]
default.pass.cpp 23 typedef std::sub_match<const CharT*> SM;
24 SM sm; local
25 assert(sm.matched == false);
29 typedef std::sub_match<const CharT*> SM;
30 SM sm; local
31 assert(sm.matched == false);
  /external/wpa_supplicant_8/src/eap_server/
eap_server.c 32 static int eap_sm_calculateTimeout(struct eap_sm *sm, int retransCount,
35 static void eap_sm_parseEapResp(struct eap_sm *sm, const struct wpabuf *resp);
37 static struct wpabuf * eap_sm_buildSuccess(struct eap_sm *sm, u8 id);
38 static struct wpabuf * eap_sm_buildFailure(struct eap_sm *sm, u8 id);
39 static int eap_sm_nextId(struct eap_sm *sm, int id);
40 static void eap_sm_Policy_update(struct eap_sm *sm, const u8 *nak_list,
42 static EapType eap_sm_Policy_getNextMethod(struct eap_sm *sm, int *vendor);
43 static int eap_sm_Policy_getDecision(struct eap_sm *sm);
44 static Boolean eap_sm_Policy_doPickUp(struct eap_sm *sm, EapType method);
82 * @sm: Pointer to EAP state machine allocated with eap_server_sm_init(
1282 struct eap_sm *sm; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/store/
str_meth.c 86 int STORE_method_set_initialise_function(STORE_METHOD *sm, STORE_INITIALISE_FUNC_PTR init_f)
88 sm->init = init_f;
92 int STORE_method_set_cleanup_function(STORE_METHOD *sm, STORE_CLEANUP_FUNC_PTR clean_f)
94 sm->clean = clean_f;
98 int STORE_method_set_generate_function(STORE_METHOD *sm, STORE_GENERATE_OBJECT_FUNC_PTR generate_f)
100 sm->generate_object = generate_f;
104 int STORE_method_set_get_function(STORE_METHOD *sm, STORE_GET_OBJECT_FUNC_PTR get_f)
106 sm->get_object = get_f;
110 int STORE_method_set_store_function(STORE_METHOD *sm, STORE_STORE_OBJECT_FUNC_PTR store_f)
112 sm->store_object = store_f
    [all...]
  /external/openssl/crypto/store/
str_meth.c 86 int STORE_method_set_initialise_function(STORE_METHOD *sm, STORE_INITIALISE_FUNC_PTR init_f)
88 sm->init = init_f;
92 int STORE_method_set_cleanup_function(STORE_METHOD *sm, STORE_CLEANUP_FUNC_PTR clean_f)
94 sm->clean = clean_f;
98 int STORE_method_set_generate_function(STORE_METHOD *sm, STORE_GENERATE_OBJECT_FUNC_PTR generate_f)
100 sm->generate_object = generate_f;
104 int STORE_method_set_get_function(STORE_METHOD *sm, STORE_GET_OBJECT_FUNC_PTR get_f)
106 sm->get_object = get_f;
110 int STORE_method_set_store_function(STORE_METHOD *sm, STORE_STORE_OBJECT_FUNC_PTR store_f)
112 sm->store_object = store_f
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap.c 38 static Boolean eap_sm_allowMethod(struct eap_sm *sm, int vendor,
40 static struct wpabuf * eap_sm_buildNak(struct eap_sm *sm, int id);
41 static void eap_sm_processIdentity(struct eap_sm *sm,
43 static void eap_sm_processNotify(struct eap_sm *sm, const struct wpabuf *req);
45 static void eap_sm_parseEapReq(struct eap_sm *sm, const struct wpabuf *req);
53 static Boolean eapol_get_bool(struct eap_sm *sm, enum eapol_bool_var var)
55 return sm->eapol_cb->get_bool(sm->eapol_ctx, var);
59 static void eapol_set_bool(struct eap_sm *sm, enum eapol_bool_var var,
62 sm->eapol_cb->set_bool(sm->eapol_ctx, var, value)
1336 struct eap_sm *sm = ctx; local
1405 struct eap_sm *sm; local
    [all...]
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.c 150 static void eapol_sm_txLogoff(struct eapol_sm *sm);
151 static void eapol_sm_txStart(struct eapol_sm *sm);
152 static void eapol_sm_processKey(struct eapol_sm *sm);
153 static void eapol_sm_getSuppRsp(struct eapol_sm *sm);
154 static void eapol_sm_txSuppRsp(struct eapol_sm *sm);
155 static void eapol_sm_abortSupp(struct eapol_sm *sm);
156 static void eapol_sm_abort_cached(struct eapol_sm *sm);
158 static void eapol_sm_set_port_authorized(struct eapol_sm *sm);
159 static void eapol_sm_set_port_unauthorized(struct eapol_sm *sm);
166 struct eapol_sm *sm = timeout_ctx local
1783 struct eapol_sm *sm = ctx; local
1790 struct eapol_sm *sm = ctx; local
1800 struct eapol_sm *sm = ctx; local
1830 struct eapol_sm *sm = ctx; local
1867 struct eapol_sm *sm = ctx; local
1881 struct eapol_sm *sm = ctx; local
1897 struct eapol_sm *sm = ctx; local
1908 struct eapol_sm *sm = ctx; local
1921 struct eapol_sm *sm = ctx; local
1938 struct eapol_sm *sm = ctx; local
1951 struct eapol_sm *sm = ctx; local
1961 struct eapol_sm *sm = ctx; local
1970 struct eapol_sm *sm = ctx; local
2005 struct eapol_sm *sm; local
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.h 16 void pmksa_candidate_free(struct wpa_sm *sm);
17 int rsn_preauth_init(struct wpa_sm *sm, const u8 *dst,
19 void rsn_preauth_deinit(struct wpa_sm *sm);
20 int rsn_preauth_scan_results(struct wpa_sm *sm);
21 void rsn_preauth_scan_result(struct wpa_sm *sm, const u8 *bssid,
23 void pmksa_candidate_add(struct wpa_sm *sm, const u8 *bssid,
25 void rsn_preauth_candidate_process(struct wpa_sm *sm);
26 int rsn_preauth_get_status(struct wpa_sm *sm, char *buf, size_t buflen,
28 int rsn_preauth_in_progress(struct wpa_sm *sm);
32 static inline void pmksa_candidate_free(struct wpa_sm *sm)
    [all...]
wpa_i.h 133 static inline void wpa_sm_set_state(struct wpa_sm *sm, enum wpa_states state)
135 WPA_ASSERT(sm->ctx->set_state);
136 sm->ctx->set_state(sm->ctx->ctx, state);
139 static inline enum wpa_states wpa_sm_get_state(struct wpa_sm *sm)
141 WPA_ASSERT(sm->ctx->get_state);
142 return sm->ctx->get_state(sm->ctx->ctx);
145 static inline void wpa_sm_deauthenticate(struct wpa_sm *sm, int reason_code)
147 WPA_ASSERT(sm->ctx->deauthenticate)
    [all...]
wpa.c 28 * @sm: Pointer to WPA state machine data from wpa_sm_init()
37 void wpa_eapol_key_send(struct wpa_sm *sm, const u8 *kck,
41 if (is_zero_ether_addr(dest) && is_zero_ether_addr(sm->bssid)) {
46 if (wpa_sm_get_bssid(sm, sm->bssid) < 0) {
47 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
51 dest = sm->bssid;
52 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
60 wpa_msg(sm->ctx->msg_ctx, MSG_ERROR,
68 wpa_sm_ether_send(sm, dest, proto, msg, msg_len)
488 struct wpa_sm *sm = eloop_ctx; local
539 struct wpa_sm *sm = eloop_ctx; local
2003 struct wpa_sm *sm = ctx; local
2051 struct wpa_sm *sm; local
    [all...]
preauth.c 35 * @sm: Pointer to WPA state machine data from wpa_sm_init()
37 void pmksa_candidate_free(struct wpa_sm *sm)
41 if (sm == NULL)
44 dl_list_for_each_safe(entry, n, &sm->pmksa_candidates,
55 struct wpa_sm *sm = ctx; local
60 if (sm->preauth_eapol == NULL ||
61 is_zero_ether_addr(sm->preauth_bssid) ||
62 os_memcmp(sm->preauth_bssid, src_addr, ETH_ALEN) != 0) {
69 eapol_sm_rx_eapol(sm->preauth_eapol, src_addr, buf, len);
77 struct wpa_sm *sm = ctx local
120 struct wpa_sm *sm = eloop_ctx; local
132 struct wpa_sm *sm = ctx; local
    [all...]
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.c 23 #define STATE_MACHINE_ADDR sm->addr
30 sm->eapol->cb.set_port_authorized(sm->eapol->conf.ctx, sm->sta, 1)
32 sm->eapol->cb.set_port_authorized(sm->eapol->conf.ctx, sm->sta, 0)
35 #define txCannedFail() eapol_auth_tx_canned_eap(sm, 0)
36 #define txCannedSuccess() eapol_auth_tx_canned_eap(sm, 1)
37 #define txReq() eapol_auth_tx_req(sm)
764 struct eapol_state_machine *sm; local
959 struct eapol_state_machine *sm = eloop_ctx; local
1004 struct eapol_state_machine *sm = ctx; local
1017 struct eapol_state_machine *sm = ctx; local
    [all...]
eapol_auth_dump.c 121 int eapol_auth_dump_state(struct eapol_state_machine *sm, char *buf,
132 sm->aWhile, sm->quietWhile, sm->reAuthWhen);
158 _SB(sm->authAbort),
159 _SB(sm->authFail),
160 port_state_txt(sm->authPortStatus),
161 _SB(sm->authStart),
162 _SB(sm->authTimeout),
163 _SB(sm->authSuccess)
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 31 #define STATE_MACHINE_ADDR sm->addr
35 static int wpa_sm_step(struct wpa_state_machine *sm);
40 static void wpa_request_new_ptk(struct wpa_state_machine *sm);
139 int (*cb)(struct wpa_state_machine *sm, void *ctx),
203 static int wpa_use_aes_cmac(struct wpa_state_machine *sm)
207 if (wpa_key_mgmt_ft(sm->wpa_key_mgmt))
211 if (wpa_key_mgmt_sha256(sm->wpa_key_mgmt))
214 if (sm->wpa_key_mgmt == WPA_KEY_MGMT_OSEN)
264 struct wpa_state_machine *sm = timeout_ctx; local
266 wpa_auth_logger(wpa_auth, sm->addr, LOGGER_DEBUG, "rekeying PTK")
538 struct wpa_state_machine *sm; local
1270 struct wpa_state_machine *sm = timeout_ctx; local
2792 struct wpa_state_machine *sm = eloop_ctx; local
    [all...]

Completed in 324 milliseconds

1 2 3 4 5 6 7 8 91011>>