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) {
139 BordeauxSessionManager.Session session = getSessionFromCursor(cursor);
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp69 struct ANetworkSession::Session : public RefBase { struct in class:android::ANetworkSession
84 Session(int32_t sessionID,
110 virtual ~Session();
141 DISALLOW_EVIL_CONSTRUCTORS(Session);
160 ANetworkSession::Session::Session( function in class:android::ANetworkSession::Session
216 ANetworkSession::Session::~Session() {
217 ALOGV("Session %d gone", mSessionID);
223 int32_t ANetworkSession::Session
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DANetworkSession.h98 struct Session;
107 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/services/java/com/android/server/accounts/
H A DAccountManagerService.java177 private final LinkedHashMap<String, Session> mSessions = new LinkedHashMap<String, Session>();
600 new Session(fromAccounts, null, account.type, false,
617 // Create a Session for the target user and pass in the bundle
636 new Session(targetUser, null, account.type, false,
792 private class TestFeaturesSession extends Session {
888 private class RemoveAccountSession extends Session {
1253 new Session(accounts, response, accountType, false,
1340 // route of starting a Session
1353 new Session(account
2029 private abstract class Session extends IAccountAuthenticatorResponse.Stub class in class:AccountManagerService
2045 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.java52 * Session object per process that is interacting with the window manager.
54 final class Session extends IWindowSession.Stub class in inherits:IWindowSession.Stub,IBinder.DeathRecipient
66 public Session(WindowManagerService service, IInputMethodClient client, method in class:Session
74 sb.append("Session{");
129 Slog.wtf(WindowManagerService.TAG, "Window Session Crash", e);
H A DWindowManagerService.java333 final HashSet<Session> mSessions = new HashSet<Session>();
548 Session mHoldingScreenOn;
572 private Session mHoldScreen = null;
2105 public int addWindow(Session session, IWindow client, int seq,
2365 public void removeWindow(Session session, IWindow client) {
2375 public void removeWindowLocked(Session session, WindowState win) {
2454 private void removeWindowInnerLocked(Session session, WindowState win) {
2593 void setTransparentRegionWindow(Session session, IWindow client, Region region) {
2607 void setInsetsWindow(Session sessio
[all...]
H A DWindowState.java74 final Session mSession;
306 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token,
H A DWindowStateAnimator.java62 final Session mSession;

Completed in 222 milliseconds