/frameworks/av/drm/mediadrm/plugins/clearkey/ |
Session.h | 32 class Session : public android::RefBase { 34 explicit Session(const android::Vector<uint8_t>& sessionId) 36 virtual ~Session() {} 54 DISALLOW_EVIL_CONSTRUCTORS(Session);
|
/external/llvm/include/llvm/DebugInfo/PDB/DIA/ |
DIASession.h | 23 std::unique_ptr<IPDBSession> &Session); 39 CComPtr<IDiaSession> Session;
|
DIAEnumSourceFiles.h | 32 const DIASession &Session;
|
DIAEnumSymbols.h | 22 explicit DIAEnumSymbols(const DIASession &Session, 32 const DIASession &Session;
|
DIARawSymbol.h | 201 const DIASession &Session;
|
DIASourceFile.h | 21 explicit DIASourceFile(const DIASession &Session, 31 const DIASession &Session;
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
PDBSymbol.h | 86 const IPDBSession &getSession() const { return Session; } 91 const IPDBSession &Session;
|
/external/llvm/lib/DebugInfo/PDB/ |
PDBSymbolFunc.cpp | 34 : Session(PDBSession), Func(PDBFunc) { 58 return Session.getConcreteSymbolById<PDBSymbolData>( 67 return Session.getConcreteSymbolById<PDBSymbolData>(Result.getSymIndexId()); 73 return new FunctionArgEnumerator(Session, Func); 78 const IPDBSession &Session; 90 return Session.getConcreteSymbolById<PDBSymbolTypeFunctionSig>(getTypeId()); 95 return llvm::make_unique<FunctionArgEnumerator>(Session, *this); 99 return Session.getConcreteSymbolById<PDBSymbolTypeUDT>(getClassParentId());
|
PDBSymbolTypeFunctionSig.cpp | 30 : Session(PDBSession), 35 : Session(PDBSession), Enumerator(std::move(ArgEnumerator)) {} 45 return Session.getSymbolById(FunctionArgSymbol->getTypeId()); 52 return Session.getSymbolById(FunctionArgSymbol->getTypeId()); 59 return new FunctionArgEnumerator(Session, std::move(Clone)); 63 const IPDBSession &Session; 73 return Session.getSymbolById(getTypeId()); 78 return llvm::make_unique<FunctionArgEnumerator>(Session, *this); 85 return Session.getSymbolById(ClassId);
|
/packages/apps/Camera2/src/com/android/camera/one/v2/core/ |
FrameServer.java | 36 * A Session enables submitting multiple Requests for frames. 39 public interface Session extends SafeCloseable { 57 * Indicates that a session has been closed already, via 58 * {@link FrameServer.Session#close} and no more requests may be submitted. 68 * Creates an exclusive session. Blocks, if necessary, until any existing 69 * exclusive session is closed. 71 * @return A new session which may be used to interact with the underlying 75 public Session createExclusiveSession() throws InterruptedException; 79 * blocking if the session cannot be created immediately. 82 public Session tryCreateExclusiveSession() [all...] |
FrameServerImpl.java | 33 * {@link FrameServer.Session}. 36 public class Session implements FrameServer.Session { 40 private Session() { 76 private final FrameServer.Session mCaptureSession; 80 * @param captureSession The underlying session to manage access to. Note 81 * that this will never close the session. 83 public FrameServerImpl(FrameServer.Session captureSession) { 90 public Session createExclusiveSession() throws InterruptedException { 92 "FrameServer.Session on the same thread.") [all...] |
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/appengine/ |
sessions_ndb.py | 48 class Session(model.Model): 49 """A model to store session data.""" 53 #: Session data, pickled. 58 """Returns a ``Session`` instance by session id. 61 A session id. 63 An existing ``Session`` entity. 67 session = model.Key(cls, sid).get() 68 if session: 69 data = session.dat [all...] |
/external/llvm/tools/llvm-pdbdump/ |
llvm-pdbdump.cpp | 102 std::unique_ptr<IPDBSession> Session; 104 llvm::createPDBReader(PDB_ReaderType::DIA, Path, Session); 127 auto GlobalScope(Session->getGlobalScope());
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/session/ |
Session.java | 16 package org.mockftpserver.core.session;
22 * Represents an FTP session state and behavior
28 public interface Session extends Runnable {
31 * Close the session, closing the underlying sockets
82 * Return the InetAddress representing the client host for this session
88 * Return the InetAddress representing the server host for this session
129 * Return the Set of names under which attributes have been stored on this session.
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/session/ |
Session.java | 16 package org.mockftpserver.core.session;
22 * Represents an FTP session state and behavior
28 public interface Session extends Runnable {
31 * Close the session, closing the underlying sockets
75 * Return the InetAddress representing the client host for this session
81 * Return the InetAddress representing the server host for this session
122 * Return the Set of names under which attributes have been stored on this session.
|
/external/openssh/ |
session.h | 1 /* $OpenBSD: session.h,v 1.31 2013/10/14 21:20:52 djm Exp $ */ 30 typedef struct Session Session; 31 struct Session { 74 void session_destroy_all(void (*)(Session *)); 75 void session_pty_cleanup2(Session *); 77 Session *session_new(void); 78 Session *session_by_tty(char *); 79 void session_close(Session *);
|
/external/llvm/unittests/DebugInfo/PDB/ |
PDBApiTest.cpp | 288 Session.reset(new MockSession()); 341 std::unique_ptr<IPDBSession> Session; 345 auto Symbol = PDBSymbol::create(*Session, std::move(RawSymbol));
|
/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...] |
/frameworks/av/media/libstagefright/foundation/ |
ANetworkSession.cpp | 56 NetworkThread(ANetworkSession *session); 69 struct ANetworkSession::Session : public RefBase { 84 Session(int32_t sessionID, 110 virtual ~Session(); 141 DISALLOW_EVIL_CONSTRUCTORS(Session); 145 ANetworkSession::NetworkThread::NetworkThread(ANetworkSession *session) 146 : mSession(session) { 160 ANetworkSession::Session::Session( 216 ANetworkSession::Session::~Session() 975 sp<Session> session; local 1177 const sp<Session> session = mSessions.valueAt(index); local 1216 const sp<Session> session = mSessions.valueAt(index); local 1234 const sp<Session> session = mSessions.valueAt(index); local 1263 const sp<Session> &session = mSessions.valueAt(i); local 1322 const sp<Session> &session = mSessions.valueAt(i); local 1401 sp<Session> session = *sessionsToAdd.begin(); local [all...] |
/hardware/qcom/display/msm8084/liboverlay/ |
overlay.h | 103 /* pipe reservation session is running */ 105 /* pipe reservation session has ended*/ 107 /* start session for the pipe reservation */ 209 /* Session for reserved pipes */ 210 enum Session { 215 Session mSession;
|
/hardware/qcom/display/msm8226/liboverlay/ |
overlay.h | 104 /* pipe reservation session is running */ 106 /* pipe reservation session has ended*/ 108 /* start session for the pipe reservation */ 217 /* Session for reserved pipes */ 218 enum Session { 223 Session mSession;
|
/hardware/qcom/display/msm8994/liboverlay/ |
overlay.h | 107 /* pipe reservation session is running */ 109 /* pipe reservation session has ended*/ 111 /* start session for the pipe reservation */ 232 /* Session for reserved pipes */ 233 enum Session { 238 Session mSession;
|
/frameworks/base/core/java/android/service/textservice/ |
SpellCheckerService.java | 48 * {@link #createSession()} to provide a spell checker session that is corresponding 49 * to requested language and so on. The spell checker session returned by this method 50 * should extend {@link SpellCheckerService.Session}. 55 * <p>{@link SpellCheckerService.Session#onGetSuggestions(TextInfo, int)} 60 * {@link SpellCheckerService.Session#onGetSuggestionsMultiple(TextInfo[], int, boolean)} for 64 * <p>Please note that {@link SpellCheckerService.Session#getLocale()} does not return a valid 65 * locale before {@link SpellCheckerService.Session#onCreate()} </p> 90 * Factory method to create a spell checker session impl 93 public abstract Session createSession(); 98 public static abstract class Session { [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/session/ |
JDBCSessionManager.java | 20 package org.eclipse.jetty.server.session; 56 * Session data is persisted to the JettySessions table: 59 * contextPath (of the context owning the session) 61 * lastNode (name of node last handled session) 62 * accessTime (time in milliseconds session was accessed) 63 * lastAccessTime (previous time in milliseconds session was accessed) 64 * createTime (time in milliseconds session created) 65 * cookieTime (time in milliseconds session cookie created) 66 * lastSavedTime (last time in milliseconds session access times were saved) 67 * expiryTime (time in milliseconds that the session is due to expire 445 Session session = null; local 622 Session session = null; local 645 Session session = (Session)_sessions.remove(idInCluster); local 673 _sessions.put(session.getClusterId(), session); local 774 Session session = (Session)_sessions.get(sessionId); local [all...] |
/frameworks/base/services/core/java/com/android/server/wm/ |
Session.java | 52 * This class represents an active client session. There is generally one 53 * Session object per process that is interacting with the window manager. 55 final class Session extends IWindowSession.Stub 69 public Session(WindowManagerService service, IWindowSessionCallback callback, 79 sb.append("Session{"); 134 Slog.wtf(WindowManagerService.TAG, "Window Session Crash", e); 481 WindowManagerService.TAG, " NEW SURFACE SESSION " + mSurfaceSession); 503 WindowManagerService.TAG, " KILL SURFACE SESSION " + mSurfaceSession); 507 Slog.w(WindowManagerService.TAG, "Exception thrown when killing surface session " 508 + mSurfaceSession + " in session " + thi [all...] |