Home
last modified time | relevance | path

Searched refs:getSessionId (Results 1 – 25 of 74) sorted by relevance

123

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/log/
H A DSessionTrackerTest.java108 assertNotNull(mSessionTracker.getSessionId(SESSION_KEYGUARD)); in testOnStartShowingKeyguard()
124 assertNull(mSessionTracker.getSessionId(sessionType)); in testNoSessions()
138 assertNotNull(mSessionTracker.getSessionId(SESSION_BIOMETRIC_PROMPT)); in testBiometricPromptShowing()
156 assertNull(mSessionTracker.getSessionId(SESSION_BIOMETRIC_PROMPT)); in testBiometricPromptDismissed()
173 assertNotNull(mSessionTracker.getSessionId(SESSION_KEYGUARD)); in testKeyguardSessionOnDeviceStartsSleeping()
191 final InstanceId firstSessionId = mSessionTracker.getSessionId(SESSION_KEYGUARD); in testKeyguardSessionOnDeviceStartsSleepingTwiceInARow_startsNewKeyguardSession()
198 final InstanceId secondSessionId = mSessionTracker.getSessionId(SESSION_KEYGUARD); in testKeyguardSessionOnDeviceStartsSleepingTwiceInARow_startsNewKeyguardSession()
219 assertNotNull(mSessionTracker.getSessionId(SESSION_KEYGUARD)); in testKeyguardSessionOnKeyguardShowingChange()
239 assertNull(mSessionTracker.getSessionId(SESSION_KEYGUARD)); in testKeyguardSessionOnKeyguardNotShowing()
/aosp14/frameworks/base/core/java/android/net/
H A DVpnProfileState.java86 public String getSessionId() { in getSessionId() method in VpnProfileState
175 resultJoiner.add("SessionId: " + getSessionId()); in toString()
186 && Objects.equals(getSessionId(), that.getSessionId()) in equals()
193 return Objects.hash(getState(), getSessionId(), isAlwaysOn(), isLockdownEnabled()); in hashCode()
/aosp14/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/wear/
H A DPackageInstallerImpl.java70 .getSessionId() + " & keeping " + mySessions.get(i).getSessionId()); in PackageInstallerImpl()
132 session = mPackageInstaller.openSession(sessionInfo.getSessionId()); in install()
146 getCommitCallback(packageName, sessionInfo.getSessionId(), callback)); in install()
149 cancelSession(sessionInfo.getSessionId(), packageName); in install()
186 session = mPackageInstaller.openSession(sessionInfo.getSessionId()); in getSession()
/aosp14/frameworks/base/core/tests/coretests/src/android/view/autofill/
H A DAutofillIdTest.java107 assertThat(id.getSessionId()).isEqualTo(666); in testVirtual_withSession()
116 assertThat(clone.getSessionId()).isEqualTo(666); in testVirtual_withSession()
138 assertThat(idWithoutSession.getSessionId()).isEqualTo(NO_SESSION); in testVirtual_Long_withoutSession()
151 assertThat(idWithoutSession.getSessionId()).isEqualTo(NO_SESSION); in testVirtual_Int_withoutSession()
165 assertThat(id.getSessionId()).isEqualTo(NO_SESSION); in testSetResetSession()
355 assertThat(id.getSessionId()).isEqualTo(expectSessionId); in assertNonVirtual()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBiometricUnlockController.java417 .ifPresent(event -> UI_EVENT_LOGGER.log(event, getSessionId())); in onBiometricAuthenticated()
694 .ifPresent(event -> UI_EVENT_LOGGER.log(event, getSessionId())); in onBiometricAuthFailed()
722 UI_EVENT_LOGGER.log(BiometricUiEvent.BIOMETRIC_BOUNCER_SHOWN, getSessionId()); in onBiometricAuthFailed()
745 .ifPresent(event -> UI_EVENT_LOGGER.log(event, getSessionId())); in onBiometricError()
753 UI_EVENT_LOGGER.log(BiometricUiEvent.BIOMETRIC_BOUNCER_SHOWN, getSessionId()); in onBiometricError()
922 private @Nullable InstanceId getSessionId() { in getSessionId() method in BiometricUnlockController
923 return mSessionTracker.getSessionId(SESSION_KEYGUARD); in getSessionId()
/aosp14/frameworks/base/apex/blobstore/service/java/com/android/server/blob/
H A DBlobStoreManagerService.java319 getUserSessionsLocked(userId).put(session.getSessionId(), session); in addSessionForUserLocked()
320 addActiveBlobIdLocked(session.getSessionId()); in addSessionForUserLocked()
687 .remove(session.getSessionId()); in onStateChangedInternal()
710 .remove(session.getSessionId()); in onStateChangedInternal()
721 blob = new BlobMetadata(mContext, session.getSessionId(), in onStateChangedInternal()
753 if (session.getSessionId() == blob.getBlobId()) { in onStateChangedInternal()
759 if (session.getSessionId() != blob.getBlobId()) { in onStateChangedInternal()
763 .remove(session.getSessionId()); in onStateChangedInternal()
1157 deletedBlobIds.add(blobStoreSession.getSessionId()); in handleIdleMaintenanceLocked()
1170 mActiveBlobIds.remove(blobStoreSession.getSessionId()); in deleteSessionLocked()
[all …]
/aosp14/frameworks/base/telecomm/java/android/telecom/
H A DLog.java251 public static String getSessionId() { in getSessionId() method in Log
256 return getSessionManager().getSessionId(); in getSessionId()
359 sEventManager = new EventManager(Log::getSessionId); in getEventManager()
517 String sessionName = getSessionId(); in buildMessage()
/aosp14/frameworks/base/media/java/android/media/metrics/
H A DEditingSession.java43 public @NonNull LogSessionId getSessionId() { in getSessionId() method in EditingSession
H A DTranscodingSession.java43 public @NonNull LogSessionId getSessionId() { in getSessionId() method in TranscodingSession
H A DRecordingSession.java44 public @NonNull LogSessionId getSessionId() { in getSessionId() method in RecordingSession
H A DBundleSession.java65 public @NonNull LogSessionId getSessionId() { in getSessionId() method in BundleSession
H A DPlaybackSession.java83 public @NonNull LogSessionId getSessionId() { in getSessionId() method in PlaybackSession
/aosp14/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
H A DContentCaptureEventTest.java178 assertThat(event.getSessionId()).isEqualTo(42); in assertSessionStartedEvent()
210 assertThat(event.getSessionId()).isEqualTo(42); in assertSessionFinishedEvent()
304 assertThat(event.getSessionId()).isEqualTo(42); in assertContextUpdatedEvent()
/aosp14/frameworks/base/media/java/android/media/tv/
H A DSectionResponse.java72 public int getSessionId() { in getSessionId() method in SectionResponse
/aosp14/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCaptureCallbackHolder.java108 public int getSessionId() { in getSessionId() method in CaptureCallbackHolder
/aosp14/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplaySessionInfo.java75 public int getSessionId() { in getSessionId() method in WifiDisplaySessionInfo
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageMetrics.java119 mInstallRequest.getSessionId() /* session_id */, in reportInstallationStats()
252 verifyingSession.getSessionId() /* session_id */, in onVerificationFailed()
/aosp14/frameworks/base/core/java/android/hardware/camera2/
H A DTotalCaptureResult.java163 public int getSessionId() { in getSessionId() method in TotalCaptureResult
/aosp14/frameworks/base/telecomm/java/android/telecom/Logging/
H A DSessionManager.java98 String getSessionId(); in getSessionId() method
378 public String getSessionId() { in getSessionId() method in SessionManager
/aosp14/frameworks/base/core/tests/coretests/src/android/view/textclassifier/
H A DTextClassifierEventTest.java280 .that(actual.getSessionId()).isEqualTo(expected.getSessionId()); in assertEquals()
/aosp14/frameworks/base/core/jni/
H A Dandroid_media_ToneGenerator.cpp85 return (lpToneGen != nullptr) ? lpToneGen->getSessionId() : 0; in android_media_ToneGenerator_getAudioSessionId()
/aosp14/frameworks/base/core/java/android/service/contentcapture/
H A DContentCaptureService.java521 int sessionIdInt = event.getSessionId(); in handleSendEvents()
572 int sessionIdInt = events.isEmpty() ? NO_SESSION_ID : events.get(0).getSessionId(); in handleOnLoginDetected()
646 sessionId = event.getSessionId(); in handleIsRightCallerFor()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardBiometricLockoutLogger.kt118 uiEventLogger.log(event, sessionTracker.getSessionId(SESSION_KEYGUARD))
/aosp14/frameworks/base/core/java/android/security/keystore/recovery/
H A DRecoverySession.java194 @NonNull String getSessionId() { in getSessionId() method in RecoverySession
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardBiometricLockoutLoggerTest.kt64 whenever(sessionTracker.getSessionId(anyInt())).thenReturn(sessionId)

123