Home
last modified time | relevance | path

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

1234

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DSessionTest.java22 import android.telecom.Logging.Session;
59 Session childSession = Log.getSessionManager() in testRecursion_printFullSessionTree()
62 Session parentSession = childSession.getParentSession(); in testRecursion_printFullSessionTree()
90 Session childSession = Log.getSessionManager() in testRecursion_getFullMethodPath()
93 Session parentSession = childSession.getParentSession(); in testRecursion_getFullMethodPath()
121 Session childSession = Log.getSessionManager() in testRecursion_getFullMethodPathTruncated()
124 Session parentSession = childSession.getParentSession(); in testRecursion_getFullMethodPathTruncated()
152 Session childSession = Log.getSessionManager() in testRecursion_toString()
155 Session parentSession = childSession.getParentSession(); in testRecursion_toString()
184 Session childSession = Log.getSessionManager() in testRecursion_getInfo()
[all …]
DConnectionServiceFixture.java43 import android.telecom.Logging.Session;
206 Session.Info info) throws RemoteException { in addConnectionServiceAdapter()
216 Session.Info info) throws RemoteException { in removeConnectionServiceAdapter()
227 Session.Info info) throws RemoteException { in createConnection()
251 public void createConnectionComplete(String id, Session.Info info) throws RemoteException { in createConnectionComplete()
258 Session.Info sessionInfo) throws RemoteException { in createConnectionFailed()
275 Session.Info sessionInfo) { } in createConference()
278 public void createConferenceComplete(String id, Session.Info sessionInfo) { } in createConferenceComplete()
286 Session.Info sessionInfo) { } in createConferenceFailed()
289 public void abort(String callId, Session.Info info) throws RemoteException { } in abort()
[all …]
DSessionManagerTest.java25 import android.telecom.Logging.Session;
52 private long mfullSessionCompleteTime = Session.UNDEFINED;
72 mfullSessionCompleteTime = Session.UNDEFINED; in tearDown()
89 Session testSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testStartSession()
112 Session testChildSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testStartInvisibleChildSession()
131 Session testSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testEndSession()
158 Session testChildSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testEndInvisibleChildSession()
164 Session testParentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testEndInvisibleChildSession()
181 Session testSession = mTestSessionManager.createSubsession(); in testCreateSubsession()
184 Session parentSession = mTestSessionManager.mSessionMapper.get(TEST_PARENT_THREAD_ID); in testCreateSubsession()
[all …]
DCallerInfoLookupHelperTest.java35 import android.telecom.Logging.Session;
136 ArgumentCaptor<Session> logSessionCaptor = ArgumentCaptor.forClass(Session.class); in testSimpleLookup()
175 ArgumentCaptor<Session> logSessionCaptor = ArgumentCaptor.forClass(Session.class); in testLookupWithTwoListeners()
215 ArgumentCaptor<Session> logSessionCaptor = ArgumentCaptor.forClass(Session.class); in testListenerAddedAfterCallerInfoBeforePhoto()
/packages/apps/Dialer/java/com/android/dialer/enrichedcall/extensions/
DStateExtension.java21 import com.android.dialer.enrichedcall.Session;
22 import com.android.dialer.enrichedcall.Session.State;
30 if (callComposerState == Session.STATE_NONE) { in toString()
33 if (callComposerState == Session.STATE_STARTING) { in toString()
36 if (callComposerState == Session.STATE_STARTED) { in toString()
39 if (callComposerState == Session.STATE_START_FAILED) { in toString()
42 if (callComposerState == Session.STATE_MESSAGE_SENT) { in toString()
45 if (callComposerState == Session.STATE_MESSAGE_FAILED) { in toString()
48 if (callComposerState == Session.STATE_CLOSED) { in toString()
/packages/apps/Camera2/src/com/android/camera/one/v2/core/
DFrameServerImpl.java36 public class Session implements FrameServer.Session { class in FrameServerImpl
40 private Session() { in Session() method in FrameServerImpl.Session
76 private final FrameServer.Session mCaptureSession;
83 public FrameServerImpl(FrameServer.Session captureSession) { in FrameServerImpl()
90 public Session createExclusiveSession() throws InterruptedException { in createExclusiveSession()
94 return new Session(); in createExclusiveSession()
99 public Session tryCreateExclusiveSession() { in tryCreateExclusiveSession()
104 return new Session(); in tryCreateExclusiveSession()
DObservableFrameServer.java51 private class SessionImpl implements Session {
53 private final Session mDelegate;
55 private SessionImpl(Session delegate) { in SessionImpl()
85 public Session createExclusiveSession() throws InterruptedException { in createExclusiveSession()
91 Session session = mDelegate.createExclusiveSession(); in createExclusiveSession()
104 public Session tryCreateExclusiveSession() { in tryCreateExclusiveSession()
105 Session session = mDelegate.tryCreateExclusiveSession(); in tryCreateExclusiveSession()
DFrameServer.java39 public interface Session extends SafeCloseable { interface
75 public Session createExclusiveSession() throws InterruptedException; in createExclusiveSession()
82 public Session tryCreateExclusiveSession(); in tryCreateExclusiveSession()
/packages/services/Telecomm/src/com/android/server/telecom/
DConnectionServiceWrapper.java39 import android.telecom.Logging.Session;
76 ParcelableConnection connection, Session.Info sessionInfo) { in handleCreateConnectionComplete()
105 ParcelableConference conference, Session.Info sessionInfo) { in handleCreateConferenceComplete()
134 public void setActive(String callId, Session.Info sessionInfo) { in setActive()
157 public void setRinging(String callId, Session.Info sessionInfo) { in setRinging()
180 public void resetConnectionTime(String callId, Session.Info sessionInfo) { in resetConnectionTime()
201 Session.Info sessionInfo) { in setVideoProvider()
222 public void setDialing(String callId, Session.Info sessionInfo) { in setDialing()
245 public void setPulling(String callId, Session.Info sessionInfo) { in setPulling()
267 Session.Info sessionInfo) { in setDisconnected()
[all …]
DCallerInfoLookupHelper.java26 import android.telecom.Logging.Session;
164 Session continuedSession = Log.createSubsession(); in startLookup()
185 Log.continueSession((Session) cookie, "CILH.oQC"); in makeCallerInfoQueryListener()
218 Session continuedSession = Log.createSubsession();
235 Log.continueSession((Session) cookie, "CLIH.oILC");
DDtmfLocalTonePlayer.java28 import android.telecom.Logging.Session;
89 if (msg.obj instanceof Session) { in handleMessage()
90 Log.continueSession((Session) msg.obj, "DLTP.TH"); in handleMessage()
DConnectionServiceFocusManager.java26 import android.telecom.Logging.Session;
486 Session session = ((MessageArgs) msg.obj).logSession; in handleMessage()
535 Session logSession;
539 MessageArgs(Session logSession, String shortName, Object obj) { in MessageArgs()
DAsyncRingtonePlayer.java29 import android.telecom.Logging.Session;
155 Session session = (Session) args.arg5;
DCallAudioModeStateMachine.java24 import android.telecom.Logging.Session;
47 public Session session;
51 boolean foregroundCallIsVoip, Session session) { in MessageArgs()
81 private Session mSession;
113 public Builder setSession(Session session) { in setSession()
/packages/apps/Dialer/java/com/android/dialer/callcomposer/
DCallComposerActivity.java69 import com.android.dialer.enrichedcall.Session;
70 import com.android.dialer.enrichedcall.Session.State;
136 private Long sessionId = Session.NO_SESSION_ID;
211 sessionId = savedInstanceState.getLong(SESSION_ID_KEY, Session.NO_SESSION_ID); in onCreate()
263 } else if (sessionId == Session.NO_SESSION_ID) { in onResume()
273 if (sessionId == Session.NO_SESSION_ID) { in onResume()
297 Session session = getEnrichedCallManager().getSession(sessionId); in refreshUiForCallComposerState()
309 case Session.STATE_STARTING: in refreshUiForCallComposerState()
315 case Session.STATE_STARTED: in refreshUiForCallComposerState()
321 case Session.STATE_START_FAILED: in refreshUiForCallComposerState()
[all …]
/packages/apps/TV/common/src/com/android/tv/common/support/tis/
DSimpleSessionManager.java18 import android.media.tv.TvInputService.Session;
30 private final Set<Session> sessions;
39 public void removeSession(Session session) { in removeSession()
44 public void addSession(Session session) { in addSession()
54 public ImmutableSet<Session> getSessions() { in getSessions()
DSessionManager.java18 import android.media.tv.TvInputService.Session;
24 void removeSession(Session session); in removeSession()
26 void addSession(Session session); in addSession()
30 ImmutableSet<Session> getSessions(); in getSessions()
/packages/apps/Dialer/java/com/android/dialer/enrichedcall/stub/
DEnrichedCallManagerStub.java28 import com.android.dialer.enrichedcall.Session;
59 return Session.NO_SESSION_ID; in startCallComposerSession()
80 public Session getSession( in getSession()
87 public Session getSession(long sessionId) { in getSession()
174 return Session.NO_SESSION_ID; in startVideoShareSession()
184 return Session.NO_SESSION_ID; in getVideoShareInviteSessionId()
/packages/modules/ExtServices/src/android/ext/services/notification/
DSmartActionsHelper.java82 private LruCache<String, Session> mSessionCache = new LruCache<>(MAX_RESULT_ID_TO_CACHE);
145 mSessionCache.put(entry.getSbn().getKey(), new Session(resultId, repliesScore)); in suggest()
296 Session session = mSessionCache.get(entry.getSbn().getKey()); in onNotificationExpansionChanged()
314 Session session = mSessionCache.get(key); in onNotificationDirectReplied()
330 Session session = mSessionCache.get(key); in onSuggestedReplySent()
348 Session session = mSessionCache.get(key); in onActionClicked()
492 private static class Session { class in SmartActionsHelper
496 Session(String resultId, Map<CharSequence, Float> repliesScores) { in Session() method in SmartActionsHelper.Session
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/factory/
DTunerSessionFactory.java19 import android.media.tv.TvInputService.Session;
35 void onReleased(Session session); in onReleased()
49 Session create( in create()
/packages/apps/Camera2/src/com/android/camera/one/v2/photo/
DConvergedImageCaptureCommand.java153 try (FrameServer.Session session = mFrameServer.createExclusiveSession()) { in run()
174 private void waitForAFConvergence(FrameServer.Session session) throws CameraAccessException, in waitForAFConvergence()
197 private void waitForAEConvergence(FrameServer.Session session) throws CameraAccessException, in waitForAEConvergence()
220 private void captureBurst(FrameServer.Session session, ImageStream imageStream, Updatable<Void> in captureBurst()
264 private void resetRepeating(FrameServer.Session session) throws InterruptedException, in resetRepeating()
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
DBaseTunerTvInputService.java54 private final Set<Session> mTunerSessions = Collections.newSetFromMap(new WeakHashMap<>());
131 public Session onCreateSession(String inputId) { in onCreateSession()
140 final Session session = in onCreateSession()
172 private void onReleased(Session session) { in onReleased()
/packages/apps/Dialer/java/com/android/dialer/enrichedcall/
DEnrichedCallManager.java159 Session getSession(@NonNull String uniqueCallId, @NonNull String number, @Nullable Filter filter); in getSession()
164 Session getSession(long sessionId); in getSession()
356 boolean test(Session session); in test()
/packages/services/Telecomm/src/com/android/server/telecom/bluetooth/
DBluetoothStateReceiver.java28 import android.telecom.Logging.Session;
90 Session session = Log.createSubsession(); in handleAudioStateChanged()
143 Session session = Log.createSubsession(); in handleActiveDeviceChanged()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DAndroidSpellCheckerSessionFactory.java19 import android.service.textservice.SpellCheckerService.Session;
22 public static Session newInstance(AndroidSpellCheckerService service) { in newInstance()

1234