HomeSort by relevance Sort by last modified time
    Searched full:session (Results 251 - 275 of 4517) sorted by null

<<11121314151617181920>>

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
PasvCommandHandler.java 20 import org.mockftpserver.core.session.Session;
29 * <li>Otherwise, request the Session to switch to passive data connection mode. Return a reply code of 227,
41 protected void handle(Command command, Session session) {
42 verifyLoggedIn(session);
44 int port = session.switchToPassiveMode();
45 InetAddress server = session.getServerHost();
49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort));
NoopCommandHandler.java 20 import org.mockftpserver.core.session.Session;
33 protected void handle(Command command, Session session) {
34 sendReply(session, ReplyCodes.NOOP_OK, "noop");
StatCommandHandler.java 20 import org.mockftpserver.core.session.Session;
36 protected void handle(Command command, Session session) {
38 sendReply(session, ReplyCodes.STAT_SYSTEM_OK, "stat", list(systemStatus));
SystCommandHandler.java 20 import org.mockftpserver.core.session.Session;
38 protected void handle(Command command, Session session) {
39 sendReply(session, ReplyCodes.SYST_OK, "syst", list(getServerConfiguration().getSystemName()));
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
EprtCommandHandler.java 22 import org.mockftpserver.core.session.Session;
57 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
59 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) throws UnknownHostException {
64 session.setClientDataHost(client.host);
65 session.setClientDataPort(client.port);
68 sendReply(session);
PortCommandHandler.java 22 import org.mockftpserver.core.session.Session;
56 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
58 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) throws UnknownHostException {
61 session.setClientDataHost(client.host);
62 session.setClientDataPort(client.port);
65 sendReply(session);
AborCommandHandler.java 22 import org.mockftpserver.core.session.Session;
41 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
42 sendReply(session);
CdupCommandHandler.java 22 import org.mockftpserver.core.session.Session;
41 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
42 sendReply(session);
NoopCommandHandler.java 22 import org.mockftpserver.core.session.Session;
41 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
42 sendReply(session);
ReinCommandHandler.java 22 import org.mockftpserver.core.session.Session;
42 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
43 sendReply(session);
  /hardware/intel/img/psb_headers/DRM/cc54/inc/
drm_common_api.h 107 * Create a DRM session
114 * Destroy the specified DRM session
121 * Keeps an active DRM session from timing out
136 * @brief Pauses the playback of a video decryption session.
137 * @param session_id The ID number of the session to pause playback.
138 * @return DRM_SUCCESSFUL The video decryption session was paused.
145 * @brief Resumes the playback of a paused video decryption session.
146 * @param session_id The ID number of the session to resume playback.
147 * @return DRM_SUCCESSFUL The video decryption session was resumed.
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
BaseTunerTvInputService.java 82 public Session onCreateSession(String inputId) {
84 final TunerSession session = new TunerSession( local
86 mTunerSessions.add(session);
87 session.setAudioCapabilities(mAudioCapabilities);
88 session.setOverlayViewEnabled(true);
89 return session;
95 for (TunerSession session : mTunerSessions) {
96 if (!session.isReleased()) {
97 session.setAudioCapabilities(audioCapabilities);
  /external/autotest/client/virt/tests/
linux_s3.py 16 session = vm.wait_for_login(timeout=timeout)
19 session.cmd("grep -q mem /sys/power/state")
24 src_tty = session.cmd_output("fgconsole").strip()
37 session.cmd(command, timeout=suspend_timeout)
41 session.close()
whql_client_install.py 26 session = vm.wait_for_login(timeout=int(params.get("login_timeout", 360)))
48 virt_test_utils.stop_windows_service(session, svc)
55 # Open a shell session with server
58 session.prompt, session.linesep)
59 server_session.set_status_test_command(session.status_test_command)
64 client_name = session.cmd_output(cmd).strip()
88 session.cmd(cmd, timeout=600)
94 session.cmd(cmd, timeout=600)
99 session.cmd(cmd, timeout=300
    [all...]
  /external/curl/tests/data/
test570 24 Session: asdf
31 Session: asdfWRONG
32 Informational: Session ID mismatch
50 RTSP CSeq and Session Mismatch checks
71 Session: asdf
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
QuitCommandHandlerTest.java 38 session.sendReply(ReplyCodes.QUIT_OK, replyTextFor(ReplyCodes.QUIT_OK));
39 session.close();
40 replay(session);
42 commandHandler.handleCommand(COMMAND, session);
43 verify(session);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
QuitCommandHandlerTest.java 40 session.sendReply(ReplyCodes.QUIT_OK, replyTextFor(ReplyCodes.QUIT_OK));
41 session.close();
42 replay(session);
44 commandHandler.handleCommand(COMMAND, session);
45 verify(session);
  /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...]
  /packages/apps/Bluetooth/res/values/
strings_pbap.xml 3 <string name="pbap_session_key_dialog_title">Type session key for %1$s</string>
4 <string name="pbap_session_key_dialog_header">Bluetooth session key required</string>
6 <string name="pbap_authentication_timeout_message">There was time out to input session key with %1$s</string>
9 <string name="auth_notif_title">Session Key</string>
11 <string name="auth_notif_message">Type session key for %1$s</string>
  /packages/apps/Bluetooth/res/values-en-rAU/
strings_pbap.xml 4 <string name="pbap_session_key_dialog_title" msgid="3580996574333882561">"Type session key for %1$s"</string>
5 <string name="pbap_session_key_dialog_header" msgid="2772472422782758981">"Bluetooth session key required"</string>
7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"There was time out to input session key with %1$s"</string>
9 <string name="auth_notif_title" msgid="7599854855681573258">"Session Key"</string>
10 <string name="auth_notif_message" msgid="6667218116427605038">"Type session key for %1$s"</string>
  /packages/apps/Bluetooth/res/values-en-rGB/
strings_map.xml 4 <string name="map_session_key_dialog_title" msgid="4357431314165953502">"Type session key for %1$s"</string>
5 <string name="map_session_key_dialog_header" msgid="1858363785687455516">"Bluetooth session key required"</string>
7 <string name="map_authentication_timeout_message" msgid="2151423397615327066">"There was time out to input session key with %1$s"</string>
9 <string name="map_auth_notif_title" msgid="301767019364765129">"Session Key"</string>
10 <string name="map_auth_notif_message" msgid="1510095655064214863">"Type session key for %1$s"</string>
strings_pbap.xml 4 <string name="pbap_session_key_dialog_title" msgid="3580996574333882561">"Type session key for %1$s"</string>
5 <string name="pbap_session_key_dialog_header" msgid="2772472422782758981">"Bluetooth session key required"</string>
7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"There was time out to input session key with %1$s"</string>
9 <string name="auth_notif_title" msgid="7599854855681573258">"Session Key"</string>
10 <string name="auth_notif_message" msgid="6667218116427605038">"Type session key for %1$s"</string>
  /packages/apps/Bluetooth/res/values-en-rIN/
strings_map.xml 4 <string name="map_session_key_dialog_title" msgid="4357431314165953502">"Type session key for %1$s"</string>
5 <string name="map_session_key_dialog_header" msgid="1858363785687455516">"Bluetooth session key required"</string>
7 <string name="map_authentication_timeout_message" msgid="2151423397615327066">"There was time out to input session key with %1$s"</string>
9 <string name="map_auth_notif_title" msgid="301767019364765129">"Session Key"</string>
10 <string name="map_auth_notif_message" msgid="1510095655064214863">"Type session key for %1$s"</string>
strings_pbap.xml 4 <string name="pbap_session_key_dialog_title" msgid="3580996574333882561">"Type session key for %1$s"</string>
5 <string name="pbap_session_key_dialog_header" msgid="2772472422782758981">"Bluetooth session key required"</string>
7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"There was time out to input session key with %1$s"</string>
9 <string name="auth_notif_title" msgid="7599854855681573258">"Session Key"</string>
10 <string name="auth_notif_message" msgid="6667218116427605038">"Type session key for %1$s"</string>
  /packages/apps/Bluetooth/res/values-fr/
strings_map.xml 4 <string name="map_session_key_dialog_title" msgid="4357431314165953502">"Saisir la clé de session pour \"%1$s\""</string>
5 <string name="map_session_key_dialog_header" msgid="1858363785687455516">"Clé de session Bluetooth requise"</string>
7 <string name="map_authentication_timeout_message" msgid="2151423397615327066">"Délai d\'attente dépassé pour la saisie de la clé de session avec \"%1$s\"."</string>
9 <string name="map_auth_notif_title" msgid="301767019364765129">"Clé de session"</string>
10 <string name="map_auth_notif_message" msgid="1510095655064214863">"Saisir la clé de session pour \"%1$s\""</string>

Completed in 2827 milliseconds

<<11121314151617181920>>