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

<<11121314151617181920>>

  /packages/apps/Bluetooth/res/values-fr/
strings_pbap.xml 4 <string name="pbap_session_key_dialog_title" msgid="3580996574333882561">"Entrer la clé de session de %1$s"</string>
5 <string name="pbap_session_key_dialog_header" msgid="2772472422782758981">"Clé de session Bluetooth requise"</string>
7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"Délai d\'attente dépassé pour la saisie de la clé de session avec \"%1$s\""</string>
9 <string name="auth_notif_title" msgid="7599854855681573258">"Clé de session"</string>
10 <string name="auth_notif_message" msgid="6667218116427605038">"Entrer la clé de session de %1$s"</string>
  /packages/apps/Bluetooth/res/values-fr-rCA/
strings_map.xml 4 <string name="map_session_key_dialog_title" msgid="4357431314165953502">"Entrez la clé de session de %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 l\'entrée 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">"Entrez la clé de session de %1$s"</string>
strings_pbap.xml 4 <string name="pbap_session_key_dialog_title" msgid="3580996574333882561">"Entrer la clé de session de %1$s"</string>
5 <string name="pbap_session_key_dialog_header" msgid="2772472422782758981">"Clé de session Bluetooth requise"</string>
7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"Délai d\'attente dépassé pour la saisie de la clé de session avec %1$s"</string>
9 <string name="auth_notif_title" msgid="7599854855681573258">"Clé de session"</string>
10 <string name="auth_notif_message" msgid="6667218116427605038">"Entrer la clé de session de %1$s"</string>
  /packages/apps/Bluetooth/res/values-tl/
strings_map.xml 4 <string name="map_session_key_dialog_title" msgid="4357431314165953502">"I-type ang key ng session para kay %1$s"</string>
5 <string name="map_session_key_dialog_header" msgid="1858363785687455516">"Kinakailangan ang key ng session sa bluetooth"</string>
7 <string name="map_authentication_timeout_message" msgid="2151423397615327066">"Nagkaroon ng time out sa pag-input ng key ng session sa %1$s"</string>
9 <string name="map_auth_notif_title" msgid="301767019364765129">"Key ng Session"</string>
10 <string name="map_auth_notif_message" msgid="1510095655064214863">"I-type ang key ng session para kay %1$s"</string>
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSession.aidl 26 * An IMS session that is associated with a SIP dialog which is established from/to
27 * INVITE request or a mid-call transaction to control the session.
37 * Gets the call ID of the session.
44 * Gets the call profile that this session is associated with
46 * @return the call profile that this session is associated with
51 * Gets the local call profile that this session is associated with
53 * @return the local call profile that this session is associated with
58 * Gets the remote call profile that this session is associated with
60 * @return the remote call profile that this session is associated with
65 * Gets the value associated with the specified property of this session
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLSessionContext.java 38 * Not all environments will contain session contexts.
48 * A session can be retrieved based on its session id, and all session id's
60 * Returns the <code>SSLSession</code> bound to the specified session id.
62 * @param sessionId the Session identifier
64 * the specified session id does not refer to a valid SSLSession.
71 * Returns an Enumeration of all session id's grouped under this
74 * @return an enumeration of all the Session id's
82 * If the timeout limit is set to 't' seconds, a session exceeds th
    [all...]
  /external/autotest/client/tests/kvm/tests/
