HomeSort by relevance Sort by last modified time
    Searched defs:Session (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.h 56 /// Session - Keep track of the IT Block progression.
57 class Session {
60 Session() : ITCounter(0), ITState(0) {}
61 ~Session() {}
94 Session SO;
  /development/scripts/app_engine_server/gae_shell/
shell.py 78 class Session(db.Model):
79 """A shell session. Stores the session's globals.
81 Each session globals is stored in one of two places:
170 """Creates a new session and renders the shell.html template.
174 # set up the session. TODO: garbage collect old shell sessions
175 session_key = self.request.get('session')
177 session = Session.get(session_key)
179 # create a new session
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
session.cc 28 #include "talk/p2p/base/session.h"
189 // Session timeout has occured.
219 Session::Session(SessionManager *session_manager,
243 Session::~Session() {
258 Transport* Session::GetTransport(const std::string& content_name) {
265 void Session::set_allow_local_ips(bool allow) {
273 bool Session::Initiate(const std::string &to,
297 SetState(Session::STATE_SENTINITIATE)
    [all...]
session.h 67 // Used for errors that may be returned by public session methods that
69 // TODO: Use this error in Session::Initiate and
70 // Session::Accept.
75 // create transport channels before receiving or sending a session
77 // session had one ChannelMap and transport. Now, with multiple
78 // transports per session, we need multiple ChannelMaps as well.
127 // on Session. Right now the Channel class requires a BaseSession, but it only
132 // A BaseSession manages general session state. This includes negotiation
155 STATE_INPROGRESS, // session accepted and in progress
156 STATE_DEINIT, // session is being destroye
    [all...]
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 41 * {@link #createSession()} to provide a spell checker session that is corresponding
42 * to requested language and so on. The spell checker session returned by this method
43 * should extend {@link SpellCheckerService.Session}.
48 * <p>{@link SpellCheckerService.Session#onGetSuggestions(TextInfo, int)}
53 * {@link SpellCheckerService.Session#onGetSuggestionsMultiple(TextInfo[], int, boolean)} for
57 * <p>Please note that {@link SpellCheckerService.Session#getLocale()} does not return a valid
58 * locale before {@link SpellCheckerService.Session#onCreate()} </p>
83 * Factory method to create a spell checker session impl
86 public abstract Session createSession();
91 public static abstract class Session {
    [all...]
  /external/qemu/
shaper.c 286 /* this type is used to model a session connection/state
287 * if session->packet is != NULL, then the connection is delayed
299 } SessionRec, *Session;
307 session_free( Session session )
309 if (session) {
310 if (session->packet) {
311 queued_packet_free(session->packet);
312 session->packet = NULL;
314 qemu_free( session );
426 Session session; local
484 Session session = delay->sessions; local
518 Session session = *lookup; local
531 Session session = *lookup; local
581 Session session = delay->sessions; local
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
Session.java 46 * This class represents an active client session. There is generally one
47 * Session object per process that is interacting with the window manager.
49 final class Session extends IWindowSession.Stub
61 public Session(WindowManagerService service, IInputMethodClient client,
69 sb.append("Session{");
115 Slog.e(WindowManagerService.TAG, "Window Session Crash", e);
385 WindowManagerService.TAG, " NEW SURFACE SESSION " + mSurfaceSession);
404 WindowManagerService.TAG, " KILL SURFACE SESSION " + mSurfaceSession);
408 Slog.w(WindowManagerService.TAG, "Exception thrown when killing surface session "
409 + mSurfaceSession + " in session " + thi
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountManagerService.java 147 private final LinkedHashMap<String, Session> mSessions = new LinkedHashMap<String, Session>();
477 private class TestFeaturesSession extends Session {
559 private class RemoveAccountSession extends Session {
1686 Session session = (Session)msg.obj; local
    [all...]
  /prebuilt/sdk/14/
android.jar 

Completed in 186 milliseconds