/external/wpa_supplicant_8/src/eap_peer/ |
eap_pax.c | 51 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);
|
eap_psk.c | 36 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");
|
eap_sake.c | 17 enum { IDENTITY, CHALLENGE, CONFIRM, SUCCESS, FAILURE } state; 40 case IDENTITY: 41 return "IDENTITY"; 71 const u8 *identity, *password; local 84 data->state = IDENTITY; 86 identity = eap_get_config_identity(sm, &identity_len); 87 if (identity) { 93 os_memcpy(data->peerid, identity, identity_len); 151 if (data->state != IDENTITY) { 156 wpa_printf(MSG_DEBUG, "EAP-SAKE: Received Request/Identity"); [all...] |
/frameworks/base/libs/hwui/ |
Readback.cpp | 172 .setTransform(Matrix4::identity(), TransformFlags::None)
|
/frameworks/base/libs/hwui/tests/common/ |
TestUtils.cpp | 58 renderTarget, Matrix4::identity().data);
|
/frameworks/base/services/core/java/com/android/server/ |
VibratorService.java | 336 long identity = Binder.clearCallingIdentity(); local 376 Binder.restoreCallingIdentity(identity); 395 long identity = Binder.clearCallingIdentity(); local 409 Binder.restoreCallingIdentity(identity);
|
/libcore/ojluni/src/lambda/java/java/lang/invoke/ |
MethodHandles.java | 118 MethodHandle identity(Class<?> type) { return null; } method in class:MethodHandles
|
/libcore/ojluni/src/main/java/java/util/stream/ |
DoubleStream.java | 324 * elements of this stream, using the provided identity value and an 329 * double result = identity; 337 * <p>The {@code identity} value must be an identity for the accumulator 339 * {@code accumulator.apply(identity, x)} is equal to {@code x}. 364 * @param identity the identity value for the accumulating function 375 double reduce(double identity, DoubleBinaryOperator op); [all...] |
ReferencePipeline.java | 474 public final P_OUT reduce(final P_OUT identity, final BinaryOperator<P_OUT> accumulator) { 475 return evaluate(ReduceOps.makeRef(identity, accumulator, accumulator)); 484 public final <R> R reduce(R identity, BiFunction<R, ? super P_OUT, R> accumulator, BinaryOperator<R> combiner) { 485 return evaluate(ReduceOps.makeRef(identity, accumulator, combiner));
|
Collectors.java | 639 * provided identity. 648 * @param identity the identity value for the reduction (also, the value 657 reducing(T identity, BinaryOperator<T> op) { 659 boxSupplier(identity), 667 private static <T> Supplier<T[]> boxSupplier(T identity) { 668 return () -> (T[]) new Object[] { identity }; 746 * @param identity the identity value for the reduction (also, the value 756 Collector<T, ?, U> reducing(U identity, [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
iter_fold_if_impl.hpp | 82 >::template result_< Iterator,State,BackwardOp, identity<Iterator> > impl_;
|
/system/connectivity/shill/ |
eap_credentials_unittest.cc | 82 void SetIdentity(const string& identity) { 83 eap_.identity_ = identity; 152 EXPECT_EQ(kIdentity, eap_.identity()); 159 // Identity alone is not enough. 222 // Clear identity. 290 EXPECT_EQ(kIdentity, eap_.identity());
|
/external/curl/lib/vauth/ |
krb5_sspi.c | 118 /* Populate our identity structure */ 119 result = Curl_create_sspi_identity(userp, passwdp, &krb5->identity); 123 /* Allow proper cleanup of the identity structure */ 124 krb5->p_identity = &krb5->identity; 383 message size and authorization identity including the 0x00 based 385 identity is not terminated with the zero-valued (%x00) octet." it seems 484 /* Free our identity */
|
/external/eigen/test/ |
cwiseop.cpp | 84 identity = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> local 85 ::Identity(rows, rows); 107 VERIFY(identity.isIdentity());
|
/external/eigen/test/eigen2/ |
eigen2_cwiseop.cpp | 37 identity = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> local 38 ::Identity(rows, rows); 60 VERIFY(identity.isIdentity());
|
/external/guava/guava-tests/test/com/google/common/base/ |
OptionalTest.java | 164 assertEquals(Optional.absent(), Optional.absent().transform(Functions.identity())); 169 assertEquals(Optional.of("a"), Optional.of("a").transform(Functions.identity()));
|
/external/skia/tests/ |
MatrixTest.cpp | 69 SkMatrix identity; local 70 identity.reset(); 71 return nearly_equal(m, identity); 165 SkMatrix identity; local 166 identity.reset(); 167 REPORTER_ASSERT(reporter, SK_Scalar1 == identity.getMinScale()); 168 REPORTER_ASSERT(reporter, SK_Scalar1 == identity.getMaxScale()); 169 success = identity.getMinMaxScales(scales); 297 // identity 502 // identity [all...] |
/external/valgrind/helgrind/tests/ |
tc15_laog_lockdel.stderr.exp | 49 Free 2 and re-allocate it. This gives it a new identity,
|
/frameworks/base/services/core/java/com/android/server/notification/ |
ScheduleConditionProvider.java | 288 long identity = Binder.clearCallingIdentity(); local 308 Binder.restoreCallingIdentity(identity);
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
ForEachOpTest.java | 105 terminal(s -> s.map(LambdaTestHelpers.identity()), terminalFunc). 126 terminal(s -> s.map(LambdaTestHelpers.identity()), terminalFunc).
|
MapOpTest.java | 60 exerciseOps(countTo(0), s -> s.map(LambdaTestHelpers.identity()), countTo(0)); 61 exerciseOps(countTo(1000), s -> s.map(LambdaTestHelpers.identity()), countTo(1000));
|
/packages/services/Mms/src/com/android/mms/service/ |
DownloadRequest.java | 115 final long identity = Binder.clearCallingIdentity(); local 191 Binder.restoreCallingIdentity(identity);
|
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLSocketImpl.java | 494 public int clientPSKKeyRequested(String identityHint, byte[] identity, byte[] key) { 495 return sslParameters.clientPSKKeyRequested(identityHint, identity, key, this); 500 public int serverPSKKeyRequested(String identityHint, String identity, byte[] key) { 501 return sslParameters.serverPSKKeyRequested(identityHint, identity, key, this); [all...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageInstallerSession.java | 275 final long identity = Binder.clearCallingIdentity(); local 281 Binder.restoreCallingIdentity(identity); 443 final long identity = Binder.clearCallingIdentity(); local 447 Binder.restoreCallingIdentity(identity); 1093 final long identity = Binder.clearCallingIdentity(); local [all...] |
/external/mesa3d/src/gallium/drivers/svga/svgadump/ |
svga_dump.c | 43 switch((*cmd).identity.type) { 45 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_FLOAT1\n"); 48 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_FLOAT2\n"); 51 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_FLOAT3\n"); 54 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_FLOAT4\n"); 57 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_D3DCOLOR\n"); 60 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_UBYTE4\n"); 63 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_SHORT2\n"); 66 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_SHORT4\n"); 69 _debug_printf("\t\t.identity.type = SVGA3D_DECLTYPE_UBYTE4N\n") [all...] |