Searched refs:identity (Results 101 - 125 of 521) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/src/radius/
H A Dradius_server.h80 * eap_fast_a_id - EAP-FAST authority identity (A-ID)
157 * server_id - Server identity
178 * @identity: User identity
179 * @identity_len: identity buffer length in octets
180 * @phase2: Whether this is for Phase 2 identity
189 int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius_server.h80 * eap_fast_a_id - EAP-FAST authority identity (A-ID)
157 * server_id - Server identity
178 * @identity: User identity
179 * @identity_len: identity buffer length in octets
180 * @phase2: Whether this is for Phase 2 identity
189 int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
/external/wpa_supplicant_8/wpa_supplicant/tests/
H A Dlink_test.c73 hostapd_get_eap_user(const struct hostapd_bss_config *conf, const u8 *identity, argument
/external/chromium-libpac/
H A DAndroid.mk6 # Set up the target identity
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dchained_compiled_file_system.py42 def __init__(self, compiled_fs_chain, identity):
47 self._identity = identity
/external/chromium_org/remoting/webapp/
H A Dthird_party_token_fetcher.js47 if (chrome.identity) {
166 * Fetch a token from a token server using the identity.launchWebAuthFlow API.
171 chrome.identity.launchWebAuthFlow(
H A Dhost_controller.js188 var hostOwnerEmail = remoting.identity.getCachedEmail();
255 remoting.identity.getCachedEmail(),
309 remoting.identity.callWithToken(
326 remoting.identity.callWithToken(
558 remoting.identity.getEmail(
571 remoting.identity.callWithToken(connectSignalingWithToken, onError);
/external/chromium_org/third_party/webrtc/base/
H A Dbind.h.pump51 template <class T> struct identity { typedef T type; };
101 typename detail::identity<P$j>::type p$j]]) {
113 typename detail::identity<P$j>::type p$j]]) {
125 typename detail::identity<P$j>::type p$j]]) {
H A Dsslstreamadapterhelper.cc26 void SSLStreamAdapterHelper::SetIdentity(SSLIdentity* identity) { argument
28 identity_.reset(identity);
H A Dsslidentity_unittest.cc191 rtc::scoped_ptr<SSLIdentity> identity(
193 EXPECT_TRUE(identity);
194 EXPECT_EQ(kCERT_PEM, identity->certificate().ToPEMString());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DSectionAnnotator.java104 public void setItemIdentity(int itemOffset, String identity) { argument
105 itemIdentities.put(itemOffset, identity);
/external/valgrind/main/helgrind/tests/
H A Dtc24_nonzero_sem.c49 static sem_t* my_sem_init (char* identity, int pshared, unsigned count) argument
64 sprintf(name, "anonsem_%s_pid%d", identity, (int)getpid());
/external/wpa_supplicant_8/hostapd/src/eapol_auth/
H A Deapol_auth_sm.h65 int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
84 const char *identity, const char *radius_cui);
/external/wpa_supplicant_8/src/eapol_auth/
H A Deapol_auth_sm.h65 int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
84 const char *identity, const char *radius_cui);
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_auth/
H A Deapol_auth_sm.h65 int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
84 const char *identity, const char *radius_cui);
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/gl-matrix/
H A Dmat2-spec.js24 var out, matA, matB, identity, result;
36 identity = [1, 0,
42 it("should return a 4 element array initialized to a 2x2 identity matrix", function() { expect(result).toBeEqualish(identity); });
56 describe("identity", function() {
57 beforeEach(function() { result = mat2.identity(out); });
58 it("should place values into out", function() { expect(result).toBeEqualish(identity); });
/external/eigen/unsupported/test/
H A Dmatrix_exponential.cpp105 MatrixType m1(rows, cols), m2(rows, cols), identity = MatrixType::Identity(rows, cols); local
113 std::cout << "randomTest: error funm = " << relerr(identity, m2);
114 VERIFY(identity.isApprox(m2, static_cast<RealScalar>(tol)));
117 std::cout << " error expm = " << relerr(identity, m2) << "\n";
118 VERIFY(identity.isApprox(m2, static_cast<RealScalar>(tol)));
/external/chromium_org/chrome/browser/ui/search/
H A Dsearch_ipc_router.h77 // Called when the SearchBox wants to verify the signed-in Chrome identity
78 // against the provided |identity|. Will make a round-trip to the browser
80 // Calls SendChromeIdentityCheckResult with true if both the identity
83 // checking both the identity and the user's sync state.
84 virtual void OnChromeIdentityCheck(const base::string16& identity) = 0;
129 // Tells the renderer about the result of the Chrome identity check.
130 void SendChromeIdentityCheckResult(const base::string16& identity,
210 const base::string16& identity) const;
/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/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_fast.c61 u8 *identity; /* from PAC-Opaque */ member in struct:eap_fast_data
131 u8 *identity = NULL; local
214 identity = pos + 2;
230 if (identity) {
232 "PAC-Opaque", identity, identity_len);
233 os_free(data->identity);
234 data->identity = os_malloc(identity_len);
235 if (data->identity) {
236 os_memcpy(data->identity, identity, identity_le
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_fast.c61 u8 *identity; /* from PAC-Opaque */ member in struct:eap_fast_data
131 u8 *identity = NULL; local
214 identity = pos + 2;
230 if (identity) {
232 "PAC-Opaque", identity, identity_len);
233 os_free(data->identity);
234 data->identity = os_malloc(identity_len);
235 if (data->identity) {
236 os_memcpy(data->identity, identity, identity_le
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_fast.c61 u8 *identity; /* from PAC-Opaque */ member in struct:eap_fast_data
131 u8 *identity = NULL; local
214 identity = pos + 2;
230 if (identity) {
232 "PAC-Opaque", identity, identity_len);
233 os_free(data->identity);
234 data->identity = os_malloc(identity_len);
235 if (data->identity) {
236 os_memcpy(data->identity, identity, identity_le
[all...]
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dsearchbox_api.js142 this.checkIsUserSignedIntoChromeAs = function(identity) {
143 CheckIsUserSignedInToChromeAs(identity);
/external/chromium_org/chrome/renderer/searchbox/
H A Dsearchbox.h41 void CheckIsUserSignedInToChromeAs(const base::string16& identity);
120 void OnChromeIdentityCheckResult(const base::string16& identity,
/external/chromium_org/content/common/
H A Dfont_config_ipc_linux.cc97 SkStream* FontConfigIPC::openStream(const FontIdentity& identity) { argument
101 request.WriteUInt32(identity.fID);

Completed in 5116 milliseconds

1234567891011>>