Home
last modified time | relevance | path

Searched refs:getCookie (Results 1 – 23 of 23) sorted by relevance

/aosp14/frameworks/base/core/java/android/webkit/
H A DCookieManager.java164 public abstract String getCookie(String url); in getCookie() method in CookieManager
177 public abstract String getCookie(String url, boolean privateBrowsing); in getCookie() method in CookieManager
189 public synchronized String getCookie(WebAddress uri) { in getCookie() method in CookieManager
190 return getCookie(uri.toString()); in getCookie()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/
H A DAuthSessionTest.java169 assertEquals(0, sensor.getCookie()); in testStartNewAuthSession()
175 assertTrue("Cookie must be >0", sensor.getCookie() > 0); in testStartNewAuthSession()
184 eq(sensor.getCookie()), in testStartNewAuthSession()
189 final int cookie1 = session.mPreAuthInfo.eligibleSensors.get(0).getCookie(); in testStartNewAuthSession()
192 if (cookie1 == sensor.getCookie()) { in testStartNewAuthSession()
200 final int cookie2 = session.mPreAuthInfo.eligibleSensors.get(1).getCookie(); in testStartNewAuthSession()
208 verify(sensor.impl).startPreparedClient(eq(sensor.getCookie())); in testStartNewAuthSession()
231 session.mPreAuthInfo.eligibleSensors.get(sensor.id).getCookie()); in testOnErrorReceived_lockoutError()
237 final int cookie1 = session.mPreAuthInfo.eligibleSensors.get(0).getCookie(); in testOnErrorReceived_lockoutError()
272 session.onCookieReceived(sensor.getCookie()); in testCancelReducesAppetiteForCookies()
[all …]
H A DBiometricServiceTest.java1867 final int cookie = preAuthInfo.eligibleSensors.get(0).getCookie(); in startPendingAuthSession()
1926 return preAuthInfo.eligibleSensors.get(0).getCookie(); in getCookieForCurrentSession()
1936 return requestWrapper.eligibleSensors.get(0).getCookie(); in getCookieForPendingSession()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/
H A DBiometricSchedulerOperationTest.java104 when(mInterruptableClientMonitor.getCookie()).thenReturn(cookie); in testStartWithCookie()
125 when(mInterruptableClientMonitor.getCookie()).thenReturn(goodCookie); in testNoStartWithoutCookie()
144 when(mInterruptableClientMonitor.getCookie()).thenReturn(cookie); in testSecondStartWithCookieCrashesWhenDebuggable()
158 when(mInterruptableClientMonitor.getCookie()).thenReturn(cookie); in testSecondStartWithCookieFailsNicelyWhenNotDebuggable()
171 when(mInterruptableClientMonitor.getCookie()).thenReturn(0); in startsWhenReadyAndHalAvailable()
198 when(mInterruptableClientMonitor.getCookie()).thenReturn(0); in startFailsWhenReadyButHalNotAvailable()
217 when(mInterruptableClientMonitor.getCookie()).thenReturn(0); in secondStartCrashesWhenDebuggable()
230 when(mInterruptableClientMonitor.getCookie()).thenReturn(0); in secondStartFailsNicelyWhenNotDebuggable()
244 when(mInterruptableClientMonitor.getCookie()).thenReturn(9); in doesNotStartWithCookie()
417 when(mInterruptableClientMonitor.getCookie()).thenReturn(withCookie); in markCancellingAndStart()
H A DBiometricSchedulerTest.java195 mScheduler.startPreparedClient(client1.getCookie()); in testRemovesOnlyBiometricPromptOperation_whenNullHal()
483 mScheduler.startPreparedClient(client.getCookie()); in testCancelsWhenRequestId()
535 mScheduler.startPreparedClient(client1.getCookie()); in testCancelsPending_whenAuthRequestIdsSet()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
H A DAcquisitionClient.java77 getListener().onError(getSensorId(), getCookie(), in unableToStart()
117 getListener().onError(getSensorId(), getCookie(), errorCode, vendorCode); in onErrorInternal()
151 getListener().onError(getSensorId(), getCookie(), errorCode, 0 /* vendorCode */); in cancelWithoutStarting()
H A DBaseClientMonitor.java255 public int getCookie() { in getCookie() method in BaseClientMonitor
293 + ", cookie=" + getCookie() in toString()
316 listener.onError(getSensorId(), getCookie(), errorCode, 0 /* vendorCode */); in cancelWithoutStarting()
H A DBiometricSchedulerOperation.java153 final int cookie = mClientMonitor.getCookie(); in isReadyToStart()
179 if (mClientMonitor.getCookie() != 0) { in start()
198 if (mClientMonitor.getCookie() != cookie) { in startWithCookie()
H A DHalClientMonitor.java90 return getCookie() != 0; in isBiometricPrompt()
H A DRemovalClient.java78 getListener().onError(getSensorId(), getCookie(), in onRemoved()
H A DAuthenticationClient.java308 getCookie(), in sendCancelOnly()
/aosp14/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java145 textInfos[i].getCookie(), textInfos[i].getSequence()); in onGetSuggestionsMultiple()
418 final int cookie = originalTextInfo.getCookie(); in getSplitWords()
464 final int originalCookie = originalTextInfoParams.mOriginalTextInfo.getCookie(); in reconstructSuggestions()
/aosp14/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java127 public int getCookie() { in getCookie() method in TextInfo
H A DSuggestionsInfo.java159 public int getCookie() { in getCookie() method in SuggestionsInfo
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/
H A DBiometricSensor.java161 int getCookie() { in getCookie() method in BiometricSensor
H A DPreAuthInfo.java463 + " Waiting for cookie: " + sensor.getCookie()); in numSensorsWaitingForCookie()
H A DAuthSession.java915 if (sensor.getCookie() == cookie) { in containsCookie()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/aidl/
H A DFingerprintAuthenticationClient.java392 getListener().onError(getSensorId(), getCookie(), error, 0 /* vendorCode */); in onLockoutTimed()
419 getListener().onError(getSensorId(), getCookie(), error, 0 /* vendorCode */); in onLockoutPermanent()
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/hidl/
H A DFingerprint21UdfpsMock.java366 final int cookie = client.getCookie(); in run()
/aosp14/frameworks/base/core/java/android/widget/
H A DSpellChecker.java372 if (suggestionsInfo == null || suggestionsInfo.getCookie() != mCookie) { in onGetSuggestionsInternal()
/aosp14/frameworks/base/core/api/
H A Dsystem-current.txt17428 method public abstract String getCookie(String, boolean);
17429 method public String getCookie(android.net.WebAddress);
H A Dcurrent.txt56768 method public int getCookie();
56790 method public int getCookie();
57031 method public abstract String getCookie(String);
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...