/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 | |
/prebuilts/maven_repo/android/com/android/support/support-v4/23.0.0/ |
support-v4-23.0.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/23.0.1/ |
support-v4-23.0.1.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/23.1.0/ |
support-v4-23.1.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/23.1.1/ |
support-v4-23.1.1.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/23.2.0/ |
support-v4-23.2.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/23.2.1/ |
support-v4-23.2.1.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/23.3.0/ |
support-v4-23.3.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/23.4.0/ |
support-v4-23.4.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/24.0.0/ |
support-v4-24.0.0.aar | |
/prebuilts/maven_repo/android/com/android/support/support-v4/24.0.0-beta1/ |
support-v4-24.0.0-beta1.aar | |
/external/tpm2/ |
Session.c | 63 // This function initializes the session subsystem on TPM2_Startup(). 71 // Initialize session slots. At startup, all the in-memory session slots 74 s_sessions[i].occupied = FALSE; // session slot is not occupied 75 // The free session slots the number of maximum allowed loaded sessions 78 // scan the saved array of session context counts, and clear any entry that 79 // references a session that was in memory during the state save since that 87 // If the array value is unused or references a loaded session then 88 // that loaded session context is lost and the array entry is 93 // Find the oldest session in context ID data and set it i 196 SESSION *session; local 316 SESSION *session = NULL; local 717 SESSION *session; local [all...] |
/external/libmicrohttpd/src/examples/ |
post_example.c | 65 #define COOKIE_NAME "session" 69 * State we keep for each user/session/browser. 71 struct Session 76 struct Session *next; 79 * Unique ID for this session. 85 * currently using this session. 90 * Time when this session was last active. 114 * Associated session. 116 struct Session *session; member in struct:Request 465 struct Session *session = request->session; local 548 struct Session *session; local [all...] |
/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/libmicrohttpd/src/microspdy/ |
session.h | 20 * @file session.h 21 * @brief TCP connection/SPDY session handling 32 * Called by the daemon when the socket for the session has available 34 * session's read buffer. The latte 36 * @param session SPDY_Session for which data will be read. 37 * @return SPDY_YES if something was read or session's status was 44 SPDYF_session_read (struct SPDY_Session *session); 48 * Called by the daemon when the socket for the session is ready for some 53 * @param session SPDY_Session for which data will be written. 57 * session->max_num_frames SPDY frame [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...] |
/hardware/qcom/audio/hal/voice_extn/ |
voice_extn.c | 52 /* Voice Session Indices */ 133 ALOGE("%s: Invalid voice session index\n", __func__); 142 struct voice_session *session = NULL; local 147 session = &adev->voice.session[i]; 148 if(session->state.current == call_state){ 149 session_id = session->vsid; 162 struct voice_session *session = NULL; local 170 session = &adev->voice.session[i] 293 struct voice_session *session = NULL; local 338 struct voice_session *session = NULL; local [all...] |
/external/dbus/test/name-test/ |
test-privserver-client.c | 69 DBusConnection *session; local 83 session = dbus_bus_get (DBUS_BUS_SESSION, &error); 84 if (!session) 85 die ("couldn't access session bus\n"); 86 dbus_connection_set_exit_on_disconnect (session, FALSE); 87 test_connection_setup (loop, session); 89 dbus_bus_add_match (session, PRIVSERVER_DIED_RULE, &error); 94 if (!dbus_connection_add_filter (session, filter_session_message, 96 die ("couldn't add filter to session bus\n"); 100 if (!(reply = dbus_connection_send_with_reply_and_block (session, msg, -1, &error)) [all...] |