HomeSort by relevance Sort by last modified time
    Searched refs:identity (Results 251 - 275 of 687) sorted by null

<<11121314151617181920>>

  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Queue.java 178 * @param identity If true, == comparison will be used. If false, .equals() comparison will be used.
180 public int indexOf (T value, boolean identity) {
184 if (identity || value == null) {
209 * @param identity If true, == comparison will be used. If false, .equals() comparison will be used.
211 public boolean removeValue (T value, boolean identity) {
212 int index = indexOf(value, identity);
  /external/webrtc/talk/app/webrtc/
dtlsidentitystore_unittest.cc 54 void OnSuccess(rtc::scoped_ptr<rtc::SSLIdentity> identity) override {
112 // Verifies that the callback is async when a free identity is ready.
127 // Verifies that the callback is async when a free identity is ready.
webrtcsessiondescriptionfactory.cc 44 " failed because DTLS identity request failed";
102 rtc::scoped_ptr<rtc::SSLIdentity> identity(
104 SignalCertificateReady(rtc::RTCCertificate::Create(std::move(identity)));
108 rtc::scoped_ptr<rtc::SSLIdentity> identity) {
109 SignalCertificateReady(rtc::RTCCertificate::Create(std::move(identity)));
197 LOG(LS_VERBOSE) << "DTLS-SRTP enabled; sending DTLS identity request (key "
200 // Request identity. This happens asynchronously, so the caller will have a
234 // Fail any requests that were asked for before identity generation completed.
500 LOG(LS_ERROR) << "Async identity request failed: error = " << error;
  /external/webrtc/webrtc/base/
opensslstreamadapter.h 64 void SetIdentity(SSLIdentity* identity) override;
  /external/wpa_supplicant_8/src/eap_peer/
eap_ikev2.c 61 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);
  /external/wpa_supplicant_8/src/eap_server/
eap.h 96 int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
eap_server.c 152 * @identity: Identity (User-Name) of the user
153 * @identity_len: Length of identity in bytes
158 * selected based on the specified identity. sm->user and
162 int eap_user_get(struct eap_sm *sm, const u8 *identity, size_t identity_len,
178 if (sm->eapol_cb->get_eap_user(sm->eapol_ctx, identity,
228 if (sm->eap_if.eapRestart && !sm->eap_server && sm->identity) {
230 * Need to allow internal Identity method to be used instead
853 * EAP Identity exchange. Use keyName-NAI as the user identity
    [all...]
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm_i.h 154 u8 *identity; member in struct:eapol_state_machine
160 struct wpabuf *radius_cui; /* Chargeable-User-Identity */
  /frameworks/opt/telephony/src/java/android/telephony/
SmsMessage.java 796 final long identity = Binder.clearCallingIdentity(); local
801 Binder.restoreCallingIdentity(identity);
828 final long identity = Binder.clearCallingIdentity(); local
833 Binder.restoreCallingIdentity(identity);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IsimUiccRecords.java 60 private String mIsimImpi; // IMS private user identity
62 private String[] mIsimImpu; // IMS public user identity(s)
221 for (byte[] identity : impuList) {
222 String impu = isimTlvToString(identity);
259 for (byte[] identity : pcscflist) {
260 String pcscf = isimTlvToString(identity);
385 * Return the IMS private user identity (IMPI).
387 * @return the IMS private user identity string, or null if not available
407 * @return an array of IMS public user identity strings, or null if not available
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
iter_fold_if.hpp 76 , identity<BackwardPredicate>
  /cts/tests/openglperf2/jni/reference/scene/glowing/
GlowingScene.cpp 188 mFboModelMatrix->identity();
190 mFboModelMatrix->identity();
  /external/curl/lib/vauth/
ntlm_sspi.c 91 /* Populate our identity structure */
92 result = Curl_create_sspi_identity(userp, passwdp, &ntlm->identity);
96 /* Allow proper cleanup of the identity structure */
97 ntlm->p_identity = &ntlm->identity;
302 /* Free our identity */
  /external/eigen/test/
integer_types.cpp 72 SquareMatrixType identity = SquareMatrixType::Identity(rows, rows), local
130 VERIFY_IS_APPROX(identity * m1, m1);
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
OptionalTest.java 161 assertEquals(Optional.absent(), Optional.absent().transform(Functions.identity()));
166 assertEquals(Optional.of("a"), Optional.of("a").transform(Functions.identity()));
  /external/opencv3/modules/videostab/src/cuda/
global_motion.cu 63 dmask, thrust::not1(thrust::identity<uchar>()))
  /external/v8/test/mjsunit/es6/
typedarray-proto.js 6 // identity.
  /external/wpa_supplicant_8/src/ap/
authsrv.c 52 static int hostapd_radius_get_eap_user(void *ctx, const u8 *identity,
60 eap_user = hostapd_get_eap_user(ctx, identity, identity_len, phase2);
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
KeyEventDispatcher.java 177 final long identity = Binder.clearCallingIdentity(); local
182 Binder.restoreCallingIdentity(identity);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
Striped64.java 103 final void reset(long identity) {
104 U.putLongVolatile(this, VALUE, identity);
  /libcore/ojluni/src/main/java/java/util/stream/
Stream.java 557 * elements of this stream, using the provided identity value and an
562 * T result = identity;
570 * <p>The {@code identity} value must be an identity for the accumulator
572 * {@code accumulator.apply(identity, t)} is equal to {@code t}.
597 * @param identity the identity value for the accumulating function
604 T reduce(T identity, BinaryOperator<T> accumulator);
648 * elements of this stream, using the provided identity, accumulation and
651 * U result = identity;
    [all...]
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
SequentialOpTest.java 54 Function<Integer, Integer> id = LambdaTestHelpers.identity();
100 Function<Integer, Integer> id = LambdaTestHelpers.identity();
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
unit_test_suite_impl.hpp 30 #include <boost/mpl/identity.hpp>
372 void operator()( mpl::identity<TestType> )
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ColorSpaceMatrix.java 28 identity(); method
50 * set matrix to identity
52 public void identity() { method in class:ColorSpaceMatrix
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java 150 // Clear calling identity as we may be handling an IPC.
151 final long identity = Binder.clearCallingIdentity();
162 Binder.restoreCallingIdentity(identity);

Completed in 1783 milliseconds

<<11121314151617181920>>