Searched defs:identity (Results 51 - 75 of 199) sorted by relevance

12345678

/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_pwd_common.h55 u8 identity[0]; /* length inferred from payload */ member in struct:eap_pwd_id
/external/wpa_supplicant_8/src/eap_common/
H A Deap_pwd_common.h55 u8 identity[0]; /* length inferred from payload */ member in struct:eap_pwd_id
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_pwd_common.h55 u8 identity[0]; /* length inferred from payload */ member in struct:eap_pwd_id
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseTraversers.java37 * identity indices within their logic, for efficiency's sake. Be very
48 * @param dtmIdentity The DTM identity ID for this DTM.
70 * @param dtmIdentity The DTM identity ID for this DTM.
339 * @param axisRoot The root identity of the axis.
431 int identity = makeNodeIdentity(context);
433 int firstMatch = getNextIndexed(identity, _firstch(identity),
519 * @param axisRoot The root identity of the axis.
520 * @param identity The node in question.
524 protected abstract boolean isAfterAxis(int axisRoot, int identity); argument
591 getFirstPotential(int identity) argument
634 isDescendant(int subtreeRootIdentity, int identity) argument
649 isAfterAxis(int axisRoot, int identity) argument
771 getFirstPotential(int identity) argument
1615 getFirstPotential(int identity) argument
1687 getFirstPotential(int identity) argument
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/gl-matrix/src/gl-matrix/
H A Dmat3.js30 * Creates a new identity mat3
109 * Set a mat3 to the identity matrix
114 mat3.identity = function(out) {
357 * mat3.identity(dest);
381 * mat3.identity(dest);
409 * mat3.identity(dest);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp4.cpp7 struct identity { struct
165 extract_nested_types<identity<int>, identity<float> >::types *t_int_float_2
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dexamples.cpp4 template<typename T> struct identity { typedef T type; }; struct in namespace:PR5907
6 identity<A>::type::A() { }
/external/guava/guava/src/com/google/common/base/
H A DConverter.java448 public static <T> Converter<T, T> identity() { method in class:Converter
486 return "Converter.identity()";
/external/icu/icu4c/source/samples/layout/
H A DGDIFontInstance.cpp369 MAT2 identity = {{0, 1}, {0, 0}, {0, 0}, {0, 1}}; local
374 result = GetGlyphOutline(hdc, glyph, GGO_GLYPH_INDEX | GGO_METRICS, &metrics, 0, NULL, &identity);
/external/jetty/src/java/org/eclipse/jetty/security/
H A DMappedLoginService.java138 public void logout(UserIdentity identity) argument
140 LOG.debug("logout {}",identity);
160 final UserIdentity identity;
162 identity=(UserIdentity)info;
172 identity=_identityService.newUserIdentity(subject,userPrincipal,IdentityService.NO_ROLES);
175 _users.put(userName,identity);
176 return identity;
198 UserIdentity identity=_identityService.newUserIdentity(subject,userPrincipal,roles);
199 _users.put(userName,identity);
200 return identity;
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vertex_sse.c63 struct x86_reg identity; member in struct:x86_program
70 return p->identity;
101 /* Initialize from identity, then pull in low two words:
111 /* Pull in low word, then swizzle in identity */
395 sse_movups(&p->func, p->identity, x86_make_disp(vtxESI, get_offset(vtx, &vtx->identity[0])));
658 p.identity = x86_make_reg(file_XMM, 6);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_auth.c40 char *identity; member in struct:hostapd_cached_radius_acl
58 os_free(e->identity);
104 char **identity, char **radius_cui)
127 if (identity) {
128 if (entry->identity)
129 *identity = os_strdup(entry->identity);
131 *identity = NULL;
225 * @identity: Buffer for returning identity (fro
100 hostapd_acl_cache_get(struct hostapd_data *hapd, const u8 *addr, u32 *session_timeout, u32 *acct_interim_interval, int *vlan_id, struct hostapd_sta_wpa_psk_short **psk, char **identity, char **radius_cui) argument
232 hostapd_allowed_address(struct hostapd_data *hapd, const u8 *addr, const u8 *msg, size_t len, u32 *session_timeout, u32 *acct_interim_interval, int *vlan_id, struct hostapd_sta_wpa_psk_short **psk, char **identity, char **radius_cui) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_ikev2.c61 const u8 *identity, *password; local
65 identity = eap_get_config_identity(sm, &identity_len);
66 if (identity == NULL) {
67 wpa_printf(MSG_INFO, "EAP-IKEV2: No identity available");
89 os_memcpy(data->ikev2.IDr, identity, identity_len);
H A Deap_leap.c65 const u8 *pos, *challenge, *identity, *password; local
72 identity = eap_get_config_identity(sm, &identity_len);
74 if (identity == NULL || password == NULL)
125 wpabuf_put_data(resp, identity, identity_len);
140 const u8 *identity; local
145 identity = eap_get_config_identity(sm, &identity_len);
146 if (identity == NULL)
175 wpabuf_put_data(resp, identity, identity_len);
H A Deap_pax.c51 const u8 *identity, *password; local
54 identity = eap_get_config_identity(sm, &identity_len);
56 if (!identity || !password) {
77 os_memcpy(data->cid, identity, identity_len);
H A Deap_psk.c36 const u8 *identity, *password; local
57 identity = eap_get_config_identity(sm, &identity_len);
58 if (identity) {
61 os_memcpy(data->id_p, identity, identity_len);
65 wpa_printf(MSG_INFO, "EAP-PSK: could not get own identity");
H A Deap_sake.c71 const u8 *identity, *password; local
86 identity = eap_get_config_identity(sm, &identity_len);
87 if (identity) {
93 os_memcpy(data->peerid, identity, identity_len);
H A Deap_wsc.c145 const u8 *identity; local
163 identity = eap_get_config_identity(sm, &identity_len);
165 if (identity && identity_len == WSC_ID_REGISTRAR_LEN &&
166 os_memcmp(identity, WSC_ID_REGISTRAR, WSC_ID_REGISTRAR_LEN) == 0)
168 else if (identity && identity_len == WSC_ID_ENROLLEE_LEN &&
169 os_memcmp(identity, WSC_ID_ENROLLEE, WSC_ID_ENROLLEE_LEN) == 0)
172 wpa_hexdump_ascii(MSG_INFO, "EAP-WSC: Unexpected identity",
173 identity, identity_len);
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11_auth.c40 char *identity; member in struct:hostapd_cached_radius_acl
58 os_free(e->identity);
104 char **identity, char **radius_cui)
127 if (identity) {
128 if (entry->identity)
129 *identity = os_strdup(entry->identity);
131 *identity = NULL;
225 * @identity: Buffer for returning identity (fro
100 hostapd_acl_cache_get(struct hostapd_data *hapd, const u8 *addr, u32 *session_timeout, u32 *acct_interim_interval, int *vlan_id, struct hostapd_sta_wpa_psk_short **psk, char **identity, char **radius_cui) argument
232 hostapd_allowed_address(struct hostapd_data *hapd, const u8 *addr, const u8 *msg, size_t len, u32 *session_timeout, u32 *acct_interim_interval, int *vlan_id, struct hostapd_sta_wpa_psk_short **psk, char **identity, char **radius_cui) argument
[all...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_ikev2.c61 const u8 *identity, *password; local
65 identity = eap_get_config_identity(sm, &identity_len);
66 if (identity == NULL) {
67 wpa_printf(MSG_INFO, "EAP-IKEV2: No identity available");
89 os_memcpy(data->ikev2.IDr, identity, identity_len);
H A Deap_leap.c65 const u8 *pos, *challenge, *identity, *password; local
72 identity = eap_get_config_identity(sm, &identity_len);
74 if (identity == NULL || password == NULL)
125 wpabuf_put_data(resp, identity, identity_len);
140 const u8 *identity; local
145 identity = eap_get_config_identity(sm, &identity_len);
146 if (identity == NULL)
175 wpabuf_put_data(resp, identity, identity_len);
H A Deap_pax.c51 const u8 *identity, *password; local
54 identity = eap_get_config_identity(sm, &identity_len);
56 if (!identity || !password) {
77 os_memcpy(data->cid, identity, identity_len);
H A Deap_psk.c36 const u8 *identity, *password; local
57 identity = eap_get_config_identity(sm, &identity_len);
58 if (identity) {
61 os_memcpy(data->id_p, identity, identity_len);
65 wpa_printf(MSG_INFO, "EAP-PSK: could not get own identity");
H A Deap_sake.c71 const u8 *identity, *password; local
86 identity = eap_get_config_identity(sm, &identity_len);
87 if (identity) {
93 os_memcpy(data->peerid, identity, identity_len);
H A Deap_wsc.c145 const u8 *identity; local
163 identity = eap_get_config_identity(sm, &identity_len);
165 if (identity && identity_len == WSC_ID_REGISTRAR_LEN &&
166 os_memcmp(identity, WSC_ID_REGISTRAR, WSC_ID_REGISTRAR_LEN) == 0)
168 else if (identity && identity_len == WSC_ID_ENROLLEE_LEN &&
169 os_memcmp(identity, WSC_ID_ENROLLEE, WSC_ID_ENROLLEE_LEN) == 0)
172 wpa_hexdump_ascii(MSG_INFO, "EAP-WSC: Unexpected identity",
173 identity, identity_len);

Completed in 726 milliseconds

12345678