/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
HelpCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
52 * @see org.mockftpserver.core.command.AbstractTrackingCommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
54 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
56 sendReply(session, helpMessage);
|
StatCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
53 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
62 sendReply(session, status);
|
SystCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
49 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
50 sendReply(session, quotes(systemName));
|
TypeCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
48 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
50 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
55 sendReply(session);
|
UserCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
51 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
53 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
59 sendReply(session, code, replyMessageKey, replyText, null);
61 sendReply(session);
|
FileRetrCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
73 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
75 protected void beforeProcessData(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
81 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
83 protected void processData(Command command, Session session, InvocationRecord invocationRecord) { [all...] |
RetrCommandHandler.java | 21 import org.mockftpserver.core.session.Session;
74 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
76 protected void beforeProcessData(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
82 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
84 protected void processData(Command command, Session session, InvocationRecord invocationRecord) { [all...] |
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/ |
HelpCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
53 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
55 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
57 sendReply(session, helpMessage);
|
StatCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
56 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
58 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
68 sendReply(session, status);
|
SystCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
52 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
54 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
55 sendReply(session, quotes(systemName));
|
TypeCommandHandler.java | 23 import org.mockftpserver.core.session.Session;
52 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
54 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
59 sendReply(session);
|
FileRetrCommandHandler.java | 27 import org.mockftpserver.core.session.Session;
76 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
78 protected void beforeProcessData(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
84 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
86 protected void processData(Command command, Session session, InvocationRecord invocationRecord) { [all...] |
RetrCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
73 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
75 protected void beforeProcessData(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
81 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
83 protected void processData(Command command, Session session, InvocationRecord invocationRecord) { [all...] |
StouCommandHandler.java | 23 import org.mockftpserver.core.session.Session;
50 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
52 protected void processData(Command command, Session session, InvocationRecord invocationRecord) {
53 byte[] data = session.readData();
61 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#sendFinalReply(org.mockftpserver.core.session.Session)
63 protected void sendFinalReply(Session session) { [all...] |
/external/llvm/include/llvm/DebugInfo/PDB/DIA/ |
DIAEnumSourceFiles.h | 32 const DIASession &Session;
|
DIASession.h | 23 std::unique_ptr<IPDBSession> &Session); 25 std::unique_ptr<IPDBSession> &Session); 47 CComPtr<IDiaSession> Session;
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/ |
StubFtpServerTest.java | 23 import org.mockftpserver.core.session.Session;
91 protected void handleCommand(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
97 public void handleCommand(Command command, Session session) throws Exception {
112 protected void handleCommand(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
|
/frameworks/av/drm/mediadrm/plugins/clearkey/ |
DrmPlugin.cpp | 26 #include "Session.h" 33 sp<Session> session = mSessionLibrary->createSession(); local 34 sessionId = session->sessionId(); 39 sp<Session> session = mSessionLibrary->findSession(sessionId); local 40 if (session.get()) { 41 mSessionLibrary->destroySession(session); 61 sp<Session> session = mSessionLibrary->findSession(scope) local 72 sp<Session> session = mSessionLibrary->findSession(scope); local [all...] |
Session.cpp | 24 #include "Session.h" 37 status_t Session::getKeyRequest( 45 status_t Session::provideKeyResponse(const Vector<uint8_t>& response) { 64 status_t Session::decrypt(
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
_AbstractStaticReplyCommandHandlerTest.java | 21 import org.mockftpserver.core.session.Session;
50 private Session session;
field in class:_AbstractStaticReplyCommandHandlerTest 53 * Test the sendReply(Session) method
56 session.sendReply(REPLY_CODE1, REPLY_TEXT1);
57 replay(session);
60 commandHandler.sendReply(session);
61 verify(session);
65 * Test the sendReply(Session) method, when the replyText has been set [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
_AbstractStubCommandHandlerTest.java | 25 import org.mockftpserver.core.session.Session;
51 private Session session;
field in class:_AbstractStubCommandHandlerTest 55 * Test the sendReply(Session) method
58 session.sendReply(REPLY_CODE1, REPLY_TEXT1);
59 replay(session);
62 commandHandler.sendReply(session);
63 verify(session);
67 * Test the sendReply(Session) method, when the replyText has been set [all...] |
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
BordeauxSessionStorage.java | 30 // This class manages the database for storing the session data. 35 // unique key for the session 60 throw new RuntimeException("Can't open session database"); 101 private BordeauxSessionManager.Session getSessionFromCursor(Cursor cursor) { 102 BordeauxSessionManager.Session session = new BordeauxSessionManager.Session(); local 105 session.learnerClass = Class.forName(className); 106 session.learner = (IBordeauxLearner) session.learnerClass.getConstructor().newInstance() 139 BordeauxSessionManager.Session session = getSessionFromCursor(cursor); local [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...] |
/external/libmicrohttpd/doc/examples/ |
sessions.c | 87 #define COOKIE_NAME "session" 91 * State we keep for each user/session/browser. 93 struct Session 98 struct Session *next; 101 * Unique ID for this session. 107 * currently using this session. 112 * Time when this session was last active. 136 * Associated session. 138 struct Session *session; member in struct:Request 481 struct Session *session = request->session; local 565 struct Session *session; local [all...] |
/external/libmicrohttpd/src/examples/ |
post_example.c | 65 #define COOKIE_NAME "session" 69 * State we keep for each user/session/browser. 71 struct Session 76 struct Session *next; 79 * Unique ID for this session. 85 * currently using this session. 90 * Time when this session was last active. 114 * Associated session. 116 struct Session *session; member in struct:Request 465 struct Session *session = request->session; local 548 struct Session *session; local [all...] |