Home
last modified time | relevance | path

Searched refs:Session (Results 1 – 25 of 103) sorted by relevance

12345

/aosp14/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DIConnectionService.aidl26 import android.telecom.Logging.Session;
40 in Session.Info sessionInfo); in addConnectionServiceAdapter()
43 in Session.Info sessionInfo); in removeConnectionServiceAdapter()
51 in Session.Info sessionInfo); in createConnection()
64 in Session.Info sessionInfo); in createConference()
87 in Session.Info sessionInfo); in transfer()
100 in Session.Info sessionInfo); in onCallAudioStateChanged()
103 in Session.Info sessionInfo); in onCallEndpointChanged()
123 in Session.Info sessionInfo); in addConferenceParticipants()
133 in Session.Info sessionInfo); in onCallFilteringCompleted()
[all …]
H A DIConnectionServiceAdapter.aidl26 import android.telecom.Logging.Session;
64 in Session.Info sessionInfo); in setDisconnected()
71 in Session.Info sessionInfo); in setConnectionCapabilities()
74 in Session.Info sessionInfo); in setConnectionProperties()
81 in Session.Info sessionInfo); in addConferenceCall()
90 in Session.Info sessionInfo); in queryRemoteConnectionServices()
103 in Session.Info sessionInfo); in setCallerDisplayName()
106 in Session.Info sessionInfo); in setConferenceableConnections()
109 in Session.Info sessionInfo); in addExistingConnection()
122 in Session.Info sessionInfo); in onConnectionEvent()
[all …]
/aosp14/frameworks/base/telecomm/java/android/telecom/Logging/
H A DSessionManager.java147 Session childSession = createSubsession(true); in startSession()
152 Log.d(LOGGING_TAG, Session.START_SESSION); in startSession()
154 Session newSession = new Session(getNextSessionID(), shortMethodName, in startSession()
183 Session externalSession = new Session(Session.EXTERNAL_INDICATOR + sessionInfo.sessionId, in startExternalSession()
194 Session childSession = createSubsession(); in startExternalSession()
203 public Session createSubsession() { in createSubsession()
227 Session newSubsession = new Session(threadSession.getNextChildId(), in createSubsession()
237 Log.v(LOGGING_TAG, Session.CREATE_SUBSESSION + in createSubsession()
324 Log.v(LOGGING_TAG, Session.END_SUBSESSION + in endSession()
341 private void endParentSessions(Session subsession) { in endParentSessions()
[all …]
H A DSession.java35 public class Session { class
71 public static Info getInfo (Session s) { in getInfo()
136 private Session mParentSession;
137 private ArrayList<Session> mChildSessions;
201 public void removeChild(Session child) { in removeChild()
215 public Session getParentSession() { in getParentSession()
284 Session parentSession = mParentSession; in getFullSessionId()
302 Session topNode = this; in getRootSession()
341 for (Session child : mChildSessions) { in printSessionTree()
430 Session session = (Session) o; in equals()
[all …]
/aosp14/frameworks/base/core/tests/coretests/src/android/os/
H A DPerformanceHintManagerTest.java55 private Session createSession() { in createSession()
62 Session a = createSession(); in testCreateHintSession()
63 Session b = createSession(); in testCreateHintSession()
82 Session s = createSession(); in testUpdateTargetWorkDuration()
89 Session s = createSession(); in testUpdateTargetWorkDurationWithNegativeDuration()
98 Session s = createSession(); in testReportActualWorkDuration()
108 Session s = createSession(); in testReportActualWorkDurationWithIllegalArgument()
118 Session s = createSession(); in testSendHint()
127 Session s = createSession(); in testSendHintWithNegativeHint()
136 Session s = createSession(); in testCloseHintSession()
[all …]
/aosp14/frameworks/base/telecomm/java/android/telecom/
H A DRemoteConnectionService.java25 import android.telecom.Logging.Session;
60 Session.Info info) {
109 Session.Info info) {
143 Session.Info sessionInfo) {
172 Session.Info sessionInfo) {
184 Session.Info sessionInfo) {
196 Session.Info sessionInfo) {
225 Session.Info sessionInfo) {
305 Session.Info sessionInfo) {
333 Session.Info sessionInfo) {
[all …]
H A DConnectionServiceAdapterServant.java25 import android.telecom.Logging.Session;
400 Session.Info sessionInfo) {
413 Session.Info sessionInfo) {
444 Session.Info sessionInfo) {
458 Session.Info sessionInfo) {
465 Session.Info sessionInfo) {
473 Session.Info sessionInfo) {
488 Session.Info sessionInfo) {
497 Session.Info sessionInfo) {
506 Session.Info sessionInfo) {
[all …]
H A DConnectionService.java39 import android.telecom.Logging.Session;
462 Session.Info sessionInfo) {
475 Session.Info sessionInfo) {
494 Session.Info sessionInfo) {
529 Session.Info sessionInfo) {
551 Session.Info sessionInfo) {
586 Session.Info sessionInfo) {
744 Session.Info sessionInfo) {
812 Session.Info sessionInfo) {
827 Session.Info sessionInfo) {
[all …]
/aosp14/frameworks/base/apct-tests/perftests/packagemanager/src/android/content/pm/
H A DPackageInstallerBenchmark.java106 private List<PackageInstaller.Session> mExpectedSessions;
130 private List<PackageInstaller.Session> createSinglePackageSessions( in createSinglePackageSessions()
141 PackageInstaller.Session session = in createSinglePackageSessions()
168 PackageInstaller.Session session = in createMultiplePackageSessions()
244 List<PackageInstaller.Session> sessions = in commit_aSingleApkSession_untilFinishBenchmark()
247 for (PackageInstaller.Session session : sessions) { in commit_aSingleApkSession_untilFinishBenchmark()
262 List<PackageInstaller.Session> sessions = createSinglePackageSessions( in commit_threeSingleApkSessions_untilFinishBenchmark()
265 for (PackageInstaller.Session session : sessions) { in commit_threeSingleApkSessions_untilFinishBenchmark()
286 for (PackageInstaller.Session session : sessions) { in commit_aMultiplePackagesSession_untilFinishBenchmark()
309 for (PackageInstaller.Session session : sessions) { in commit_threeMultiplePackageSessions_untilFinishBenchmark()
[all …]
/aosp14/frameworks/base/media/java/android/media/tv/
H A DTvView.java37 import android.media.tv.TvInputManager.Session;
92 private Session mSession;
208 public Session getInputSession() { in getInputSession()
765 return ret != Session.DISPATCH_NOT_HANDLED; in dispatchKeyEvent()
780 return ret != Session.DISPATCH_NOT_HANDLED; in dispatchTouchEvent()
795 return ret != Session.DISPATCH_NOT_HANDLED; in dispatchTrackballEvent()
810 return ret != Session.DISPATCH_NOT_HANDLED; in dispatchGenericMotionEvent()
1308 public void onSessionCreated(Session session) { in onSessionCreated()
1365 public void onSessionReleased(Session session) { in onSessionReleased()
1470 public void onVideoAvailable(Session session) { in onVideoAvailable()
[all …]
H A DTvRecordingClient.java49 private TvInputManager.Session mSession;
485 public void onSessionCreated(TvInputManager.Session session) { in onSessionCreated()
517 public void onTuned(TvInputManager.Session session, Uri channelUri) { in onTuned()
539 public void onSessionReleased(TvInputManager.Session session) { in onSessionReleased()
562 public void onRecordingStopped(TvInputManager.Session session, Uri recordedProgramUri) { in onRecordingStopped()
586 public void onError(TvInputManager.Session session, int error) { in onError()
603 public void onSessionEvent(TvInputManager.Session session, String eventType, in onSessionEvent()
/aosp14/frameworks/base/media/java/android/media/tv/interactive/
H A DTvInteractiveAppView.java33 import android.media.tv.interactive.TvInteractiveAppManager.Session;
113 private Session mSession;
454 return ret != Session.DISPATCH_NOT_HANDLED; in dispatchKeyEvent()
1019 public Session getInteractiveAppSession() { in getInteractiveAppSession()
1403 public void onSessionCreated(Session session) { in onSessionCreated()
1435 public void onSessionReleased(Session session) { in onSessionReleased()
1469 Session session, in onCommandRequest()
1496 Session session, in onTimeShiftCommandRequest()
1523 Session session, in onSessionStateChanged()
1673 public void onRequestStreamVolume(Session session) { in onRequestStreamVolume()
[all …]
H A DTvInteractiveAppManager.java36 import android.media.tv.interactive.TvInteractiveAppService.Session;
333 Session session = null; in TvInteractiveAppManager()
1038 public static final class Session { class in TvInteractiveAppManager
1054 private TvInputManager.Session mInputSession;
1072 public TvInputManager.Session getInputSession() { in getInputSession()
1977 private Session mSession;
1984 void postSessionCreated(final Session session) { in postSessionCreated()
2308 Session session, in onCommandRequest()
2322 Session session, in onTimeShiftCommandRequest()
2368 public void onRequestStreamVolume(Session session) { in onRequestStreamVolume()
[all …]
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DInlineSuggestionRequestConsumer.java29 private final WeakReference<Session.AssistDataReceiverImpl> mAssistDataReceiverWeakReference;
32 InlineSuggestionRequestConsumer(WeakReference<Session.AssistDataReceiverImpl> in InlineSuggestionRequestConsumer()
41 Session.AssistDataReceiverImpl assistDataReceiver = mAssistDataReceiverWeakReference.get(); in accept()
H A DInlineSuggestionRendorInfoCallbackOnResultListener.java35 private final WeakReference<Session> mSessionWeakReference;
38 InlineSuggestionRendorInfoCallbackOnResultListener(WeakReference<Session> sessionWeakReference, in InlineSuggestionRendorInfoCallbackOnResultListener()
48 Session session = this.mSessionWeakReference.get(); in onResult()
H A DLogFieldClassificationScoreOnResultListener.java35 private Session mSession;
44 LogFieldClassificationScoreOnResultListener(Session session, in LogFieldClassificationScoreOnResultListener()
62 Session session = mSession; in onResult()
/aosp14/frameworks/base/core/java/android/os/
H A DPerformanceHintManager.java64 public Session createHintSession(@NonNull int[] tids, long initialTargetWorkDurationNanos) { in createHintSession()
71 return new Session(nativeSessionPtr); in createHintSession()
105 public static class Session implements Closeable { class in PerformanceHintManager
109 public Session(long nativeSessionPtr) { in Session() method in PerformanceHintManager.Session
/aosp14/frameworks/base/tests/BlobStoreTestUtils/src/com/android/utils/blob/
H A DFakeBlobData.java150 public void writeToSession(BlobStoreManager.Session session) throws Exception { in writeToSession()
154 public void writeToSession(BlobStoreManager.Session session, in writeToSession()
161 public void writeToSession(BlobStoreManager.Session session, in writeToSession()
181 public void readFromSessionAndVerifyBytes(BlobStoreManager.Session session, in readFromSessionAndVerifyBytes()
204 public void readFromSessionAndVerifyDigest(BlobStoreManager.Session session) in readFromSessionAndVerifyDigest()
209 public void readFromSessionAndVerifyDigest(BlobStoreManager.Session session, in readFromSessionAndVerifyDigest()
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
H A DApplicationsState.java142 final ArrayList<Session> mSessions = new ArrayList<>();
143 final ArrayList<Session> mRebuildingSessions = new ArrayList<>();
255 public Session newSession(Callbacks callbacks) { in newSession()
260 Session s = new Session(callbacks, lifecycle); in newSession()
809 Session s = mSessions.get(i); in rebuildActiveSessions()
823 public class Session implements LifecycleObserver { class in ApplicationsState
840 Session(Callbacks callbacks, Lifecycle lifecycle) { in Session() method in ApplicationsState.Session
1062 Session s = (Session) msg.obj; in handleMessage()
1150 ArrayList<Session> rebuildingSessions = null; in handleMessage()
1158 for (Session session : rebuildingSessions) { in handleMessage()
[all …]
/aosp14/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger_middleware/
H A DSoundTriggerModule.java90 private final Set<Session> mActiveSessions = new HashSet<>();
122 Session session = new Session(callback); in attach()
143 for (Session session : mActiveSessions) { in binderDied()
193 private void removeSession(@NonNull Session session) { in removeSession()
202 for (Session session : mActiveSessions) { in onResourcesAvailable()
231 private class Session implements ISoundTriggerModule { class in SoundTriggerModule
241 private Session(@NonNull ISoundTriggerCallback callback) { in Session() method in SoundTriggerModule.Session
/aosp14/frameworks/base/services/core/java/com/android/server/storage/
H A DStorageUserConnection.java79 @GuardedBy("mSessionsLock") private final Map<String, Session> mSessions = new HashMap<>();
106 Session session = new Session(sessionId, upperPath, lowerPath); in startSession()
177 public Session removeSession(String sessionId) { in removeSession()
190 Session session = removeSession(sessionId); in removeSessionAndWait()
387 public void startSession(Session session, ParcelFileDescriptor fd) in startSession()
404 public void endSession(Session session) throws ExternalStorageServiceException { in endSession()
534 private static final class Session {
539 Session(String sessionId, String upperPath, String lowerPath) {
/aosp14/frameworks/base/media/java/android/media/
H A DMediaCas.java479 for (Session casSession: sessionList) {
557 public final class Session implements AutoCloseable { class in MediaCas
561 Session(@NonNull byte[] sessionId) { in Session() method in MediaCas.Session
582 if (obj instanceof Session) { in equals()
744 Session createFromSessionId(byte[] sessionId) { in createFromSessionId()
748 return new Session(sessionId); in createFromSessionId()
1070 public Session mSession;
1082 public Session mSession;
1119 private void removeSessionFromResourceMap(Session session) { in removeSessionFromResourceMap()
1143 public Session openSession() throws MediaCasException { in openSession()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/lights/
H A DLightsService.java72 private final class Session implements Comparable<Session> { class in LightsService.LightsManagerBinderService
77 Session(IBinder token, int priority) { in Session() method in LightsService.LightsManagerBinderService.Session
91 public int compareTo(Session otherSession) { in compareTo()
98 private final List<Session> mSessions = new ArrayList<>();
135 Session session = getSessionLocked(Preconditions.checkNotNull(token)); in setLightStates()
171 mSessions.add(new Session(token, priority)); in openSession()
207 for (Session session : mSessions) { in dump()
220 final Session session = getSessionLocked(token); in closeSessionInternal()
262 private @Nullable Session getSessionLocked(IBinder token) { in getSessionLocked()
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DDragDropControllerTests.java326 final Session session = new Session(mWm, new IWindowSessionCallback.Stub() { in testValidateAppActivityArguments()
367 final Session session = new Session(mWm, new IWindowSessionCallback.Stub() { in testValidateAppShortcutArguments()
401 final Session session = Mockito.spy(new Session(mWm, new IWindowSessionCallback.Stub() { in testValidateProfileAppShortcutArguments_notCallingUid()
446 final Session session = new Session(mWm, new IWindowSessionCallback.Stub() { in testValidateAppTaskArguments()
465 final Session session = new Session(mWm, new IWindowSessionCallback.Stub() { in testValidateFlags()
481 final Session session = new Session(mWm, new IWindowSessionCallback.Stub() { in testValidateFlagsWithPermission()
/aosp14/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/wear/
H A DPackageInstallerImpl.java52 private final Map<String, PackageInstaller.Session> mOpenSessionMap;
73 mOpenSessionMap = new HashMap<String, PackageInstaller.Session>(); in PackageInstallerImpl()
112 PackageInstaller.Session session = null; in install()
162 private PackageInstaller.Session getSession(String packageName) { in getSession()
164 PackageInstaller.Session session = mOpenSessionMap.get(packageName); in getSession()
237 PackageInstaller.Session session = mOpenSessionMap.remove(packageName); in closeSession()

12345