HomeSort by relevance Sort by last modified time
    Searched refs:sm (Results 151 - 175 of 302) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa_ie.c 257 struct wpa_sm *sm)
266 (sm->cur_pmksa ? 2 + PMKID_LEN : 0)) {
341 if (sm->cur_pmksa) {
346 os_memcpy(pos, sm->cur_pmksa->pmkid, PMKID_LEN);
352 if (!sm->cur_pmksa) {
377 * @sm: Pointer to WPA state machine data from wpa_sm_init()
382 int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len)
384 if (sm->proto == WPA_PROTO_RSN)
386 sm->pairwise_cipher,
387 sm->group_cipher
    [all...]
wpa_ie.h 50 int wpa_gen_wpa_ie(struct wpa_sm *sm, u8 *wpa_ie, size_t wpa_ie_len);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_gpsk.c 70 static void * eap_gpsk_init(struct eap_sm *sm)
106 static void eap_gpsk_reset(struct eap_sm *sm, void *priv)
115 static struct wpabuf * eap_gpsk_build_gpsk_1(struct eap_sm *sm,
155 static struct wpabuf * eap_gpsk_build_gpsk_3(struct eap_sm *sm,
204 static struct wpabuf * eap_gpsk_buildReq(struct eap_sm *sm, void *priv, u8 id)
210 return eap_gpsk_build_gpsk_1(sm, data, id);
212 return eap_gpsk_build_gpsk_3(sm, data, id);
222 static Boolean eap_gpsk_check(struct eap_sm *sm, void *priv,
250 static void eap_gpsk_process_gpsk_2(struct eap_sm *sm,
413 if (sm->user == NULL || sm->user->password == NULL)
    [all...]
eap_tnc.c 44 static void * eap_tnc_init(struct eap_sm *sm)
64 static void eap_tnc_reset(struct eap_sm *sm, void *priv)
74 static struct wpabuf * eap_tnc_build_start(struct eap_sm *sm,
96 static struct wpabuf * eap_tnc_build(struct eap_sm *sm,
144 static struct wpabuf * eap_tnc_build_recommendation(struct eap_sm *sm,
166 return eap_tnc_build(sm, data);
241 static struct wpabuf * eap_tnc_buildReq(struct eap_sm *sm, void *priv, u8 id)
248 return eap_tnc_build_start(sm, data, id);
251 data->out_buf = eap_tnc_build(sm, data);
262 data->out_buf = eap_tnc_build_recommendation(sm, data)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_gpsk.c 65 static void * eap_gpsk_init(struct eap_sm *sm)
101 static void eap_gpsk_reset(struct eap_sm *sm, void *priv)
110 static struct wpabuf * eap_gpsk_build_gpsk_1(struct eap_sm *sm,
150 static struct wpabuf * eap_gpsk_build_gpsk_3(struct eap_sm *sm,
199 static struct wpabuf * eap_gpsk_buildReq(struct eap_sm *sm, void *priv, u8 id)
205 return eap_gpsk_build_gpsk_1(sm, data, id);
207 return eap_gpsk_build_gpsk_3(sm, data, id);
217 static Boolean eap_gpsk_check(struct eap_sm *sm, void *priv,
245 static void eap_gpsk_process_gpsk_2(struct eap_sm *sm,
408 if (sm->user == NULL || sm->user->password == NULL)
    [all...]
eap_server_pwd.c 80 static void * eap_pwd_init(struct eap_sm *sm)
84 if (sm->user == NULL || sm->user->password == NULL ||
85 sm->user->password_len == 0) {
95 data->group_num = sm->pwd_group;
104 data->password = os_malloc(sm->user->password_len);
112 data->password_len = sm->user->password_len;
113 os_memcpy(data->password, sm->user->password, data->password_len);
132 static void eap_pwd_reset(struct eap_sm *sm, void *priv)
157 static void eap_pwd_build_id_req(struct eap_sm *sm, struct eap_pwd_data *data
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_sim.c 89 static void * eap_sim_init(struct eap_sm *sm)
92 struct eap_peer_config *config = eap_get_config(sm);
133 static void eap_sim_deinit(struct eap_sm *sm, void *priv)
146 static int eap_sim_gsm_auth(struct eap_sm *sm, struct eap_sim_data *data)
152 conf = eap_get_config(sm);
156 if (scard_gsm_auth(sm->scard_ctx, data->rand[0],
158 scard_gsm_auth(sm->scard_ctx, data->rand[1],
161 scard_gsm_auth(sm->scard_ctx, data->rand[2],
349 static struct wpabuf * eap_sim_response_start(struct eap_sm *sm,
368 identity = eap_get_config_identity(sm, &identity_len)
    [all...]
eap_gpsk.c 80 static void eap_gpsk_deinit(struct eap_sm *sm, void *priv);
83 static void * eap_gpsk_init(struct eap_sm *sm)
89 password = eap_get_config_password(sm, &password_len);
100 identity = eap_get_config_identity(sm, &identity_len);
104 eap_gpsk_deinit(sm, data);
113 eap_gpsk_deinit(sm, data);
123 static void eap_gpsk_deinit(struct eap_sm *sm, void *priv)
183 static int eap_gpsk_select_csuite(struct eap_sm *sm,
211 wpa_msg(sm->msg_ctx, MSG_INFO, "EAP-GPSK: No supported "
222 static const u8 * eap_gpsk_process_csuite_list(struct eap_sm *sm,
    [all...]
eap_aka.c 97 static void * eap_aka_init(struct eap_sm *sm)
100 const char *phase1 = eap_get_config_phase1(sm);
118 static void * eap_aka_prime_init(struct eap_sm *sm)
120 struct eap_aka_data *data = eap_aka_init(sm);
129 static void eap_aka_deinit(struct eap_sm *sm, void *priv)
143 static int eap_aka_umts_auth(struct eap_sm *sm, struct eap_aka_data *data)
149 conf = eap_get_config(sm);
153 return scard_umts_auth(sm->scard_ctx, data->rand,
459 static struct wpabuf * eap_aka_response_identity(struct eap_sm *sm,
479 identity = eap_get_config_identity(sm, &identity_len)
    [all...]
eap_ikev2.c 64 static void * eap_ikev2_init(struct eap_sm *sm)
70 identity = eap_get_config_identity(sm, &identity_len);
93 password = eap_get_config_password(sm, &password_len);
111 static void eap_ikev2_deinit(struct eap_sm *sm, void *priv)
328 static struct wpabuf * eap_ikev2_process(struct eap_sm *sm, void *priv,
441 static Boolean eap_ikev2_isKeyAvailable(struct eap_sm *sm, void *priv)
448 static u8 * eap_ikev2_getKey(struct eap_sm *sm, void *priv, size_t *len)
466 static u8 * eap_ikev2_get_emsk(struct eap_sm *sm, void *priv, size_t *len)
eap_psk.c 37 static void * eap_psk_init(struct eap_sm *sm)
43 password = eap_get_config_password(sm, &password_len);
61 identity = eap_get_config_identity(sm, &identity_len);
78 static void eap_psk_deinit(struct eap_sm *sm, void *priv)
374 static struct wpabuf * eap_psk_process(struct eap_sm *sm, void *priv,
416 static Boolean eap_psk_isKeyAvailable(struct eap_sm *sm, void *priv)
423 static u8 * eap_psk_getKey(struct eap_sm *sm, void *priv, size_t *len)
442 static u8 * eap_psk_get_emsk(struct eap_sm *sm, void *priv, size_t *len)
  /frameworks/base/tests/RenderScriptTests/Fountain/src/com/example/android/rs/fountain/
FountainRS.java 47 Mesh sm = smb.create(); local
50 mScript.set_partMesh(sm);
  /frameworks/base/tests/RenderScriptTests/Fountain_v11/src/com/android/fountain/
FountainRS.java 47 Mesh sm = smb.create(); local
50 mScript.set_partMesh(sm);
  /external/wpa_supplicant_8/src/eap_peer/
eap_gpsk.c 75 static void eap_gpsk_deinit(struct eap_sm *sm, void *priv);
78 static void * eap_gpsk_init(struct eap_sm *sm)
84 password = eap_get_config_password(sm, &password_len);
95 identity = eap_get_config_identity(sm, &identity_len);
99 eap_gpsk_deinit(sm, data);
108 eap_gpsk_deinit(sm, data);
118 static void eap_gpsk_deinit(struct eap_sm *sm, void *priv)
178 static int eap_gpsk_select_csuite(struct eap_sm *sm,
206 wpa_msg(sm->msg_ctx, MSG_INFO, "EAP-GPSK: No supported "
217 static const u8 * eap_gpsk_process_csuite_list(struct eap_sm *sm,
    [all...]
eap_tls_common.c 31 static int eap_tls_check_blob(struct eap_sm *sm, const char **name,
39 blob = eap_get_config_blob(sm, *name + 7);
112 static int eap_tls_params_from_conf(struct eap_sm *sm,
118 if (sm->workaround && data->eap_type != EAP_TYPE_FAST) {
142 if (eap_tls_check_blob(sm, &params->ca_cert, &params->ca_cert_blob,
144 eap_tls_check_blob(sm, &params->client_cert,
147 eap_tls_check_blob(sm, &params->private_key,
150 eap_tls_check_blob(sm, &params->dh_file, &params->dh_blob,
160 static int eap_tls_init_connection(struct eap_sm *sm,
191 eap_sm_request_pin(sm);
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_i.h 198 struct wpa_state_machine *sm, int key_info,
203 int (*cb)(struct wpa_state_machine *sm, void *ctx),
213 struct wpa_state_machine *sm, struct wpa_eapol_key *key);
215 struct wpa_state_machine *sm, struct wpa_eapol_key *key);
217 struct wpa_state_machine *sm, struct wpa_eapol_key *key);
227 int wpa_auth_derive_ptk_ft(struct wpa_state_machine *sm, const u8 *pmk,
231 void wpa_ft_install_ptk(struct wpa_state_machine *sm);
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
StateMachineTest.java 1497 StateMachineUnhandledMessage sm = new StateMachineUnhandledMessage("sm"); local
1619 Hsm1 sm = Hsm1.makeHsm1(); local
1685 Hsm1 sm = new Hsm1("hsm1"); local
    [all...]
  /external/valgrind/main/VEX/switchback/
linker.c 285 StringMap* sm = mymalloc(sizeof(StringMap));
286 sm->sm_size = 10;
287 sm->sm_used = 0;
288 sm->maplets = mymalloc(10 * sizeof(Maplet));
289 return sm;
292 static void delete_StringMap ( StringMap* sm )
294 assert(sm->maplets != NULL);
295 myfree(sm->maplets);
296 sm->maplets = NULL;
297 myfree(sm);
    [all...]
  /external/valgrind/main/VEX/unused/
linker.c 221 StringMap* sm = malloc(sizeof(StringMap)); local
222 sm->sm_size = 10;
223 sm->sm_used = 0;
224 sm->maplets = malloc(10 * sizeof(Maplet));
225 return sm;
228 static void delete_StringMap ( StringMap* sm )
230 assert(sm->maplets != NULL);
231 free(sm->maplets);
232 sm->maplets = NULL;
233 free(sm);
    [all...]
  /frameworks/av/media/libmedia/
IMediaDeathNotifier.cpp 40 sp<IServiceManager> sm = defaultServiceManager(); local
43 binder = sm->getService(String16("media.player"));
  /frameworks/base/cmds/service/
service.cpp 60 sp<IServiceManager> sm = defaultServiceManager(); local
62 if (sm == NULL) {
94 sp<IBinder> service = sm->checkService(String16(argv[optind]));
104 Vector<String16> services = sm->listServices();
108 sp<IBinder> service = sm->checkService(name);
118 sp<IBinder> service = sm->checkService(String16(argv[optind++]));
  /system/core/sh/
trap.c 348 char *sm; variable
351 for (sm = sigmode ; sm < sigmode + NSIG ; sm++) {
352 if (*sm == S_IGN)
353 *sm = S_HARD_IGN;
  /external/valgrind/main/memcheck/
mc_main.c 291 static INLINE Bool is_distinguished_sm ( SecMap* sm ) {
292 return sm >= &sm_distinguished[0] && sm <= &sm_distinguished[2];
374 value, and sm points at the relevant secondary map. As with the
382 SecMap* sm; member in struct:__anon15629
460 if (elem->sm == NULL)
461 return "64-bit: .sm in _L2 is NULL";
462 if (!is_distinguished_sm(elem->sm))
481 key.sm = 0;
566 key.sm = 0
739 SecMap* sm = get_secmap_for_writing(a); local
747 SecMap* sm = get_secmap_for_reading(a); local
760 SecMap* sm = get_secmap_for_reading(a); local
769 SecMap* sm = get_secmap_for_writing(a); local
1139 SecMap* sm = get_secmap_for_reading(a); local
1150 SecMap* sm = get_secmap_for_reading(a); local
1219 SecMap* sm = get_secmap_for_reading(a); local
1241 SecMap* sm = get_secmap_for_reading(a); local
1293 SecMap* sm; local
2340 SecMap* sm; local
2383 SecMap* sm; local
2424 SecMap* sm; local
2468 SecMap* sm; local
3311 SecMap* sm = get_secmap_for_writing_low(a_lo); local
3367 SecMap* sm = get_secmap_for_writing_low(a_lo); local
4083 SecMap* sm; local
4191 SecMap* sm; local
4309 SecMap* sm; local
4412 SecMap* sm; local
4582 SecMap* sm = maybe_get_secmap_for ( a ); local
4615 SecMap* sm; local
4668 SecMap* sm; local
    [all...]
  /frameworks/native/services/sensorservice/
BatteryService.cpp 34 const sp<IServiceManager> sm(defaultServiceManager());
35 if (sm != NULL) {
37 mBatteryStatService = sm->getService(name);
  /external/clang/test/SemaCXX/
class.cpp 8 static void sm() { function in class:C
20 sm();

Completed in 1303 milliseconds

1 2 3 4 5 67 8 91011>>