HomeSort by relevance Sort by last modified time
    Searched full:session (Results 1326 - 1350 of 4514) sorted by null

<<51525354555657585960>>

  /hardware/ti/omap4-aah/security/tf_crypto_sst/
mtc.c 52 * The MTC session context
62 /* TEEC session and cryptoki session */
191 /* Open a TEE session with the system service */
204 /* Open a cryptoki session */
  /hardware/ti/omap4xxx/security/tf_crypto_sst/
mtc.c 52 * The MTC session context
62 /* TEEC session and cryptoki session */
191 /* Open a TEE session with the system service */
204 /* Open a cryptoki session */
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerShellCommand.java 220 pw.println("Success: created install session [" + sessionId + "]");
1161 PackageInstaller.Session session = null; local
1206 PackageInstaller.Session session = null; local
1226 PackageInstaller.Session session = null; local
1253 PackageInstaller.Session session = null; local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/
CameraDevice.java 165 * <p>Create a new camera capture session by providing the target output set of Surfaces to the
168 * <p>The active capture session determines the set of potential output Surfaces for
233 * <p>It can take several hundred milliseconds for the session's configuration to complete,
235 * complete and the session is ready to actually capture data, the provided
240 * session will no longer be able to accept new capture requests and will be closed. Any
241 * in-progress capture requests made on the prior session will be completed before it's closed.
242 * {@link CameraCaptureSession.StateListener#onConfigured} for the new session may be invoked
244 * session. Once the new session is {@link CameraCaptureSession.StateListener#onConfigured
247 * requests for the prior capture session before a new one is created. Note that once the ne
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
Storage.java 66 // 20MB cache as an upper bound for session bitmap storage
229 Log.v(TAG, "session bitmap cache size: " + sSessionsToPlaceholderBitmap.size());
256 * @param imageUri The content uri or session uri of the image being updated
406 // If this is a session uri, then we need to add the image
435 * Returns the jpeg bytes for a placeholder session
437 * @param uri the session uri to look up
445 * @return Whether a placeholder size for the session with the given URI
455 * @param uri the session uri to look up
463 * Takes a session URI and returns the finished image's content URI
465 * @param uri the uri of the session that was replace
    [all...]
  /external/curl/lib/
http2.c 208 static int on_frame_recv(nghttp2_session *session, const nghttp2_frame *frame,
219 (void)session;
246 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE,
296 rv = nghttp2_submit_rst_stream(session, NGHTTP2_FLAG_NONE,
309 session, NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS);
312 session, NGHTTP2_SETTINGS_ENABLE_PUSH);
333 static int on_invalid_frame_recv(nghttp2_session *session,
338 (void)session;
346 static int on_data_chunk_recv(nghttp2_session *session, uint8_t flags,
354 (void)session;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
README-P2P 219 <adv_mac=peer MAC address> [role=2|4|1] <session=session id>
226 p2p_asp_provision 00:11:22:33:44:55 adv_id=4d6fc7 adv_mac=00:55:44:33:22:11 role=1 session=12ab34 session_mac=00:11:22:33:44:55 info='name=john' method=1000
236 session - Mandatory Session ID of the first session to be established
237 session_mac - Mandatory MAC address that owns/initiated the session
246 <session=session id> <session_mac=peer MAC address>
251 p2p_asp_provision_resp 00:55:44:33:22:11 adv_id=4d6fc7 adv_mac=00:55:44:33:22:11 role=1 status=0 session=12ab34 session_mac=00:11:22:33:44:5
    [all...]
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 408 System.out.println("Success: created install session [" + sessionId + "]");
543 PackageInstaller.Session session = null; local
547 session = new PackageInstaller.Session(
555 out = session.openWrite(splitName, 0, sizeBytes);
566 session.addProgress(fraction);
569 session.fsync(out);
581 IoUtils.closeQuietly(session);
586 PackageInstaller.Session session = null local
612 PackageInstaller.Session session = null; local
    [all...]
  /cts/tests/tests/print/src/android/print/cts/
PrintJobTest.java 73 /** The printer discovery session used in this test */
125 * @return The mock session callbacks
131 // Get the session.
176 * Create mock service callback for a session. Once the job is queued the test function is
179 * @param sessionCallbacks The callbacks of the session
253 // Create the session of the printers that we will be checking.
286 // Wait for discovery session to be destroyed to isolate tests from each other
539 // Create the session of the printers that we will be checking.
616 // Wait for discovery session to be destroyed to isolate tests from each other
  /external/autotest/client/tests/kvm/tests/
qemu_img.py 295 session = vm.wait_for_login(timeout=timeout)
299 output = session.cmd("touch /commit_testfile")
301 output = session.cmd("ls / | grep commit_testfile")
323 session = vm.wait_for_login(timeout=timeout)
325 output = session.cmd("[ ! -e /commit_testfile ] && echo $?")
329 output = session.cmd("rm -f /commit_testfile")
349 session = vm.wait_for_login(timeout=timeout)
351 output = session.cmd("[ -e /commit_testfile ] && echo $?")
354 session.cmd("rm -f /commit_testfile")
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ServletScopes.java 145 * HTTP session scope.
147 public static final Scope SESSION = new Scope() {
152 HttpSession session = GuiceFilter.getRequest(key).getSession();
153 synchronized (session) {
154 Object obj = session.getAttribute(name);
163 session.setAttribute(name, (t != null) ? t : NullObject.INSTANCE);
171 return String.format("%s[%s]", creator, SESSION);
178 return "ServletScopes.SESSION";
195 * map are available in the continued thread. The response and session
  /frameworks/base/media/java/android/media/session/
MediaSessionLegacyHelper.java 17 package android.media.session;
41 * Helper for connecting existing APIs up to the new session APIs. This can be
42 * used by RCC, AudioFocus, etc. to create a single session that translates to
366 MediaSession session; local
367 session = new MediaSession(mContext, TAG + "-" + pi.getCreatorPackage());
368 session.setActive(true);
369 holder = new SessionHolder(session, pi);
462 public SessionHolder(MediaSession session, PendingIntent pi) {
463 mSession = session;
  /frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
CameraOps.java 403 * Configure the camera session.
422 * Main listener for camera session events
429 public void onConfigured(CameraCaptureSession session) {
430 mCameraSession = session;
445 public void onConfigureFailed(CameraCaptureSession session) {
446 mErrorDisplayer.showErrorDialog("Unable to configure the capture session");
504 public void onCaptureCompleted(CameraCaptureSession session, CaptureRequest request,
559 * Start running an HDR burst on a configured camera session
591 public void onCaptureCompleted(CameraCaptureSession session, CaptureRequest request,
  /external/wpa_supplicant_8/src/fst/
fst_session.c 2 * FST module - FST Session implementation
58 /* Session configuration that can be zeroed on reset */
66 * Session Transition element */
68 /* Session object internal fields which won't be zeroed on reset */
70 u32 id; /* Session object ID used to identify
71 * specific session object */
177 fst_printf_session(s, MSG_WARNING, "Session State Timeout");
472 * We will reset our session and create a new one instead.
480 * initialized before, there's no need to tear down the session.
482 * associate this tear down with the session it initiated tha
    [all...]
fst_ctrl_iface.c 182 fst_printf(MSG_WARNING, "CTRL: Cannot find session %u", id);
221 fst_printf(MSG_WARNING, "CTRL: Cannot find session %u", id);
264 "CTRL: Cannot create session for group '%s'",
283 fst_printf(MSG_WARNING, "CTRL: Cannot find session %u", id);
306 fst_printf(MSG_WARNING, "CTRL: Cannot find session %u", id);
311 fst_printf(MSG_WARNING, "CTRL: Cannot initiate session %u", id);
331 fst_printf(MSG_WARNING, "CTRL: Cannot find session %u", id);
345 "CTRL: session %u: unknown response status: %s",
351 fst_printf(MSG_WARNING, "CTRL: Cannot respond to session %u",
356 fst_printf(MSG_INFO, "CTRL: session %u responded", id)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
MyHandler.h 152 // Strip any authentication info from the session url, we don't
167 ALOGV("rewritten session url: '%s'", mSessionURL.c_str());
339 ALOGE("Failed to look up address of session host '%s'",
511 // Strip any authentication info from the session url, we don't
525 ALOGI("rewritten session url: '%s'", mSessionURL.c_str());
546 ALOGE("Failed to parse session description.");
566 // it with the absolute session URL to get
570 ", combining it with the session URL to "
585 // There's no actual tracks in this session.
586 // The first "track" is merely session met
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 44 * the application must specify the audio session ID of that instance when creating the AudioEffect.
47 * mix by use of session 0 is deprecated.
49 * framework if no instance of the same effect type exists in the specified audio session.
281 * Effect connection mode is insert. Specifying an audio session ID when creating the effect
282 * will insert this effect after all players in the same audio session.
287 * <p>Auxiliary effects must be created on session 0 (global output mix). In order for a
381 * @param audioSession system wide unique audio session identifier.
383 * the same audio session.
468 * audio session ID. Returns an array of {@link android.media.audiofx.AudioEffect.Descriptor}
470 * @param audioSession system wide unique audio session identifier
    [all...]
  /cts/tests/tests/telecom/src/android/telecom/cts/
VideoCallTest.java 122 * Tests ability to receive a session modification request.
151 * Tests ability to send a session modification response.
173 * Test handling of session modify responses.
374 * Tests ability to receive call session events from the video provider.
727 * Asserts whether the call session event has changed to the expected value.
731 * @param work The work to be performed to send the call session event from the provider.
749 "Call session event should be " + expectedEvent
    [all...]
  /external/selinux/sepolgen/tests/
audit.txt 34 type=USER_START msg=audit(1158584988.203:720): user pid=8264 uid=0 auid=500 subj=user_u:system_r:unconfined_t:s0 msg='PAM: session open acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
35 type=USER_END msg=audit(1158584988.203:721): user pid=8264 uid=0 auid=500 subj=user_u:system_r:unconfined_t:s0 msg='PAM: session close acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
38 type=USER_START msg=audit(1158585001.341:724): user pid=8294 uid=0 auid=0 subj=system_u:system_r:crond_t:s0-s0:c0.c255 msg='PAM: session open acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
41 type=USER_END msg=audit(1158585001.397:727): user pid=8294 uid=0 auid=0 subj=system_u:system_r:crond_t:s0-s0:c0.c255 msg='PAM: session close acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
43 type=USER_START msg=audit(1158585033.003:729): user pid=8331 uid=0 auid=500 subj=user_u:system_r:unconfined_t:s0 msg='PAM: session open acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
44 type=USER_END msg=audit(1158585033.003:730): user pid=8331 uid=0 auid=500 subj=user_u:system_r:unconfined_t:s0 msg='PAM: session close acct=root : exe="/usr/bin/sudo" (hostname=?, addr=?, terminal=? res=success)'
47 type=USER_START msg=audit(1158585601.463:733): user pid=8495 uid=0 auid=0 subj=system_u:system_r:crond_t:s0-s0:c0.c255 msg='PAM: session open acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
50 type=USER_END msg=audit(1158585601.483:736): user pid=8495 uid=0 auid=0 subj=system_u:system_r:crond_t:s0-s0:c0.c255 msg='PAM: session close acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
53 type=USER_START msg=audit(1158586201.552:739): user pid=8538 uid=0 auid=0 subj=system_u:system_r:crond_t:s0-s0:c0.c255 msg='PAM: session open acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)'
56 type=USER_END msg=audit(1158586201.576:742): user pid=8538 uid=0 auid=0 subj=system_u:system_r:crond_t:s0-s0:c0.c255 msg='PAM: session close acct=root : exe="/usr/sbin/crond" (hostname=?, addr=?, terminal=cron res=success)
    [all...]
  /external/webrtc/talk/session/media/
srtpfilter.cc 30 #include "talk/session/media/srtpfilter.h"
58 #include "talk/session/media/externalhmac.h"
336 // unencrypted session.
526 LOG(LS_WARNING) << "Failed to protect SRTP packet: no SRTP Session";
568 LOG(LS_WARNING) << "Failed to protect SRTCP packet: no SRTP Session";
591 LOG(LS_WARNING) << "Failed to unprotect SRTP packet: no SRTP Session";
610 LOG(LS_WARNING) << "Failed to unprotect SRTCP packet: no SRTP Session";
669 LOG(LS_ERROR) << "Failed to create SRTP session: "
670 << "SRTP session already created";
688 LOG(LS_WARNING) << "Failed to create SRTP session: unsupported
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.cpp 342 result.append("Global session refs:\n");
343 result.append(" session pid count\n");
655 ALOGE("createTrack() invalid session ID %d", *sessionId);
660 // check if an effect chain with the same session ID is present on another
673 // if no audio session id is provided, create one here
686 // move effect chain to this output thread if an effect on same session was waiting
695 // Look for sync events awaiting for a session to be used.
2953 audio_session_t session = chain->sessionId(); local
2979 audio_session_t session = effect->sessionId(); local
    [all...]
  /frameworks/av/services/audiopolicy/managerdefault/
AudioPolicyManager.h 111 audio_session_t session,
122 audio_session_t session);
125 audio_session_t session);
128 audio_session_t session);
131 audio_session_t session,
142 audio_session_t session);
146 audio_session_t session);
148 audio_session_t session);
172 int session,
216 virtual status_t acquireSoundTriggerSession(audio_session_t *session,
    [all...]
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaBrowserServiceSupport.java 33 import android.support.v4.media.session.MediaButtonReceiver;
34 import android.support.v4.media.session.MediaSessionCompat;
35 import android.support.v4.media.session.PlaybackStateCompat;
59 * user interfaces that need to interact with your media session, like Android Auto. You can
70 * <li> In onCreate, start a new {@link android.media.session.MediaSession} and notify its parent
71 * with the session's token {@link android.service.media.MediaBrowserService#setSessionToken};
74 * {@link android.media.session.MediaSession#setCallback(android.media.session.MediaSession.Callback)}.
81 * {@link android.media.session.MediaSession#setPlaybackState(android.media.session.PlaybackState)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sts/
connection.py 92 # key, and session token. It does not matter that they are
122 msg = 'Cached session token %s is expired' % token_key
142 Return a valid session token. Because retrieving new tokens
148 is a token in the cache meeting with this key, the session
150 so, the cached token is returned. Otherwise, a new session
159 :param force_new: If this parameter is True, a new session token
166 valid, the temporary session token will be authorized with
241 :param duration: The duration, in seconds, that the session
246 the duration is longer than one hour, the session for AWS account
324 :param role_session_name: An identifier for the assumed role session
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.cpp 206 ALOGE("An error occurred in session %d (%d, '%s/%s').",
307 // We have a session, i.e. a previous SETUP succeeded.
379 ALOGI("playback session timed out, reaping.");
401 ALOGI("playback session wants to quit.");
734 AStringPrintf("Session: %d\r\n", mClientInfo.mPlaybackSessionID));
1015 // If only the response was required to include a "Session:" header...
1055 ALOGV("session %d received '%s'",
1088 ALOGW("Response handler for session %d, cseq %d returned "
    [all...]

Completed in 815 milliseconds

<<51525354555657585960>>