/frameworks/base/media/java/android/media/ |
MediaDrm.java | 78 * the session in subsequent interactions. The app next uses the MediaDrm object to 235 // TODO get this from DRM session 264 * Register a callback to be invoked when a session expiration update 266 * when the expiration time of the keys in the session have changed. 286 * Interface definition for a callback to be invoked when a drm session 292 * Called when a session expiration update occurs, to inform the app 296 * @param sessionId the DRM session ID on which the event occurred 297 * @param expirationTime the new expiration time for the keys in the session. 306 * Register a callback to be invoked when the state of keys in a session 329 * session change states [all...] |
/external/openssh/ |
session.c | 1 /* $OpenBSD: session.c,v 1.277 2015/01/16 06:40:12 deraadt Exp $ */ 93 #include "session.h" 114 Session *session_new(void); 115 void session_set_fds(Session *, int, int, int, int, int); 116 void session_pty_cleanup(Session *); 117 void session_proctitle(Session *); 118 int session_setup_x11fwd(Session *); 119 int do_exec_pty(Session *, const char *); 120 int do_exec_no_pty(Session *, const char *); 121 int do_exec(Session *, const char *) [all...] |
/build/core/ |
process_wrapper_gdb.sh | 7 # of a gdb session to allow for debugging.
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
MockVideoProvider.java | 82 * Handles a session modification request from the {@link MockInCallService}. Assumes the peer 147 * Sends a mock call session event from the provider. 149 * @param event The call session event. 165 * Sends a mock session modify request from the provider.
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
TestResultRepo.java | 37 * ordered list of result directories. the index of each file is its session id. 104 CLog.e("Session id %d does not exist", sessionId); 114 CLog.e("Could not find result file for session %d", sessionId); 116 CLog.e("Failed to parse result file for session %d", sessionId);
|
/developers/build/prebuilts/gradle/ElizaChat/Application/src/main/res/values/ |
strings.xml | 23 <string name="stop_service">End Chat Session</string>
|
/developers/samples/android/wearable/wear/ElizaChat/Application/src/main/res/values/ |
strings.xml | 23 <string name="stop_service">End Chat Session</string>
|
/development/samples/browseable/ElizaChat/res/values/ |
strings.xml | 23 <string name="stop_service">End Chat Session</string>
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/ |
_README.txt | 7 to generate a Bugzilla login session. This should take less than a minute,
|
/external/google-breakpad/src/processor/proto/ |
README | 19 To fix it for your current terminal session, just type in
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/exception/ |
NoConfigurationException.java | 20 * Exception thrown when a session configuration could not be negotiated.
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/ |
PoloUtil.java | 39 public static Certificate getPeerCert(SSLSession session) 43 Certificate[] certs = session.getPeerCertificates(); 60 public static Certificate getLocalCert(SSLSession session) 62 Certificate[] certs = session.getLocalCertificates();
|
/external/jetty/src/java/org/eclipse/jetty/server/session/ |
JDBCSessionIdManager.java | 19 package org.eclipse.jetty.server.session; 58 * SessionIdManager implementation that uses a database to store in-use session ids, 371 public void addSession(HttpSession session) 373 if (session == null) 378 String id = ((JDBCSessionManager.Session)session).getClusterId(); 386 LOG.warn("Problem storing session id="+id, e); 391 public void removeSession(HttpSession session) 393 if (session == null) 396 removeSession(((JDBCSessionManager.Session)session).getClusterId()) [all...] |
/external/kernel-headers/original/uapi/linux/ |
if_pppolac.h | 29 __u16 tunnel, session; member in struct:sockaddr_pppolac::__anon11208
|
/external/linux-tools-perf/src/tools/perf/ |
builtin-kmem.c | 11 #include "util/session.h" 341 static void __print_result(struct rb_root *root, struct perf_session *session, 345 struct machine *machine = &session->machines.host; 406 static void print_result(struct perf_session *session) 409 __print_result(&root_caller_sorted, session, caller_lines, 1); 411 __print_result(&root_alloc_sorted, session, alloc_lines, 0); 480 struct perf_session *session; local 490 session = perf_session__new(input_name, O_RDONLY, 0, false, &perf_kmem); 491 if (session == NULL) 494 if (perf_session__create_kernel_maps(session) < 0 [all...] |
/external/linux-tools-perf/src/tools/perf/util/ |
top.h | 34 struct perf_session *session; member in struct:perf_top
|
/external/lldb/test/functionalities/inferior-changed/ |
TestInferiorChanged.py | 1 """Test lldb reloads the inferior after it was changed during the session.""" 15 """Test lldb reloads the inferior after it was changed during the session.""" 25 """Test lldb reloads the inferior after it was changed during the session.""" 68 """Test lldb reloads the inferior after it was changed during the session."""
|
/external/lldb/test/pexpect-2.4/examples/ |
python.py | 4 the user interactive control over the session. Why? For fun... """
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
PDB.h | 20 std::unique_ptr<IPDBSession> &Session);
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/server/ |
AbstractFtpServer.java | 23 import org.mockftpserver.core.session.DefaultSession;
24 import org.mockftpserver.core.session.Session;
83 // Simple value object that holds the socket and thread for a single session
98 // Map of Session -> SessionInfo
156 Session session = createSession(clientSocket);
local 157 Thread sessionThread = new Thread(session);
163 sessions.put(session, sessionInfo);
340 * Create a new Session instance for the specified client Socket 352 Session session = (Session) entry.getKey(); local [all...] |
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Handshake.java | 47 public static Handshake get(SSLSession session) { 48 String cipherSuite = session.getCipherSuite(); 53 peerCertificates = session.getPeerCertificates(); 61 Certificate[] localCertificates = session.getLocalCertificates();
|
/external/skia/experimental/LightSymbolsUtil/lightsymbols/ |
helper.h | 38 fprintf(file, "\n\n\nNEW SESSION, just coliding ids ... should generate a new file ideally ... \n\n\n");
|
/external/wpa_supplicant_8/hs20/server/www/ |
redirect.php | 17 die("Session not found");
|
/external/wpa_supplicant_8/src/radius/ |
radius_das.h | 28 /* Session identification attributes */
|
/frameworks/av/services/audiopolicy/service/ |
AudioPolicyService.h | 81 audio_session_t session, 92 audio_session_t session); 95 audio_session_t session); 98 audio_session_t session); 101 audio_session_t session, 109 audio_session_t session); 111 audio_session_t session); 113 audio_session_t session); 131 int session, 190 virtual status_t acquireSoundTriggerSession(audio_session_t *session, [all...] |