Searched defs:identity (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/net/
H A DPskKeyManager.java45 * handshake the server can provide a <em>PSK identity hint</em> to the client, and the client can
46 * provide a <em>PSK identity</em> to the server. The contents of these two pieces of information
49 * <p><em>NOTE: Both the PSK identity hint and the PSK identity are transmitted in cleartext.
57 * <li>Server replies, optionally providing a PSK identity hint to client.</li>
59 * <li>Client provides a PSK identity of the chosen key to server.</li>
65 * know the key to learn which PSK identity hints or PSK identities are supported. If this is a
68 * where a key is available -- making it appear to the attacker that all PSK identity hints and PSK
76 * <li>128 bytes for PSK identity and PSK identity hin
205 getKey(String identityHint, String identity, Socket socket) argument
223 getKey(String identityHint, String identity, SSLEngine engine) argument
[all...]
/frameworks/native/services/sensorservice/
H A DBatteryService.cpp61 int64_t identity = IPCThreadState::self()->clearCallingIdentity(); local
63 IPCThreadState::self()->restoreCallingIdentity(identity);
70 int64_t identity = IPCThreadState::self()->clearCallingIdentity(); local
72 IPCThreadState::self()->restoreCallingIdentity(identity);
80 int64_t identity = IPCThreadState::self()->clearCallingIdentity(); local
89 IPCThreadState::self()->restoreCallingIdentity(identity);
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.cpp136 const mat4 identity; local
146 // set to identity, errp, errd, errt ([0] for simulation only)
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java27 * An identity that uniquely identifies a particular device. In this
28 * implementation, the identity is represented as a 64-bit integer encoded to a
54 * Create a verifier device identity from a long.
56 * @param identity device identity in a 64-bit integer.
59 public VerifierDeviceIdentity(long identity) { argument
60 mIdentity = identity;
61 mIdentityString = encodeBase32(identity);
65 final long identity = source.readLong();
67 mIdentity = identity;
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DDescription.cpp86 const mat4 identity; local
88 mColorMatrixEnabled = (mtx != identity);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DWifiConfigurationHelper.java112 * @param identity The identity or null
113 * @param anonymousIdentity The anonymous identity or null
119 Integer phase2, String identity, String anonymousIdentity, String caCert,
129 if (identity == null) identity = "";
137 config.enterpriseConfig.setIdentity(identity);
162 * "identity", "ananymous_identity", "ca_cert", and "client_cert" are also required. Lastly,
216 String identity = null;
217 if (jsonConfig.has("identity")) {
118 createEapConfig(String ssid, String password, int eapMethod, Integer phase2, String identity, String anonymousIdentity, String caCert, String clientCert) argument
[all...]
/frameworks/native/cmds/flatland/
H A DRenderers.cpp78 float identity[16] = { local
109 glUniformMatrix4fv(mObjToNdcUniformLoc, 1, GL_FALSE, identity);
110 glUniformMatrix4fv(mUVToInterpUniformLoc, 1, GL_FALSE, identity);
/frameworks/native/libs/math/tests/
H A Dmat_test.cpp103 const mat4 identity; local
113 EXPECT_EQ(identity, m0);
117 const mat4 identity; local
127 EXPECT_EQ(identity, inverse(identity));
142 EXPECT_EQ(m1, m1*identity);
231 const mat3 identity; local
240 EXPECT_EQ(identity, m0);
244 const mat3 identity; local
254 EXPECT_EQ(identity, invers
333 const mat2 identity; local
345 const mat2 identity; local
[all...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiConfigurationUtilTest.java357 public String identity; field in class:WifiConfigurationUtilTest.EnterpriseConfig
374 public EnterpriseConfig setIdentity(String identity, String password) { argument
375 enterpriseConfig.setIdentity(identity);
377 this.identity = identity;
/frameworks/base/libs/hwui/
H A DMatrix.cpp40 const Matrix4& Matrix4::identity() { function in class:android::uirenderer::Matrix4
222 // A "pure translate" matrix can be identity or translation
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java54 public static final String IDENTITY_KEY = "identity";
358 // wpa_supplicant can update the anonymous identity for these kinds of networks after
488 * Set the identity
489 * @param identity
491 public void setIdentity(String identity) { argument
492 setFieldValue(IDENTITY_KEY, identity, "");
496 * Get the identity
497 * @return the identity
504 * Set anonymous identity. This is used as the unencrypted identity wit
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DColorSpace.java1215 if (source.equals(destination)) return Connector.identity(source);
1267 if (source.isSrgb()) return Connector.identity(source);
1982 * their transfer functions are the identity function: \(f(x) = x\).
2523 gamma == 1.0 ? DoubleUnaryOperator.identity() :
2525 gamma == 1.0 ? DoubleUnaryOperator.identity() :
3677 * Returns the identity connector for a given color space.
3684 static Connector identity(ColorSpace source) { method in class:ColorSpace.Connector
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSupplicantStaNetworkHal.java494 Log.e(TAG, ssid + ": failed to set eap identity: " + eapParam);
501 Log.e(TAG, ssid + ": failed to set eap anonymous identity: " + eapParam);
1204 private boolean setEapIdentity(java.util.ArrayList<Byte> identity) { argument
1209 SupplicantStatus status = mISupplicantStaNetwork.setEapIdentity(identity);
1218 private boolean setEapAnonymousIdentity(java.util.ArrayList<Byte> identity) { argument
1223 SupplicantStatus status = mISupplicantStaNetwork.setEapAnonymousIdentity(identity);
1791 * This get anonymous identity from supplicant and returns it as a string.
1793 * @return anonymous identity string if succeeds, null otherwise.
2285 * Send eap identity response.
2292 ArrayList<Byte> identity
2300 sendNetworkEapIdentityResponse(ArrayList<Byte> identity) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java1114 long identity = Binder.clearCallingIdentity();
1116 Binder.restoreCallingIdentity(identity);
1146 long identity = Binder.clearCallingIdentity();
1151 Binder.restoreCallingIdentity(identity);
1560 long identity = Binder.clearCallingIdentity();
1582 Binder.restoreCallingIdentity(identity);
1816 private boolean isThrottlingExemptLocked(Identity identity) { argument
1817 if (identity.mUid == Process.SYSTEM_UID) {
1821 if (mBackgroundThrottlePackageWhitelist.contains(identity.mPackageName)) {
1826 if (identity
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 286 milliseconds