/prebuilts/maven_repo/android/com/android/support/support-v4/22.0.0/ |
support-v4-22.0.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/22.1.0/ |
support-v4-22.1.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/22.1.1/ |
support-v4-22.1.1.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/22.2.0/ |
support-v4-22.2.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/22.2.1/ |
support-v4-22.2.1.aar | |
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/ |
BlockingSessionCallback.java | 37 * A camera session listener that implements blocking operations on session state changes. 48 * Session is configured, ready for captures 53 * Session has failed to configure, can't do any captures 58 * Session is ready 63 * Session is active (transitory) 68 * Session is closed 96 * Create a blocking session listener without forwarding the session listener invocations 97 * to another session listener [all...] |
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
SessionRoute.cpp | 38 bool SessionRouteMap::hasRoute(audio_session_t session) 40 return indexOfKey(session) >= 0 && valueFor(session)->mDeviceDescriptor != 0; 43 bool SessionRouteMap::hasRouteChanged(audio_session_t session) 45 if (indexOfKey(session) >= 0) { 46 if (valueFor(session)->mChanged) { 47 valueFor(session)->mChanged = false; 54 void SessionRouteMap::removeRoute(audio_session_t session) 56 sp<SessionRoute> route = indexOfKey(session) >= 0 ? valueFor(session) : 0 [all...] |
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/ |
StubSession.groovy | 16 package org.mockftpserver.core.session
19 * Stub implementation of the {@link Session} interface for testing
25 class StubSession implements Session {
41 * @see org.mockftpserver.core.session.Session#close()
48 * @see org.mockftpserver.core.session.Session#closeDataConnection()
55 * @see org.mockftpserver.core.session.Session#getAttribute(java.lang.String)
62 * @see org.mockftpserver.core.session.Session#getAttributeNames() [all...] |
/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/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
_AbstractStubDataCommandHandlerTest.java | 22 import org.mockftpserver.core.session.Session;
49 private Session session;
field in class:_AbstractStubDataCommandHandlerTest 58 session.sendReply(150, REPLY_TEXT150);
59 session.openDataConnection();
60 session.sendReply(222, REPLY_TEXT222);
61 session.sendReply(333, REPLY_TEXT333);
62 session.sendReply(444, REPLY_TEXT444);
63 session.closeDataConnection(); [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...] |
_AbstractStubDataCommandHandlerTest.java | 24 import org.mockftpserver.core.session.Session;
49 private Session session;
field in class:_AbstractStubDataCommandHandlerTest 58 session.sendReply(150, REPLY_TEXT150);
59 session.openDataConnection();
60 session.sendReply(222, REPLY_TEXT222);
61 session.sendReply(333, REPLY_TEXT333);
62 session.sendReply(444, REPLY_TEXT444);
63 session.closeDataConnection(); [all...] |
/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/ |
CaptureSessionCreator.java | 38 * @param device The device on which to create the capture session. 39 * @param cameraHandler The handler on which to process capture session 48 * Asynchronously creates a capture session, returning a future to it. 51 * session. 52 * @return A Future for the camera capture session. 60 public void onActive(CameraCaptureSessionProxy session) { 65 public void onConfigureFailed(CameraCaptureSessionProxy session) { 67 session.close(); 71 public void onConfigured(CameraCaptureSessionProxy session) { 72 boolean valueSet = sessionFuture.set(session); [all...] |
/external/conscrypt/src/main/java/org/conscrypt/ |
SSLServerSessionCache.java | 25 * a session started by a different server based on a session ID provided 30 * session data is dependent upon the caller's implementation and is opaque to 36 * Gets the session data for given session ID. 39 * @return the session data or null if none is cached 45 * Stores session data for the given session. 47 * @param session to cache data for 49 * @throws NullPointerException if session or data is nul [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
CdupCommandHandler.java | 20 import org.mockftpserver.core.session.Session;
21 import org.mockftpserver.core.session.SessionKeys;
29 * <li>Otherwise, reply with 200 and change the current directory stored in the session to the parent directory</li>
37 protected void handle(Command command, Session session) {
38 verifyLoggedIn(session);
39 String currentDirectory = (String) getRequiredSessionAttribute(session, SessionKeys.CURRENT_DIRECTORY);
47 verifyExecutePermission(session, path);
49 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, path); [all...] |
RnfrCommandHandler.java | 20 import org.mockftpserver.core.session.Session;
21 import org.mockftpserver.core.session.SessionKeys;
30 * <li>Otherwise, reply with 350 and store the FROM path in the session</li>
39 protected void handle(Command command, Session session) {
40 verifyLoggedIn(session);
41 String fromPath = getRealPath(session, command.getRequiredParameter(0));
47 verifyReadPermission(session, fromPath);
49 session.setAttribute(SessionKeys.RENAME_FROM, fromPath); [all...] |
UserCommandHandler.java | 20 import org.mockftpserver.core.session.Session;
21 import org.mockftpserver.core.session.SessionKeys;
30 * current directory in the session, and reply with 230</li>
31 * <li>Otherwise, set the username in the session and reply with 331</li>
39 protected void handle(Command command, Session session) {
44 if (!validateUserAccount(username, session)) {
50 login(userAccount, session, ReplyCodes.USER_LOGGED_IN_OK, "user.loggedIn");
54 session.setAttribute(SessionKeys.USERNAME, username); [all...] |
PwdCommandHandler.java | 20 import org.mockftpserver.core.session.Session;
21 import org.mockftpserver.core.session.SessionKeys;
26 * <li>If the required "current directory" property is missing from the session, then reply with 550</li>
35 protected void handle(Command command, Session session) {
36 String currentDirectory = (String) session.getAttribute(SessionKeys.CURRENT_DIRECTORY);
39 sendReply(session, ReplyCodes.PWD_OK, "pwd", list(currentDirectory));
|
TypeCommandHandler.java | 20 import org.mockftpserver.core.session.Session;
21 import org.mockftpserver.core.session.SessionKeys;
35 protected void handle(Command command, Session session) {
36 verifyLoggedIn(session);
39 session.setAttribute(SessionKeys.ASCII_TYPE, Boolean.valueOf(asciiType));
40 sendReply(session, ReplyCodes.TYPE_OK, "type");
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/ |
_AbstractCommandHandlerTest.java | 23 import org.mockftpserver.core.session.Session;
55 private Session session;
field in class:_AbstractCommandHandlerTest 59 * Test the handleCommand(Command,Session) method
63 commandHandler.handleCommand(COMMAND, session);
69 * Test the handleCommand(Command,Session) method, passing in a null Command
73 commandHandler.handleCommand(null, session);
82 * Test the handleCommand(Command,Session) method, passing in a null Session
[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/nist-sip/java/javax/sip/header/ |
ContentDispositionHeader.java | 9 String SESSION = "Session";
|
/external/openssh/contrib/redhat/ |
sshd.pam.old | 7 session required /lib/security/pam_pwdb.so 8 session required /lib/security/pam_limits.so
|
/external/openssh/contrib/ |
sshd.pam.generic | 7 session required /lib/security/pam_unix.so 8 session required /lib/security/pam_limits.so
|
/external/selinux/policycoreutils/newrole/ |
newrole.pamd | 7 session include system-auth 8 session optional pam_xauth.so
|