/packages/apps/Camera2/src/com/android/camera/captureintent/ |
CaptureIntentSessionFactory.java | 21 import com.android.camera.session.CaptureSession; 22 import com.android.camera.session.CaptureSessionFactory; 23 import com.android.camera.session.CaptureSessionManager; 24 import com.android.camera.session.SessionNotifier;
|
/system/connectivity/shill/init/ |
shill-start-user-session.conf | 17 description "Perform connection-manager-specific session setup tasks." 21 # before session manager calls this step done. 22 start on start-user-session 26 # session_manager via the 'start-user-session' event.
|
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
MediaControlIntent.java | 118 * Each remote media playback action is conducted within the scope of a session. 120 * another because at most one session can be valid at a time. 122 * A session can be created using the {@link #ACTION_START_SESSION start session action} 123 * and terminated using the {@link #ACTION_END_SESSION end session action} when the 124 * route provides explicit session management features. 126 * Explicit session management was added in a later revision of the protocol so not 127 * all routes support it. If the route does not support explicit session management 128 * then implicit session management may still be used. Implicit session managemen [all...] |
/external/autotest/client/site_tests/desktopui_ExitOnSupervisedUserCrash/ |
desktopui_ExitOnSupervisedUserCrash.py | 34 # Crashing the browser should not end the session, as creating the 39 # and it should indicate that we're still inside a user session. 43 raise error.TestError('Failed to retrieve session state: ', e) 45 raise error.TestFail('Session should not have ended: ', state) 47 # Start listening to stop signal before the session gets killed. 51 # and kill it in the middle. Session should die. 61 listener.wait_for_signals(desc='Session stopped.',
|
/external/dbus/doc/ |
dbus-monitor.1 | 11 [\-\-system | \-\-session | \-\-address ADDRESS] [\-\-profile | \-\-monitor] 24 per\-user\-login\-session message bus (started each time a user logs in). 25 The \-\-system and \-\-session options direct \fIdbus\-monitor\fP to 26 monitor the system or session buses respectively. If neither is 27 specified, \fIdbus\-monitor\fP monitors the session bus. 51 .I "\-\-session" 52 Monitor the session message bus. (This is the default.)
|
/external/google-breakpad/src/common/windows/ |
dia_util.h | 39 // Find the debug stream of the given |name| in the given |session|. Returns 43 IDiaSession* session, 47 // given |session|. Returns true on success, false on error or if no such 49 bool FindTable(REFIID iid, IDiaSession* session, void** table); 52 // |InterfaceType| in the given |session|. Returns true on success, false on 56 bool FindTable(IDiaSession* session, InterfaceType** table) { 58 session,
|
/external/libmicrohttpd/src/microspdy/ |
stream.h | 32 * Reads data from session's read buffer and tries to create a new SPDY 35 * received the function changes the read handler of the session and 38 * @param session SPDY_Session whose read buffer is being read 44 SPDYF_stream_new (struct SPDY_Session *session); 67 * Find and return a session's stream, based on stream's ID. 70 * @param session whose streams are considered 74 SPDYF_stream_find(uint32_t stream_id, struct SPDY_Session * session);
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
AbstractTrackingCommandHandler.java | 19 import org.mockftpserver.core.session.Session;
44 * Handle the specified command for the session. This method is declared to throw Exception,
49 * @param session - the session on which the Command was submitted
51 * @throws AssertFailedException - if the command or session is null
53 * org.mockftpserver.core.session.Session)
55 public final void handleCommand(Command command, Session session) throws Exception { [all...] |
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/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
AlloCommandHandler.java | 22 import org.mockftpserver.core.session.Session;
55 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
57 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
70 sendReply(session);
|
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);
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/ |
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);
|
UserCommandHandler.java | 25 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, null);
68 sendReply(session);
|
/packages/apps/Camera2/src/com/android/camera/processing/ |
ProcessingTask.java | 23 import com.android.camera.session.CaptureSession; 38 * @param session the capture session for the processed task. 40 public ProcessingResult(boolean success, CaptureSession session) { 42 mSession = session; 64 * @param session the {@code CaptureSession} 68 CaptureSession session);
|
/packages/apps/Camera2/src/com/android/camera/session/ |
SessionStorageManager.java | 17 package com.android.camera.session; 25 * Interface for the session storage manager which handles management of storage 26 * space that can be used for temporary session files. 35 * clean of expired session data. 38 * session space, e.g. "foo". 45 * Initializes the directories for storing the final session output 52 * @param title the title of this session. Will be used to create a unique
|
SessionStorageManagerImpl.java | 17 package com.android.camera.session; 34 /** Delete temporary session directory remnants after ONE day. */ 41 * This is where we used to store temp session data, but it was the wrong 51 * @return A session storage manager. 67 throw new IOException("Could not create session directory: " + sessionDirectory); 71 throw new IOException("Session directory is not a directory: " + sessionDirectory); 91 Log.e(TAG, "Could not get temp session directory", e); 92 throw new IOException("Could not get temp session directory", e); 105 Log.e(TAG, "Could not create temp session file", e); 106 throw new IOException("Could not create temp session file", e) [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/ |
flup_session.py | 5 Creates a session object. 9 environ['paste.flup_session_service'].session 12 be saved to disk when the request is completed. The session will be 13 created when you first fetch the session dictionary, and a cookie will 15 cookies, and there's no way to delete a session except to clear its 21 import flup.middleware.session namespace 22 flup_session = flup.middleware.session 42 '/tmp/session.shelve')]), 101 Wraps the application in a session-managing middleware. 102 The session service can then be found i [all...] |
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLSessionImpl.java | 56 * Class constructor creates an SSL session context given the appropriate 71 * Constructs a session from a byte[] containing an SSL session serialized with DER encoding. 74 * @throws IOException if the serialized session data can not be parsed 84 * Gets the identifier of the actual SSL session 97 * SSL_SESSION. It can change during the lifetime of the session 98 * because while a session is created during initial handshake, 100 * before we have read the session ticket from the server side and 108 * Get the session object in DER format. This allows saving the session [all...] |
/external/dbus/ |
README.launchd | 2 dbus uses this service to provide a common session bus address for each user 14 After installation, to prevent a reboot, load the dbus session starter into 16 $ launchctl load /Library/LaunchAgents/org.freedesktop.dbus-session.plist 20 use a session bus since launchd manages its agents on a per user basis. 34 address, as the default session config does with env=DBUS_LAUNCHD_SESSION_BUS_SOCKET, 43 /Library/LaunchAgents/org.freedesktop.dbus-session.plist, change the label 46 in the config file for your new bus in the <listen> element (see session.config). 49 "--session". Now load the new plist onto launchd as described in the setup 58 /Library/LaunchAgents/org.freedesktop.dbus-session.plist to change it. 61 but if it's not set, launchd is queried for the session bus socket [all...] |
/external/libmicrohttpd/doc/chapters/ |
sessions.inc | 4 this is a network protocol, our session mechanism must support having many users with 7 In order to track users, we use a simple session cookie. A session cookie expires when the 8 user closes the browser. Changing from session cookies to persistent cookies only requires 9 adding an expiration time to the cookie. The server creates a fresh session cookie whenever 10 a request without a cookie is received, or if the supplied session cookie is not known to 22 Here, FIXME is the name we chose for our session cookie. 43 @heading Remark: Session expiration 58 POST requests from the same session) is available 68 Naturally, it is quite conceivable to store session data in a databas [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/session/ |
DefaultSession.java | 16 package org.mockftpserver.core.session;
51 * Default implementation of the {@link Session} interface.
56 public class DefaultSession implements Session {
96 * Return the InetAddress representing the client host for this session
99 * @see org.mockftpserver.core.session.Session#getClientHost()
106 * Return the InetAddress representing the server host for this session
109 * @see org.mockftpserver.core.session.Session#getServerHost()
150 * @see org.mockftpserver.core.session.Session#openDataConnection() [all...] |
/hardware/ti/omap4-aah/security/tf_crypto_sst/ |
pkcs11_internal.h | 89 /* nSessionTag must be set to {PKCS11_PRIMARY_SESSION_TAG} for primary session 90 * to {PKCS11_SECONDARY_SESSION_TAG} for secondary session */ 96 * The PKCS11 Primary session context 103 /* TEEC session used for this cryptoki primary session. 104 Each primary session has its own TEEC session */ 117 * The PKCS11 Secondary session context 124 /* Secondary session handle as returned by pkcs11 */ 130 /* pointer to the primary session */ [all...] |
/hardware/ti/omap4xxx/security/tf_crypto_sst/ |
pkcs11_internal.h | 89 /* nSessionTag must be set to {PKCS11_PRIMARY_SESSION_TAG} for primary session 90 * to {PKCS11_SECONDARY_SESSION_TAG} for secondary session */ 96 * The PKCS11 Primary session context 103 /* TEEC session used for this cryptoki primary session. 104 Each primary session has its own TEEC session */ 117 * The PKCS11 Secondary session context 124 /* Secondary session handle as returned by pkcs11 */ 130 /* pointer to the primary session */ [all...] |
/frameworks/base/core/java/android/hardware/camera2/ |
CameraCaptureSession.java | 28 * A configured capture session for a {@link CameraDevice}, used for capturing images from the 29 * camera or reprocessing images captured from the camera in the same session previously. 35 * reprocessable capture session. Once created, the session is active until a new session is 39 * capture sessions can reprocess images captured from the camera in the same session previously. 42 * <p>Creating a session is an expensive operation and can take several hundred milliseconds, since 51 * session will not become active.</p> 53 * <p>Any capture requests (repeating or non-repeating) submitted before the session is ready will 54 * be queued up and will begin capture once the session becomes ready. In case the session cannot b [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/ |
SessionManager.java | 31 import org.eclipse.jetty.server.session.SessionHandler; 36 * Session Manager. 48 * Session cookie name. 58 * Session id path parameter name. 70 * Session Domain. 72 * used as the domain for session cookies. If it is not set, then 73 * no domain is specified for the session cookie. 81 * Session Path. 83 * used as the path for the session cookie. If it is not set, then 90 * Session Max Age [all...] |