Searched refs:Session (Results 1 - 10 of 10) sorted by relevance

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBordeauxSessionManager.java41 static class Session { class in class:BordeauxSessionManager
71 private ConcurrentHashMap<String, Session> mSessions =
72 new ConcurrentHashMap<String, Session>();
88 Session session = mSessions.get(mKey);
92 throw new RuntimeException("Session data corrupted!");
116 Session stored = mSessionStorage.getSession(key.value);
131 Session session = new Session();
143 for (Map.Entry<String, Session> session : mSessions.entrySet()) {
156 Session sessio
[all...]
H A DBordeauxSessionStorage.java101 private BordeauxSessionManager.Session getSessionFromCursor(Cursor cursor) {
102 BordeauxSessionManager.Session session = new BordeauxSessionManager.Session();
115 BordeauxSessionManager.Session getSession(String key) {
128 BordeauxSessionManager.Session s = getSessionFromCursor(cursor);
133 void getAllSessions(ConcurrentHashMap<String, BordeauxSessionManager.Session> sessions) {
138 BordeauxSessionManager.Session session = getSessionFromCursor(cursor);
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.cpp55 struct ANetworkSession::Session : public RefBase { struct in class:android::ANetworkSession
64 Session(int32_t sessionID,
87 virtual ~Session();
108 DISALLOW_EVIL_CONSTRUCTORS(Session);
127 ANetworkSession::Session::Session( function in class:android::ANetworkSession::Session
181 ANetworkSession::Session::~Session() {
182 ALOGV("Session %d gone", mSessionID);
188 int32_t ANetworkSession::Session
[all...]
H A DANetworkSession.h93 struct Session;
102 KeyedVector<int32_t, sp<Session> > mSessions;
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java51 * should extend {@link SpellCheckerService.Session}.
56 * <p>{@link SpellCheckerService.Session#onGetSuggestions(TextInfo, int)}
61 * {@link SpellCheckerService.Session#onGetSuggestionsMultiple(TextInfo[], int, boolean)} for
65 * <p>Please note that {@link SpellCheckerService.Session#getLocale()} does not return a valid
66 * locale before {@link SpellCheckerService.Session#onCreate()} </p>
94 public abstract Session createSession();
99 public static abstract class Session { class in class:SpellCheckerService
136 * {@link SpellCheckerService.Session#onGetSuggestions(TextInfo, int)}
162 * {@link SpellCheckerService.Session#onGetSuggestions(TextInfo, int)}
239 private final Session mSessio
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java159 private final LinkedHashMap<String, Session> mSessions = new LinkedHashMap<String, Session>();
608 private class TestFeaturesSession extends Session {
692 private class RemoveAccountSession extends Session {
1032 new Session(accounts, response, accountType, false,
1101 // route of starting a Session
1114 new Session(accounts, response, account.type, expectActivityLaunch,
1279 new Session(accounts, response, accountType, expectActivityLaunch,
1324 new Session(accounts, response, account.type, expectActivityLaunch,
1357 new Session(account
1649 private abstract class Session extends IAccountAuthenticatorResponse.Stub class in class:AccountManagerService
1666 public Session(UserAccounts accounts, IAccountManagerResponse response, String accountType, method in class:AccountManagerService.Session
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DSession.java50 * Session object per process that is interacting with the window manager.
52 final class Session extends IWindowSession.Stub class in inherits:IWindowSession.Stub,IBinder.DeathRecipient
64 public Session(WindowManagerService service, IInputMethodClient client, method in class:Session
72 sb.append("Session{");
127 Slog.e(WindowManagerService.TAG, "Window Session Crash", e);
H A DWindowManagerService.java329 final HashSet<Session> mSessions = new HashSet<Session>();
580 Session mHoldingScreenOn;
600 private Session mHoldScreen = null;
2089 public int addWindow(Session session, IWindow client, int seq,
2330 public void removeWindow(Session session, IWindow client) {
2340 public void removeWindowLocked(Session session, WindowState win) {
2414 private void removeWindowInnerLocked(Session session, WindowState win) {
2540 void setTransparentRegionWindow(Session session, IWindow client, Region region) {
2554 void setInsetsWindow(Session sessio
[all...]
H A DWindowState.java69 final Session mSession;
267 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
H A DWindowStateAnimator.java66 final Session mSession;

Completed in 2317 milliseconds