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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/telecomm/java/android/telecom/Logging/
Session.aidl 22 parcelable Session.Info
  /prebuilts/go/darwin-x86/test/fixedbugs/issue5614.dir/
x.go 5 var S *rethinkgo.Session
  /prebuilts/go/linux-x86/test/fixedbugs/issue5614.dir/
x.go 5 var S *rethinkgo.Session
  /frameworks/base/telecomm/java/com/android/internal/telecom/
IConnectionServiceAdapter.aidl 24 import android.telecom.Logging.Session;
44 in Session.Info sessionInfo);
46 void setActive(String callId, in Session.Info sessionInfo);
48 void setRinging(String callId, in Session.Info sessionInfo);
50 void setDialing(String callId, in Session.Info sessionInfo);
52 void setPulling(String callId, in Session.Info sessionInfo);
55 in Session.Info sessionInfo);
57 void setOnHold(String callId, in Session.Info sessionInfo);
59 void setRingbackRequested(String callId, boolean ringing, in Session.Info sessionInfo);
62 in Session.Info sessionInfo)
    [all...]
IConnectionService.aidl 23 import android.telecom.Logging.Session;
37 in Session.Info sessionInfo);
40 in Session.Info sessionInfo);
48 in Session.Info sessionInfo);
50 void createConnectionComplete(String callId, in Session.Info sessionInfo);
53 in ConnectionRequest request, boolean isIncoming, in Session.Info sessionInfo);
55 void abort(String callId, in Session.Info sessionInfo);
57 void answerVideo(String callId, int videoState, in Session.Info sessionInfo);
59 void answer(String callId, in Session.Info sessionInfo);
61 void reject(String callId, in Session.Info sessionInfo)
    [all...]
  /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());
  /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;
  /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 *);
  /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 28 std::unique_ptr<IPDBSession> &Session) {
31 return RawSession::createFromPdb(Path, Session);
34 return DIASession::createFromPdb(Path, Session);
41 std::unique_ptr<IPDBSession> &Session) {
44 return RawSession::createFromExe(Path, Session);
47 return DIASession::createFromExe(Path, Session);
  /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 24 std::unique_ptr<IPDBSession> &Session);
27 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");

Completed in 979 milliseconds

1 2 3 4 5 6 7 8 91011>>