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

  /hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/
Session.cpp 35 #include "Session.h"
42 Session::Session(
57 Session::~Session(void)
89 void Session::setErrorInfo(
98 int32_t Session::getLastErr(
107 mcResult_t Session::addBulkBuf(addr_t buf, uint32_t len, BulkBufferDescriptor **blkBuf)
145 uint32_t Session::getBufHandle(addr_t sVirtAddr)
161 mcResult_t Session::removeBulkBuf(addr_t virtAddr
    [all...]
Session.h 71 /** Session states.
80 #define SESSION_ERR_NO 0 /**< No session error */
82 /** Session information structure.
83 * The information structure is used to hold the state of the session, which will limit further actions for the session.
87 sessionState_t state; /**< Session state */
88 int32_t lastErr; /**< Last error of session */
92 class Session
97 bulkBufferDescrList_t bulkBufferDescriptors; /**< Descriptors of additional bulk buffer of a session */
98 sessionInformation_t sessionInfo; /**< Informations about session */
    [all...]
  /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/openssh/
session.h 1 /* $OpenBSD: session.h,v 1.30 2008/05/08 12:21:16 djm Exp $ */
30 typedef struct Session Session;
31 struct Session {
73 void session_destroy_all(void (*)(Session *));
74 void session_pty_cleanup2(Session *);
76 Session *session_new(void);
77 Session *session_by_tty(char *);
78 void session_close(Session *);
  /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/av/media/libstagefright/wifi-display/
ANetworkSession.cpp 42 NetworkThread(ANetworkSession *session);
55 struct ANetworkSession::Session : public RefBase {
64 Session(int32_t sessionID,
87 virtual ~Session();
108 DISALLOW_EVIL_CONSTRUCTORS(Session);
112 ANetworkSession::NetworkThread::NetworkThread(ANetworkSession *session)
113 : mSession(session) {
127 ANetworkSession::Session::Session(
181 ANetworkSession::Session::~Session()
713 sp<Session> session; local
899 const sp<Session> session = mSessions.valueAt(index); local
937 const sp<Session> session = mSessions.valueAt(index); local
971 const sp<Session> &session = mSessions.valueAt(i); local
1030 const sp<Session> &session = mSessions.valueAt(i); local
1108 sp<Session> session = *sessionsToAdd.begin(); local
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Session.java 17 * A <code>Session</code> is a remote execution of a program. "Program" means
20 * a session. However, multiple sessions can be active simultaneously.
23 * @version $Id: Session.java 32 2011-05-28 21:56:21Z dkocher@sudo.ch $
25 public class Session
39 protected Session(ChannelManager cm, SecureRandom rnd) throws IOException
69 * Allocate a pseudo-terminal for this session.
72 * this session.
113 throw new IOException("This session is closed.");
130 * Request X11 forwarding for the current session.
135 * this session
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxSessionManager.java 41 static class Session {
71 private ConcurrentHashMap<String, Session> mSessions =
72 new ConcurrentHashMap<String, Session>();
87 // Save the session
88 Session session = mSessions.get(mKey); local
89 if (session != null) {
90 synchronized(session) {
91 if (session.learner != learner) {
92 throw new RuntimeException("Session data corrupted!")
131 Session session = new Session(); local
156 Session session = mSessions.get(key.value); local
    [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/core/java/android/service/textservice/
SpellCheckerService.java 49 * {@link #createSession()} to provide a spell checker session that is corresponding
50 * to requested language and so on. The spell checker session returned by this method
51 * 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>
91 * Factory method to create a spell checker session impl
94 public abstract Session createSession();
99 public static abstract class Session {
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa_new.cpp 614 RWsSession& CDsa::Session()
dsa_old.cpp 415 RWsSession& CDsa::Session()
dsa.cpp 281 Session(),
855 RWsSession& CDsa::Session()
  /frameworks/base/services/java/com/android/server/wm/
Session.java 49 * This class represents an active client session. There is generally one
50 * Session object per process that is interacting with the window manager.
52 final class Session extends IWindowSession.Stub
64 public Session(WindowManagerService service, IInputMethodClient client,
72 sb.append("Session{");
127 Slog.e(WindowManagerService.TAG, "Window Session Crash", e);
455 WindowManagerService.TAG, " NEW SURFACE SESSION " + mSurfaceSession);
474 WindowManagerService.TAG, " KILL SURFACE SESSION " + mSurfaceSession);
478 Slog.w(WindowManagerService.TAG, "Exception thrown when killing surface session "
479 + mSurfaceSession + " in session " + thi
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 249 final ArrayList<Session> mSessions = new ArrayList<Session>();
250 final ArrayList<Session> mRebuildingSessions = new ArrayList<Session>();
259 // Temporary for dispatching session callbacks. Only touched by main thread.
260 final ArrayList<Session> mActiveSessions = new ArrayList<Session>();
326 Session s = mSessions.get(i);
347 Session s = (Session)msg.obj
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountManagerService.java 159 private final LinkedHashMap<String, Session> mSessions = new LinkedHashMap<String, Session>();
608 private class TestFeaturesSession extends Session {
692 private class RemoveAccountSession extends Session {
1916 Session session = (Session)msg.obj; local
    [all...]
  /tools/motodev/src/plugins/videos/libs/
mail.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 732 milliseconds