HomeSort by relevance Sort by last modified time
    Searched refs:Session (Results 1 - 25 of 318) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
CommandHandler.java 18 import org.mockftpserver.core.session.Session;
30 * Handle the specified command for the session. This method is declared to throw
36 * @param session - the session on which the Command was submitted
40 public void handleCommand(Command command, Session session) throws Exception;
ConnectCommandHandler.java 18 import org.mockftpserver.core.session.Session;
42 * @see AbstractTrackingCommandHandler#handleCommand(Command, org.mockftpserver.core.session.Session, InvocationRecord)
44 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
45 sendReply(session);
UnsupportedCommandHandler.java 18 import org.mockftpserver.core.session.Session;
42 * @see org.mockftpserver.core.command.AbstractTrackingCommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
44 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
46 sendReply(session, command.getName());
StaticReplyCommandHandler.java 18 import org.mockftpserver.core.session.Session;
63 * @see AbstractTrackingCommandHandler#handleCommand(Command, org.mockftpserver.core.session.Session, InvocationRecord)
65 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
66 sendReply(session);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
CommandHandler.java 18 import org.mockftpserver.core.session.Session;
30 * Handle the specified command for the session. This method is declared to throw
36 * @param session - the session on which the Command was submitted
40 public void handleCommand(Command command, Session session) throws Exception;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSessionFactory.java 19 import android.service.textservice.SpellCheckerService.Session;
22 public static Session newInstance(AndroidSpellCheckerService service) {
  /external/llvm/lib/DebugInfo/PDB/
PDB.cpp 24 std::unique_ptr<IPDBSession> &Session) {
27 return DIASession::createFromPdb(Path, Session);
33 std::unique_ptr<IPDBSession> &Session) {
36 return DIASession::createFromExe(Path, Session);
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);
PDBSymbolTypeEnum.cpp 26 return Session.getConcreteSymbolById<PDBSymbolTypeUDT>(getClassParentId());
31 return Session.getConcreteSymbolById<PDBSymbolTypeBuiltin>(getTypeId());
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
TestCommandHandler.groovy 19 import org.mockftpserver.core.session.Session
31 protected void handle(Command command, Session session) {
TestCommandHandlerNotServerConfigurationAware.groovy 20 import org.mockftpserver.core.session.Session
31 public void handleCommand(Command command, Session session) {
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
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/llvm/include/llvm/DebugInfo/PDB/
PDB.h 20 std::unique_ptr<IPDBSession> &Session);
23 std::unique_ptr<IPDBSession> &Session);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AborCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.ABOR_OK, "abor");
AlloCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.ALLO_OK, "allo");
ModeCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.MODE_OK, "mode");
NoopCommandHandler.java 20 import org.mockftpserver.core.session.Session;
33 protected void handle(Command command, Session session) {
34 sendReply(session, ReplyCodes.NOOP_OK, "noop");
QuitCommandHandler.java 20 import org.mockftpserver.core.session.Session;
23 * CommandHandler for the QUIT command. Return a reply code of 221 and close the current session.
30 protected void handle(Command command, Session session) {
31 sendReply(session, ReplyCodes.QUIT_OK, "quit");
32 session.close();
RestCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.REST_OK, "rest");
SiteCommandHandler.java 20 import org.mockftpserver.core.session.Session;
33 protected void handle(Command command, Session session) {
34 verifyLoggedIn(session);
35 sendReply(session, ReplyCodes.SITE_OK, "site");
SmntCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.SMNT_OK, "smnt");
StruCommandHandler.java 20 import org.mockftpserver.core.session.Session;
34 protected void handle(Command command, Session session) {
35 verifyLoggedIn(session);
36 sendReply(session, ReplyCodes.STRU_OK, "stru");
  /frameworks/av/drm/mediadrm/plugins/clearkey/
SessionLibrary.h 25 #include "Session.h"
34 const android::sp<Session>& createSession();
36 const android::sp<Session>& findSession(
39 void destroySession(const android::sp<Session>& session);
51 android::DefaultKeyedVector<android::Vector<uint8_t>, android::sp<Session> >
  /external/llvm/include/llvm/DebugInfo/PDB/DIA/
DIAEnumSymbols.h 22 explicit DIAEnumSymbols(const DIASession &Session,
32 const DIASession &Session;
DIASourceFile.h 21 explicit DIASourceFile(const DIASession &Session,
31 const DIASession &Session;

Completed in 379 milliseconds

1 2 3 4 5 6 7 8 91011>>