multi_disk.py 22 session = vm.wait_for_login(timeout=int(params.get("login_timeout", 360)))
37 session.cmd_status_output(cmd)
41 session.cmd(cmd, timeout=cmd_timeout)
43 output = session.cmd_output(cmd, timeout=cmd_timeout)
70 session.cmd(cmd, timeout=cmd_timeout)
73 session.cmd(cmd, timeout=cmd_timeout)
83 session.cmd(cmd, timeout=cmd_timeout)
86 output = session.cmd_output(cmd)
99 output = session.cmd_output(cmd)
106 session.cmd(cmd
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/docs/api/webapp2_extras/
sessions.rst 7 This module provides a lightweight but flexible session support for webapp2.
12 The session store can provide multiple sessions using different keys,
14 :meth:`SessionStore.get_session`. By default it returns a session using the
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
ISessionInfoVisitor.java 15 * Interface for data output of collected session information. This interface is
22 * Provides session information for the subsequent execution data calls. In
26 * session information
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
ListCommandHandler.java 20 import org.mockftpserver.core.session.Session;
49 protected void handle(Command command, Session session) {
50 verifyLoggedIn(session);
51 sendReply(session, ReplyCodes.TRANSFER_DATA_INITIAL_OK);
53 String path = getRealPath(session, command.getParameter(0));
58 verifyReadPermission(session, path);
72 session.openDataConnection();
74 session.sendData(result.getBytes(), result.length());
    [all...]
HelpCommandHandler.java 20 import org.mockftpserver.core.session.Session;
44 protected void handle(Command command, Session session) {
49 sendReply(session, ReplyCodes.HELP_OK, "help.noHelpTextDefined", list(key));
51 sendReply(session, ReplyCodes.HELP_OK, "help", list(help));
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
AbstractStubCommandHandler.java 19 import org.mockftpserver.core.session.Session;
82 * @param session - the Session
86 protected void sendReply(Session session) {
87 sendReply(session, null);
92 * @param session - the Session
97 protected void sendReply(Session session, Object messageParameter) {
    [all...]
StouCommandHandler.java 23 import org.mockftpserver.core.session.Session;
50 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
52 protected void processData(Command command, Session session, InvocationRecord invocationRecord) {
53 byte[] data = session.readData();
61 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#sendFinalReply(org.mockftpserver.core.session.Session)
63 protected void sendFinalReply(Session session) {
    [all...]
  /external/tpm2/
PolicySecret.c 22 // session
31 SESSION *session; local
39 // Get pointer to the session structure
40 session = SessionGet(in->policySession);
42 //Only do input validation if this is not a trial policy session
43 if(session->attributes.isTrialPolicy == CLEAR)
47 authTimeout = expiration * 1000 + session->startTime;
49 result = PolicyParameterChecks(session, authTimeout,
65 &in->cpHashA, authTimeout, session);
    [all...]
StartAuthSession.c 20 // TPM_RC_SESSION_HANDLES no session handle is available
21 // TPM_RC_SESSION_MEMORY no more slots for loading a session
37 SESSION *session; // session internal data local
43 // than the digest size of session hash.
63 // HMAC session input handle check.
98 // Create internal session structure. TPM_RC_CONTEXT_GAP, TPM_RC_NO_HANDLES
101 // The detailed actions for creating the session context are not shown here
113 // Get session pointe
    [all...]
  /frameworks/base/docs/html-intl/intl/ja/training/tv/playback/
now-playing.jd 12 <li><a href="#session">Media Session ?????</a></li>
25 <p>?????????{@link android.media.session.MediaSession} ???????? [???] ?????????????????</p>
27 <h2 id="session">Media Session ?????</h2>
31 <p>??????????{@link android.service.media.MediaBrowserService#onCreate() onCreate()}??????{@link android.media.session.MediaSession#MediaSession(android.content.Context, java.lang.String) MediaSession} ??????????? ????????????????????????{@link android.service.media.MediaBrowserService} ?????? ???????????</p>
43 <p class="note"><strong>??:</strong>[???] ?????{@link android.media.session.MediaSession#FLAG_HANDLES_TRANSPORT_CONTROLS} ????????????? ???????????????</p>
47 <p>[???] ?????????????????????????????{@link android.media.session.MediaSession#setActive(boolean) setActive(true)} ??????????????????<a href="{@docRoot}training/managing-audio/audio-focus">????? ??????????</a>??????????????????? ?????????????????????</p>
60 <p>{@link android.media.session.MediaSession#setActive(boolean) setActive(false)} ???????????????????????????????????? ????????????????????????????? 5?30 ??????????????????????????? ????????????????i???</p>
64 <p>?????? ????????????????????????????????{@link android.media.session.MediaSession} ????????????????????????</p
    [all...]
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
BlockingCaptureCallback.java 125 public void onCaptureStarted(CameraCaptureSession session, CaptureRequest request,
127 if (mProxy != null) mProxy.onCaptureStarted(session, request, timestamp, frameNumber);
132 public void onCaptureProgressed(CameraCaptureSession session, CaptureRequest request,
134 if (mProxy != null) mProxy.onCaptureProgressed(session, request, partialResult);
139 public void onCaptureCompleted(CameraCaptureSession session, CaptureRequest request,
141 if (mProxy != null) mProxy.onCaptureCompleted(session, request, result);
146 public void onCaptureFailed(CameraCaptureSession session, CaptureRequest request,
148 if (mProxy != null) mProxy.onCaptureFailed(session, request, failure);
153 public void onCaptureSequenceCompleted(CameraCaptureSession session, int sequenceId,
155 if (mProxy != null) mProxy.onCaptureSequenceCompleted(session, sequenceId, frameNumber)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
LaunchBrowserMode.java 30 * secured session).
33 /** Close the existing browser session and launch new browser session. */
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
PackageInstallerCompatVL.java 95 // For a finished session, we can't get the session info. So use the
108 SessionInfo session = mInstaller.getSessionInfo(sessionId);
109 if (session != null && session.getAppPackageName() != null) {
110 sendUpdate(new PackageInstallInfo(session.getAppPackageName(),
112 (int) (session.getProgress() * 100)));
125 SessionInfo session = mInstaller.getSessionInfo(sessionId);
126 if (session != null && session.getAppPackageName() != null)
    [all...]
  /system/connectivity/shill/init/
shill-stop-user-session.conf 17 description "Perform connection-manager-related session cleanup tasks."
20 # Use 'start on stopping' and 'task' to hold up restarting the session
22 # session-dependent state.
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
CameraSessionUtils.java 66 * @param device the {@link CameraDevice} to open a session for.
85 public void onConfigured(CameraCaptureSession session) {
86 mSessionQueue.offer(session);
87 super.onConfigured(session);
92 * A blocking listener class for synchronously capturing and results with a session.
108 * @param session the {@link CameraCaptureSession} to use.
117 CameraCaptureSession session, CaptureRequest request, Handler handler)
119 session.capture(request, this, handler);
126 public void onCaptureStarted(CameraCaptureSession session, CaptureRequest request,
129 super.onCaptureStarted(session, request, timestamp, frameNumber)
183 CameraCaptureSession session = listener.getConfiguredSession(device, outputs, handler); local
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AppeCommandHandler.java 20 import org.mockftpserver.core.session.Session;
38 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
40 protected void beforeProcessData(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
StorCommandHandler.java 20 import org.mockftpserver.core.session.Session;
38 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
40 protected void beforeProcessData(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
AcctCommandHandlerTest.java 43 session.sendReply(ReplyCodes.ACCT_OK, replyTextFor(ReplyCodes.ACCT_OK));
44 session.sendReply(ReplyCodes.ACCT_OK, replyTextFor(ReplyCodes.ACCT_OK));
45 replay(session);
47 commandHandler.handleCommand(command1, session);
48 commandHandler.handleCommand(command2, session);
49 verify(session);
HelpCommandHandlerTest.java 42 session.sendReply(ReplyCodes.HELP_OK, formattedReplyTextFor(ReplyCodes.HELP_OK, RESPONSE_DATA));
43 session.sendReply(ReplyCodes.HELP_OK, formattedReplyTextFor(ReplyCodes.HELP_OK, RESPONSE_DATA));
44 replay(session);
49 commandHandler.handleCommand(COMMAND1, session);
50 commandHandler.handleCommand(COMMAND2, session);
51 verify(session);

Completed in 2638 milliseconds

<<11121314151617181920>>