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

/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
90 IPCThreadState::self()->restoreCallingIdentity(identity);
/frameworks/opt/net/lowpan/libandroid_net_lowpan/
H A DLowpanProvision.cpp48 LowpanProvision::LowpanProvision(const LowpanIdentity& identity, const LowpanCredential& credential) argument
49 : mIdentity(identity), mCredential(credential), mHasCredential(true)
53 LowpanProvision::LowpanProvision(const LowpanIdentity& identity) argument
54 : mIdentity(identity), mHasCredential(false)
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java29 * An identity that uniquely identifies a particular device. In this
30 * implementation, the identity is represented as a 64-bit integer encoded to a
56 * Create a verifier device identity from a long.
58 * @param identity device identity in a 64-bit integer.
61 public VerifierDeviceIdentity(long identity) { argument
62 mIdentity = identity;
63 mIdentityString = encodeBase32(identity);
67 final long identity = source.readLong();
69 mIdentity = identity;
[all...]
/frameworks/base/lowpan/java/android/net/lowpan/
H A DLowpanProvision.java40 public Builder setLowpanIdentity(@NonNull LowpanIdentity identity) { argument
41 provision.mIdentity = identity;
78 sb.append("LowpanProvision { identity => ").append(mIdentity.toString());
/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.cpp104 const mat4 identity; local
114 EXPECT_EQ(identity, m0);
118 const mat4 identity; local
128 EXPECT_EQ(identity, inverse(identity));
143 EXPECT_EQ(m1, m1*identity);
232 const mat3 identity; local
241 EXPECT_EQ(identity, m0);
245 const mat3 identity; local
255 EXPECT_EQ(identity, invers
334 const mat2 identity; local
346 const mat2 identity; local
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DDescription.cpp71 const mat3 identity; local
72 return mInputTransformMatrix != identity;
76 const mat4 identity; local
77 return mOutputTransformMatrix != identity;
81 const mat4 identity; local
82 return mColorMatrix != identity;
86 const mat4 identity; local
87 return mSaturationMatrix != 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/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiConfigurationUtilTest.java592 * objects have the different EAP identity.
605 * objects have the different EAP anonymous identity.
696 public String identity; field in class:WifiConfigurationUtilTest.EnterpriseConfig
713 public EnterpriseConfig setIdentity(String identity, String password) { argument
714 enterpriseConfig.setIdentity(identity);
716 this.identity = identity;
/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 DSupplicantStaIfaceHal.java875 * Get the eap anonymous identity for the currently configured network.
878 * @return anonymous identity string if succeeds, null otherwise.
891 * Send the eap identity response for the currently configured network.
894 * @param identity identity used for EAP-Identity
895 * @param encryptedIdentity encrypted identity used for EAP-AKA/EAP-SIM
899 @NonNull String ifaceName, @NonNull String identity, String encryptedIdentity) {
905 return networkHandle.sendNetworkEapIdentityResponse(identity, encryptedIdentity);
898 sendCurrentNetworkEapIdentityResponse( @onNull String ifaceName, @NonNull String identity, String encryptedIdentity) argument
H A DSupplicantStaNetworkHal.java512 Log.e(TAG, ssid + ": failed to set eap identity: " + eapParam);
519 Log.e(TAG, ssid + ": failed to set eap anonymous identity: " + eapParam);
1225 private boolean setEapIdentity(java.util.ArrayList<Byte> identity) { argument
1230 SupplicantStatus status = mISupplicantStaNetwork.setEapIdentity(identity);
1239 private boolean setEapAnonymousIdentity(java.util.ArrayList<Byte> identity) { argument
1244 SupplicantStatus status = mISupplicantStaNetwork.setEapAnonymousIdentity(identity);
1812 * This get anonymous identity from supplicant and returns it as a string.
1814 * @return anonymous identity string if succeeds, null otherwise.
2328 * Send eap identity response.
2330 * @param identityStr identity use
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DLocationManagerService.java1114 long identity = Binder.clearCallingIdentity();
1116 Binder.restoreCallingIdentity(identity);
1160 long identity = Binder.clearCallingIdentity();
1165 Binder.restoreCallingIdentity(identity);
1583 long identity = Binder.clearCallingIdentity();
1606 Binder.restoreCallingIdentity(identity);
1860 private boolean isThrottlingExemptLocked(Identity identity) { argument
1861 if (identity.mUid == Process.SYSTEM_UID) {
1865 if (mBackgroundThrottlePackageWhitelist.contains(identity.mPackageName)) {
1870 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 775 milliseconds