/frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/ |
D | SyntheticPasswordTests.java | 111 .getResponseCode()); in testPasswordMigration() 118 .getResponseCode()); in testPasswordMigration() 142 .getResponseCode()); in testSyntheticPasswordChangeCredential() 153 .getResponseCode()); in testSyntheticPasswordVerifyCredential() 157 .getResponseCode()); in testSyntheticPasswordVerifyCredential() 176 .getResponseCode()); in testSyntheticPasswordClearCredential() 189 .getResponseCode()); in testSyntheticPasswordChangeCredentialKeepsAuthSecret() 205 .getResponseCode()); in testSyntheticPasswordVerifyPassesPrimaryUserAuthSecret() 216 .getResponseCode()); in testSecondaryUserDoesNotPassAuthSecret() 270 .getResponseCode()); in testManagedProfileUnifiedChallengeMigration() [all …]
|
D | CachedSyntheticPasswordTests.java | 74 .getResponseCode()); in testSyntheticPasswordClearCredentialUntrusted() 93 .getResponseCode()); in testSyntheticPasswordChangeCredentialUntrusted() 108 .getResponseCode()); in testUntrustedCredentialChangeMaintainsAuthSecret() 135 .getResponseCode()); in testUntrustedCredentialChangeBlockedIfSpNotCached() 138 .getResponseCode()); in testUntrustedCredentialChangeBlockedIfSpNotCached()
|
D | LockSettingsServiceTests.java | 120 .getResponseCode()); in testManagedProfileUnifiedChallenge() 174 .getResponseCode()); in testManagedProfileSeparateChallenge() 180 MANAGED_PROFILE_USER_ID).getResponseCode()); in testManagedProfileSeparateChallenge() 191 MANAGED_PROFILE_USER_ID).getResponseCode()); in testManagedProfileSeparateChallenge() 215 assertEquals(GateKeeperResponse.RESPONSE_OK, response.getResponseCode()); in assertVerifyCredentials() 233 incorrectType, challenge, userId).getResponseCode()); in assertVerifyCredentials() 236 type, challenge, userId).getResponseCode()); in assertVerifyCredentials()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | VerifyCredentialResponse.java | 120 public int getResponseCode() { in getResponseCode() method in VerifyCredentialResponse 139 int responseCode = gateKeeperResponse.getResponseCode(); in fromGateKeeperResponse()
|
D | LockPatternUtils.java | 358 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyCredential() 360 } else if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_RETRY) { in verifyCredential() 377 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in checkCredential() 379 } else if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_RETRY) { in checkCredential() 464 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyTiedProfileChallenge() 466 } else if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_RETRY) { in verifyTiedProfileChallenge()
|
/frameworks/av/media/mtp/ |
D | MtpResponsePacket.h | 43 inline MtpResponseCode getResponseCode() const { return getContainerCode(); } in getResponseCode() function
|
D | MtpDevice.cpp | 712 return mResponse.getResponseCode() == MTP_RESPONSE_OK; in readData() 894 return mResponse.getResponseCode(); in readResponse() 903 return mResponse.getResponseCode(); in readResponse()
|
D | MtpServer.cpp | 224 ALOGV("sending response %04X", mResponse.getResponseCode()); in run()
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
D | URLFetcher.java | 107 if (connection.getResponseCode() != HttpURLConnection.HTTP_OK) { in getWebContentFromUrl() 108 Log.e(TAG, "The responses code is not 200 but " + connection.getResponseCode()); in getWebContentFromUrl()
|
/frameworks/base/obex/javax/obex/ |
D | Operation.java | 160 int getResponseCode() throws IOException; in getResponseCode() method
|
D | HeaderSet.java | 703 public int getResponseCode() throws IOException { in getResponseCode() method in HeaderSet
|
D | ClientSession.java | 218 op.getResponseCode(); in delete()
|
D | ServerOperation.java | 696 public int getResponseCode() throws IOException { in getResponseCode() method in ServerOperation
|
D | ClientOperation.java | 209 public synchronized int getResponseCode() throws IOException { in getResponseCode() method in ClientOperation
|
/frameworks/base/services/core/java/com/android/server/locksettings/ |
D | SyntheticPasswordManager.java | 449 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in newSyntheticPasswordAndSid() 470 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in newSidForUser() 641 if (response.getResponseCode() != GateKeeperResponse.RESPONSE_OK) { in createPasswordBasedSyntheticPassword() 840 if (result.gkResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in unwrapPasswordBasedSyntheticPassword() 849 int responseCode = response.getResponseCode(); in unwrapPasswordBasedSyntheticPassword() 855 if (reenrollResponse.getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in unwrapPasswordBasedSyntheticPassword() 911 if (response.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK || in unwrapTokenBasedSyntheticPassword() 997 int responseCode = response.getResponseCode(); in verifyChallenge() 1003 if (response.getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in verifyChallenge()
|
D | LockSettingsService.java | 1504 if (vcr.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in setUserKeyProtection() 1506 + vcr.getResponseCode()); in setUserKeyProtection() 1639 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in doVerifyCredential() 1671 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in doVerifyCredential() 1698 if (parentResponse.getResponseCode() != VerifyCredentialResponse.RESPONSE_OK) { in verifyTiedProfileChallenge() 1785 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in verifyCredential() 1827 } else if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_RETRY) { in verifyCredential() 1904 .getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in checkVoldPassword() 1915 .getResponseCode() == GateKeeperResponse.RESPONSE_OK) { in checkVoldPassword() 2370 if (response.getResponseCode() == VerifyCredentialResponse.RESPONSE_OK) { in spBasedDoVerifyCredential() [all …]
|
/frameworks/base/core/java/android/service/gatekeeper/ |
D | GateKeeperResponse.java | 127 public int getResponseCode() { in getResponseCode() method in GateKeeperResponse
|
/frameworks/base/services/core/java/com/android/server/location/ |
D | GpsXtraDownloader.java | 130 int statusCode = connection.getResponseCode(); in doDownload()
|
/frameworks/base/media/java/android/media/ |
D | Media2HTTPConnection.java | 207 response = mConnection.getResponseCode(); in seekTo()
|
D | MediaHTTPConnection.java | 212 response = mConnection.getResponseCode(); in seekTo()
|
/frameworks/base/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/ |
D | CaptivePortalLoginActivity.java | 263 httpResponseCode = urlConnection.getResponseCode(); in testForCaptivePortal()
|
/frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/ |
D | CaptivePortalLoginActivity.java | 359 httpResponseCode = urlConnection.getResponseCode(); in testForCaptivePortal()
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | NetworkMonitor.java | 1093 httpResponseCode = urlConnection.getResponseCode(); in sendHttpProbe()
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 43032 HSPLcom/android/okhttp/internal/huc/HttpURLConnectionImpl;->getResponseCode()I 43071 HSPLcom/android/okhttp/internal/huc/HttpsURLConnectionImpl;->getResponseCode()I
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 42948 method public int getResponseCode() throws java.io.IOException;
|