Searched defs:sm (Results 1 - 25 of 288) sorted by relevance

1234567891011>>

/external/libcxx/test/re/re.submatch/re.submatch.members/
H A Ddefault.pass.cpp24 SM sm; local
25 assert(sm.matched == false);
30 SM sm; local
31 assert(sm.matched == false);
H A Dlength.pass.cpp24 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);
35 SM sm = SM(); local
36 assert(sm.length() == 0);
38 sm.first = s;
39 sm
[all...]
H A Dcompare_string_type.pass.cpp25 SM sm = SM(); local
27 assert(sm.compare(string()) == 0);
29 sm.first = s;
30 sm.second = s + 3;
31 sm.matched = true;
32 assert(sm.compare(string()) > 0);
33 assert(sm.compare(string("123")) == 0);
39 SM sm = SM(); local
41 assert(sm.compare(string()) == 0);
43 sm
[all...]
H A Dcompare_sub_match.pass.cpp24 SM sm = SM(); local
26 assert(sm.compare(sm2) == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 assert(sm.compare(sm2) > 0);
35 assert(sm.compare(sm2) == 0);
40 SM sm = SM(); local
42 assert(sm.compare(sm2) == 0);
44 sm
[all...]
H A Dcompare_value_type_ptr.pass.cpp24 SM sm = SM(); local
26 assert(sm.compare("") == 0);
28 sm.first = s;
29 sm.second = s + 3;
30 sm.matched = true;
31 assert(sm.compare("") > 0);
32 assert(sm.compare("123") == 0);
37 SM sm = SM(); local
39 assert(sm.compare(L"") == 0);
41 sm
[all...]
H A Doperator_string.pass.cpp24 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
38 SM::string_type str = sm;
41 sm.first = s;
42 sm
[all...]
H A Dstr.pass.cpp24 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
38 SM::string_type str = sm.str();
41 sm.first = s;
42 sm
[all...]
/external/libcxx/test/re/re.submatch/
H A Dtypes.pass.cpp40 SM sm; local
41 sm.first = nullptr;
42 sm.second = nullptr;
43 sm.matched = false;
53 SM sm; local
54 sm.first = nullptr;
55 sm.second = nullptr;
56 sm.matched = false;
/external/clang/include/clang/Basic/
H A DPrettyStackTrace.h32 PrettyStackTraceLoc(SourceManager &sm, SourceLocation L, const char *Msg) argument
33 : SM(sm), Loc(L), Message(Msg) {}
/external/libcxx/test/re/re.submatch/re.submatch.op/
H A Dstream.pass.cpp29 SM sm; local
30 sm.first = s.begin();
31 sm.second = s.end();
32 sm.matched = true;
34 os << sm; local
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_otp.c15 static void * eap_otp_init(struct eap_sm *sm) argument
23 static void eap_otp_deinit(struct eap_sm *sm, void *priv) argument
28 static struct wpabuf * eap_otp_process(struct eap_sm *sm, void *priv, argument
45 password = eap_get_config_otp(sm, &password_len);
49 password = eap_get_config_password(sm, &password_len);
55 eap_sm_request_otp(sm, (const char *) pos, len);
76 eap_clear_config_otp(sm);
H A Deap_md5.c16 static void * eap_md5_init(struct eap_sm *sm) argument
24 static void eap_md5_deinit(struct eap_sm *sm, void *priv) argument
29 static struct wpabuf * eap_md5_process(struct eap_sm *sm, void *priv, argument
38 password = eap_get_config_password(sm, &password_len);
41 eap_sm_request_password(sm);
H A Deap_gtc.c20 static void * eap_gtc_init(struct eap_sm *sm) argument
27 if (sm->m && sm->m->vendor == EAP_VENDOR_IETF &&
28 sm->m->method == EAP_TYPE_FAST) {
37 static void eap_gtc_deinit(struct eap_sm *sm, void *priv) argument
44 static struct wpabuf * eap_gtc_process(struct eap_sm *sm, void *priv, argument
77 password = eap_get_config_otp(sm, &password_len);
81 password = eap_get_config_password(sm, &password_len);
87 eap_sm_request_otp(sm, (const char *) pos, len);
99 identity = eap_get_config_identity(sm,
[all...]
H A Deap_proxy_dummy.c27 int eap_proxy_key_available(struct eap_proxy_sm *sm) argument
33 const u8 * eap_proxy_get_eapKeyData(struct eap_proxy_sm *sm, size_t *len) argument
39 struct wpabuf * eap_proxy_get_eapRespData(struct eap_proxy_sm *sm) argument
45 int eap_proxy_sm_step(struct eap_proxy_sm *sm, struct eap_sm *eap_sm) argument
59 int eap_proxy_sm_get_status(struct eap_proxy_sm *sm, char *buf, size_t buflen, argument
73 int eap_proxy_notify_config(struct eap_proxy_sm *sm, argument
H A Deap_vendor_test.c34 static void * eap_vendor_test_init(struct eap_sm *sm) argument
46 static void eap_vendor_test_deinit(struct eap_sm *sm, void *priv) argument
56 struct eap_sm *sm = eloop_ctx; local
59 eap_notify_pending(sm);
64 static struct wpabuf * eap_vendor_test_process(struct eap_sm *sm, void *priv, argument
107 eloop_register_timeout(1, 0, eap_vendor_ready, sm,
140 static Boolean eap_vendor_test_isKeyAvailable(struct eap_sm *sm, void *priv) argument
147 static u8 * eap_vendor_test_getKey(struct eap_sm *sm, void *priv, size_t *len) argument
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_otp.c15 static void * eap_otp_init(struct eap_sm *sm) argument
23 static void eap_otp_deinit(struct eap_sm *sm, void *priv) argument
28 static struct wpabuf * eap_otp_process(struct eap_sm *sm, void *priv, argument
45 password = eap_get_config_otp(sm, &password_len);
49 password = eap_get_config_password(sm, &password_len);
55 eap_sm_request_otp(sm, (const char *) pos, len);
76 eap_clear_config_otp(sm);
H A Deap_md5.c16 static void * eap_md5_init(struct eap_sm *sm) argument
24 static void eap_md5_deinit(struct eap_sm *sm, void *priv) argument
29 static struct wpabuf * eap_md5_process(struct eap_sm *sm, void *priv, argument
38 password = eap_get_config_password(sm, &password_len);
41 eap_sm_request_password(sm);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_otp.c15 static void * eap_otp_init(struct eap_sm *sm) argument
23 static void eap_otp_deinit(struct eap_sm *sm, void *priv) argument
28 static struct wpabuf * eap_otp_process(struct eap_sm *sm, void *priv, argument
45 password = eap_get_config_otp(sm, &password_len);
49 password = eap_get_config_password(sm, &password_len);
55 eap_sm_request_otp(sm, (const char *) pos, len);
76 eap_clear_config_otp(sm);
H A Deap_md5.c16 static void * eap_md5_init(struct eap_sm *sm) argument
24 static void eap_md5_deinit(struct eap_sm *sm, void *priv) argument
29 static struct wpabuf * eap_md5_process(struct eap_sm *sm, void *priv, argument
38 password = eap_get_config_password(sm, &password_len);
41 eap_sm_request_password(sm);
/external/eigen/unsupported/test/
H A Dsparse_extra.cpp18 bool test_random_setter(SparseMatrix<Scalar,Options>& sm, const DenseType& ref, const std::vector<Vector2i>& nonzeroCoords) argument
21 sm.setZero();
22 SetterType w(sm);
32 return sm.isApprox(ref);
36 bool test_random_setter(DynamicSparseMatrix<T>& sm, const DenseType& ref, const std::vector<Vector2i>& nonzeroCoords) argument
38 sm.setZero();
43 sm.coeffRef(remaining[i].x(),remaining[i].y()) = ref.coeff(remaining[i].x(),remaining[i].y());
47 return sm.isApprox(ref);
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_identity.c21 static void * eap_identity_init(struct eap_sm *sm) argument
34 static void * eap_identity_initPickUp(struct eap_sm *sm) argument
37 data = eap_identity_init(sm);
45 static void eap_identity_reset(struct eap_sm *sm, void *priv) argument
52 static struct wpabuf * eap_identity_buildReq(struct eap_sm *sm, void *priv, argument
60 if (sm->eapol_cb->get_eap_req_id_text) {
61 req_data = sm->eapol_cb->get_eap_req_id_text(sm->eapol_ctx,
82 static Boolean eap_identity_check(struct eap_sm *sm, void *priv, argument
99 static void eap_identity_process(struct eap_sm *sm, voi argument
143 eap_identity_isDone(struct eap_sm *sm, void *priv) argument
150 eap_identity_isSuccess(struct eap_sm *sm, void *priv) argument
[all...]
H A Deap_server_md5.c25 static void * eap_md5_init(struct eap_sm *sm) argument
38 static void eap_md5_reset(struct eap_sm *sm, void *priv) argument
45 static struct wpabuf * eap_md5_buildReq(struct eap_sm *sm, void *priv, u8 id) argument
76 static Boolean eap_md5_check(struct eap_sm *sm, void *priv, argument
98 static void eap_md5_process(struct eap_sm *sm, void *priv, argument
106 if (sm->user == NULL || sm->user->password == NULL ||
107 sm->user->password_hash) {
122 if (chap_md5(id, sm->user->password, sm
139 eap_md5_isDone(struct eap_sm *sm, void *priv) argument
146 eap_md5_isSuccess(struct eap_sm *sm, void *priv) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eapol_auth/
H A Deapol_auth_dump.c121 int eapol_auth_dump_state(struct eapol_state_machine *sm, char *buf, argument
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
[all...]
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dpreauth.h16 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) argument
36 rsn_preauth_candidate_process(struct wpa_sm *sm) argument
40 rsn_preauth_init(struct wpa_sm *sm, const u8 *dst, struct eap_peer_config *eap_conf) argument
46 rsn_preauth_deinit(struct wpa_sm *sm) argument
50 rsn_preauth_scan_results(struct wpa_sm *sm) argument
55 rsn_preauth_scan_result(struct wpa_sm *sm, const u8 *bssid, const u8 *ssid, const u8 *rsn) argument
60 pmksa_candidate_add(struct wpa_sm *sm, const u8 *bssid, int prio, int preauth) argument
66 rsn_preauth_get_status(struct wpa_sm *sm, char *buf, size_t buflen, int verbose) argument
72 rsn_preauth_in_progress(struct wpa_sm *sm) argument
[all...]
H A Dwpa_ie.c108 struct wpa_sm *sm)
117 (sm->cur_pmksa ? 2 + PMKID_LEN : 0)) {
186 if (sm->mfp)
188 if (sm->mfp == 2)
194 if (sm->cur_pmksa) {
199 os_memcpy(pos, sm->cur_pmksa->pmkid, PMKID_LEN);
205 if (!sm->cur_pmksa) {
286 * @sm: Pointer to WPA state machine data from wpa_sm_init()
291 int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len) argument
293 if (sm
105 wpa_gen_wpa_ie_rsn(u8 *rsn_ie, size_t rsn_ie_len, int pairwise_cipher, int group_cipher, int key_mgmt, int mgmt_group_cipher, struct wpa_sm *sm) argument
[all...]

Completed in 340 milliseconds

1234567891011>>