/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
winsnmp.h | 229 SNMPAPI_STATUS WINAPI SnmpClose(HSNMP_SESSION session); 230 SNMPAPI_STATUS WINAPI SnmpSendMsg(HSNMP_SESSION session,HSNMP_ENTITY srcEntity,HSNMP_ENTITY dstEntity,HSNMP_CONTEXT context,HSNMP_PDU PDU); 231 SNMPAPI_STATUS WINAPI SnmpRecvMsg(HSNMP_SESSION session,LPHSNMP_ENTITY srcEntity,LPHSNMP_ENTITY dstEntity,LPHSNMP_CONTEXT context,LPHSNMP_PDU PDU); 232 SNMPAPI_STATUS WINAPI SnmpRegister(HSNMP_SESSION session,HSNMP_ENTITY srcEntity,HSNMP_ENTITY dstEntity,HSNMP_CONTEXT context,smiLPCOID notification,smiUINT32 state); 235 SNMPAPI_STATUS WINAPI SnmpCancelMsg(HSNMP_SESSION session,smiINT32 reqId); 244 HSNMP_ENTITY WINAPI SnmpStrToEntity(HSNMP_SESSION session,LPCSTR string); 247 HSNMP_CONTEXT WINAPI SnmpStrToContext(HSNMP_SESSION session,smiLPCOCTETS string); 251 HSNMP_PDU WINAPI SnmpCreatePdu(HSNMP_SESSION session,smiINT PDU_type,smiINT32 request_id,smiINT error_status,smiINT error_index,HSNMP_VBL varbindlist); 254 HSNMP_PDU WINAPI SnmpDuplicatePdu(HSNMP_SESSION session,HSNMP_PDU PDU); 256 HSNMP_VBL WINAPI SnmpCreateVbl(HSNMP_SESSION session,smiLPCOID name,smiLPCVALUE value) [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/session/ |
HashSessionIdManager.java | 19 package org.eclipse.jetty.server.session; 39 * HashSessionIdManager. An in-memory implementation of the session ID manager. 58 * @return Collection of String session IDs 67 * @return Collection of Sessions for the passed session ID 77 HttpSession session = ref.get(); local 78 if (session!=null) 79 sessions.add(session); 85 /** Get the session ID with any worker ID. 105 /** Get the session ID without any worker ID. 147 public void addSession(HttpSession session) 214 AbstractSession session=(AbstractSession)ref.get(); local [all...] |
HashSessionManager.java | 19 package org.eclipse.jetty.server.session; 55 * set as the "org.eclipse.jetty.server.session.timer" attribute of the ContextHandler. 97 _timer=(Timer)context.getAttribute("org.eclipse.jetty.server.session.timer"); 171 * @return seconds Idle period after which a session is saved 183 * Configures the period in seconds after which a session is deemed idle and saved 184 * to save on session memory. 186 * The session is persisted, the values attribute map is cleared and the session set to idled. 188 * @param seconds Idle period after which a session is saved 311 // For each session 316 HashedSession session=i.next(); local 513 HashedSession session = restoreSession(in, null); local [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
MediaSessions.java | 28 import android.media.session.ISessionController; 29 import android.media.session.MediaController; 30 import android.media.session.MediaController.PlaybackInfo; 31 import android.media.session.MediaSession.QueueItem; 32 import android.media.session.MediaSession.Token; 33 import android.media.session.MediaSessionManager; 34 import android.media.session.MediaSessionManager.OnActiveSessionsChangedListener; 35 import android.media.session.PlaybackState; 53 * Convenience client for all media session updates. Provides a callback interface for events 116 private void onRemoteVolumeChangedH(ISessionController session, int flags) [all...] |
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
AbstractCommandHandler.java | 25 import org.mockftpserver.core.session.Session;
50 * Handle the specified command for the session. This method is declared to throw Exception,
55 * @param session - the session on which the Command was submitted
58 * @throws AssertFailedException - if the command or session is null
61 * org.mockftpserver.core.session.Session)
63 public final void handleCommand(Command command, Session session) throws Exception { [all...] |
SimpleCompositeCommandHandler.java | 23 import org.mockftpserver.core.session.Session;
82 * the CommandHandler instance to which the Nth {@link #handleCommand(Command, Session)} has been or will
96 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
98 public void handleCommand(Command command, Session session) throws Exception {
100 Assert.notNull(session, "session");
105 commandHandler.handleCommand(command, session);
[all...] |
/frameworks/base/core/java/android/service/textservice/ |
SpellCheckerService.java | 48 * {@link #createSession()} to provide a spell checker session that is corresponding 49 * to requested language and so on. The spell checker session returned by this method 50 * should extend {@link SpellCheckerService.Session}. 55 * <p>{@link SpellCheckerService.Session#onGetSuggestions(TextInfo, int)} 60 * {@link SpellCheckerService.Session#onGetSuggestionsMultiple(TextInfo[], int, boolean)} for 64 * <p>Please note that {@link SpellCheckerService.Session#getLocale()} does not return a valid 65 * locale before {@link SpellCheckerService.Session#onCreate()} </p> 90 * Factory method to create a spell checker session impl 93 public abstract Session createSession(); 98 public static abstract class Session { [all...] |
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/ |
auth.py | 27 #: Name of the session backend to be used. Default is `securecookie`. 30 #: Name of the cookie to save the auth session. Default is `auth`. 49 #: A list of extra user attributes to be stored in the session. 84 #: Required attributes stored in a session. 89 """Initializes the session store. 106 """The list of attributes stored in a session. 211 # Session related --------------------------------------------------------- 214 """Returns an auth session. 219 A session dict. 226 """Serializes values for a session 471 def session(self): member in class:Auth [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
SimpleCompositeCommandHandler.java | 18 import org.mockftpserver.core.session.Session;
82 * the CommandHandler instance to which the Nth {@link #handleCommand(Command, Session)} has been or will
96 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
98 public void handleCommand(Command command, Session session) throws Exception {
100 Assert.notNull(session, "session");
105 commandHandler.handleCommand(command, session);
[all...] |
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
PassCommandHandlerTest.groovy | 22 import org.mockftpserver.core.session.SessionKeys 101 session.removeAttribute(SessionKeys.USERNAME) 124 session.setAttribute(SessionKeys.USERNAME, USERNAME) 125 session.removeAttribute(SessionKeys.USER_ACCOUNT) 141 * Assert that the UserAccount object is in the session, depending on the value of isUserAccountInSession. 142 * @param isUserAccountInSession - true if the UserAccount is expected in the session; false if it is not expected 146 assert session.getAttribute(SessionKeys.USER_ACCOUNT) == expectedValue 150 * Assert that the current directory is set in the session, but only if currentDirectory is not null. 151 * @param currentDirectory - the curent directory expected in the session; null if it is not expected 154 assert session.getAttribute(SessionKeys.CURRENT_DIRECTORY) == currentDirector [all...] |
AcctCommandHandlerTest.groovy | 22 import org.mockftpserver.core.session.SessionKeys 45 session.removeAttribute(SessionKeys.USERNAME) 61 session.setAttribute(SessionKeys.USERNAME, USERNAME) 77 * Assert that the account name is stored in the session, depending on the value of isAccountNameInSession. 78 * @param isAccountNameInSession - true if the account name is expected in the session; false if it is not expected 82 assert session.getAttribute(SessionKeys.ACCOUNT_NAME) == expectedValue
|
EprtCommandHandlerTest.groovy | 43 assert session.clientDataHost == HOST_IPV4 44 assert session.clientDataPort == PORT 50 assert session.clientDataHost == HOST_IPV6 51 assert session.clientDataPort == PORT 57 assert session.clientDataHost == HOST_IPV6 58 assert session.clientDataPort == PORT
|
RnfrCommandHandlerTest.groovy | 22 import org.mockftpserver.core.session.SessionKeys 41 assert session.getAttribute(SessionKeys.RENAME_FROM) == FILE 46 session.setAttribute(SessionKeys.CURRENT_DIRECTORY, "/") 49 assert session.getAttribute(SessionKeys.RENAME_FROM) == FILE 55 assert session.getAttribute(SessionKeys.RENAME_FROM) == null 62 assert session.getAttribute(SessionKeys.RENAME_FROM) == DIR
|
/frameworks/base/docs/html/sdk/support_api_diff/22.2.0/changes/ |
android.support.v4.media.session.PlaybackStateCompat.Builder.html | 10 android.support.v4.media.session.PlaybackStateCompat.Builder 74 Class android.support.v4.media.session.<A HREF="../../../../reference/android/support/v4/media/session/PlaybackStateCompat.Builder.html" target="_top"><font size="+2"><code>PlaybackStateCompat.Builder</code></font></A> 86 <A NAME="android.support.v4.media.session.PlaybackStateCompat.Builder.addCustomAction_added(android.support.v4.media.session.PlaybackStateCompat.CustomAction)"></A> 87 <nobr><code>Builder</code> <A HREF="../../../../reference/android/support/v4/media/session/PlaybackStateCompat.Builder.html#addCustomAction(android.support.v4.media.session.PlaybackStateCompat.CustomAction)" target="_top"><code>addCustomAction</code></A>(<code>CustomAction</code>)</nobr> 93 <A NAME="android.support.v4.media.session.PlaybackStateCompat.Builder.addCustomAction_added(java.lang.String, java.lang.String, int)"></A> 94 <nobr><code>Builder</code> <A HREF="../../../../reference/android/support/v4/media/session/PlaybackStateCompat.Builder.html#addCustomAction(java.lang.String, java.lang.String, int)" target="_top"><code>addCustomAction</code></A>(<code>String,</nobr> String<nobr>,</nobr> int<nobr><nobr></code>)</nobr> 100 <A NAME="android.support.v4.media.session.PlaybackStateCompat.Builder.setActiveQueueItemId_added(long)"></A [all...] |
android.support.v4.media.session.PlaybackStateCompat.html | 10 android.support.v4.media.session.PlaybackStateCompat 74 Class android.support.v4.media.session.<A HREF="../../../../reference/android/support/v4/media/session/PlaybackStateCompat.html" target="_top"><font size="+2"><code>PlaybackStateCompat</code></font></A> 86 <A NAME="android.support.v4.media.session.PlaybackStateCompat.getActiveQueueItemId_added()"></A> 87 <nobr><code>long</code> <A HREF="../../../../reference/android/support/v4/media/session/PlaybackStateCompat.html#getActiveQueueItemId()" target="_top"><code>getActiveQueueItemId</code></A>()</nobr> 93 <A NAME="android.support.v4.media.session.PlaybackStateCompat.getCustomActions_added()"></A> 94 <nobr><code>List<CustomAction></code> <A HREF="../../../../reference/android/support/v4/media/session/PlaybackStateCompat.html#getCustomActions()" target="_top"><code>getCustomActions</code></A>()</nobr> 100 <A NAME="android.support.v4.media.session.PlaybackStateCompat.getExtras_added()"></A> 101 <nobr><code>Bundle</code> <A HREF="../../../../reference/android/support/v4/media/session/PlaybackStateCompat.html#getExtras()" target="_top"><code>getExtras</code></A>()</nobr> 116 <A NAME="android.support.v4.media.session.PlaybackStateCompat.STATE_CONNECTING"></A [all...] |
/frameworks/av/services/audiopolicy/service/ |
AudioPolicyInterfaceImplLegacy.cpp | 152 audio_session_t session) 168 status_t status = audioPolicyEffects->addOutputSessionEffects(output, stream, session); 170 ALOGW("Failed to add effects on session %d", session); 175 return mpAudioPolicy->start_output(mpAudioPolicy, output, stream, session); 180 audio_session_t session) 189 mOutputCommandThread->stopOutputCommand(output, stream, session); 195 audio_session_t session) 205 status_t status = audioPolicyEffects->releaseOutputSessionEffects(output, stream, session); 207 ALOGW("Failed to release effects on session %d", session) [all...] |
/frameworks/base/core/java/android/view/textservice/ |
SpellCheckerSession.java | 139 * @return true if the connection to a text service of this session is disconnected and not 147 * Get the spell checker service info this spell checker session has. 162 * Finish this session and allow TextServicesManagerService to disconnect the bound spell 282 private void processTask(ISpellCheckerSession session, SpellCheckerParams scp, 287 + " session.hashCode()=#" + Integer.toHexString(session.hashCode()) 297 session.onCancel(); 304 session.onGetSuggestionsMultiple(scp.mTextInfos, 312 session.onGetSentenceSuggestionsMultiple( 320 session.onClose() 445 ISpellCheckerSession session; local [all...] |
/external/wpa_supplicant_8/src/crypto/ |
tls_gnutls.c | 27 /* Data for session resumption */ 44 gnutls_session_t session; member in struct:tls_connection 66 static int tls_connection_verify_peer(gnutls_session_t session); 201 ret = gnutls_init(&conn->session, 209 ret = gnutls_set_default_priority(conn->session); 213 ret = gnutls_priority_set_direct(conn->session, "NORMAL:-VERS-SSL3.0", 221 gnutls_transport_set_pull_function(conn->session, tls_pull_func); 222 gnutls_transport_set_push_function(conn->session, tls_push_func); 223 gnutls_transport_set_ptr(conn->session, (gnutls_transport_ptr_t) conn); 224 gnutls_session_set_ptr(conn->session, conn) [all...] |
/development/ndk/platforms/android-21/include/media/ |
NdkMediaDrm.h | 68 * This event type indicates that the licensed usage duration for keys in a session 113 * Open a new session with the MediaDrm object. A session ID is returned. 121 * Close a session on the MediaDrm object that was previously opened 210 * used to later restore the keys to a new session with AMediaDrm_restoreKeys. 227 * Restore persisted offline keys into a new session. keySetId identifies the 230 * sessionId is the session ID for the DRM session 237 * Remove the current keys from a session. 244 * Request an informative description of the key status for the session. The status i [all...] |
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
Player.java | 25 import android.support.v4.media.session.MediaSessionCompat; 26 import android.support.v4.media.session.PlaybackStateCompat; 81 public static Player create(Context context, RouteInfo route, MediaSessionCompat session) { 91 player.initMediaSession(session); 141 private void initMediaSession(MediaSessionCompat session) { 142 mMediaSession = session;
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
PortCommandHandlerTest.java | 51 session.setClientDataPort(PORT);
52 session.setClientDataHost(HOST);
53 session.sendReply(ReplyCodes.PORT_OK, replyTextFor(ReplyCodes.PORT_OK));
54 replay(session);
56 commandHandler.handleCommand(COMMAND, session);
57 verify(session);
|
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/ |
WebSocketResponseHandler.java | 29 public Response serve(final IHTTPSession session) { 30 Map<String, String> headers = session.getHeaders(); 31 if (isWebsocketRequested(session)) { 42 WebSocket webSocket = webSocketFactory.openWebSocket(session); 61 protected boolean isWebsocketRequested(IHTTPSession session) { 62 Map<String, String> headers = session.getHeaders();
|
/frameworks/av/include/ndk/ |
NdkMediaDrm.h | 68 * This event type indicates that the licensed usage duration for keys in a session 113 * Open a new session with the MediaDrm object. A session ID is returned. 121 * Close a session on the MediaDrm object that was previously opened 210 * used to later restore the keys to a new session with AMediaDrm_restoreKeys. 227 * Restore persisted offline keys into a new session. keySetId identifies the 230 * sessionId is the session ID for the DRM session 237 * Remove the current keys from a session. 244 * Request an informative description of the key status for the session. The status i [all...] |
/frameworks/base/core/java/android/printservice/ |
PrinterDiscoverySession.java | 37 * During the lifetime of this session you may be asked to start and stop 42 * discovered by this session you will receive a call to {@link #onDestroy()} at 43 * which point the system will no longer call into the session and all the session 52 * session can be acquired via {@link #getPrinters()} where the returned printers 54 * session. Printers are <strong>not</strong> persisted across sessions. 112 // created the session, send them over. 127 * Gets the printers reported in this session. For example, if you add two 131 * <strong>Note: </strong> Calls to this method after the session is 152 * times during the life of this session. Duplicates will be ignored [all...] |
/frameworks/base/packages/VpnDialogs/res/values/ |
strings.xml | 34 <!-- Button label to configure the current VPN session. [CHAR LIMIT=20] --> 36 <!-- Button label to disconnect the current VPN session. [CHAR LIMIT=20] --> 39 <!-- Label for the name of the current VPN session. [CHAR LIMIT=20] --> 40 <string name="session">Session:</string> 41 <!-- Label for the duration of the current VPN session. [CHAR LIMIT=20] -->
|