/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/ |
IAgent.java | 29 * Returns current a session identifier. 31 * @return current session identifier 36 * Sets a session identifier. 39 * new session identifier
|
/external/libvncserver/libvncserver/ |
rfbssl_gnutls.c | 32 gnutls_session_t session; member in struct:rfbssl_ctx 52 gnutls_session_t session; local 55 if (!GNUTLS_E_SUCCESS == (ret = gnutls_init(&session, GNUTLS_SERVER))) { 57 } else if (!GNUTLS_E_SUCCESS == (ret = gnutls_priority_set_direct(session, "EXPORT", NULL))) { 59 } else if (!GNUTLS_E_SUCCESS == (ret = gnutls_credentials_set(session, GNUTLS_CRD_CERTIFICATE, ctx->x509_cred))) { 62 gnutls_session_enable_compatibility_mode(session); 63 gnutls_transport_set_ptr(session, (gnutls_transport_ptr_t)(uintptr_t)fd); 64 ctx->session = session; 132 while (GNUTLS_E_SUCCESS != (ret = gnutls_handshake(ctx->session))) { [all...] |
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/ |
TestCommandHandler.groovy | 19 import org.mockftpserver.core.session.Session
31 protected void handle(Command command, Session session) {
|
TestCommandHandlerNotServerConfigurationAware.groovy | 20 import org.mockftpserver.core.session.Session
31 public void handleCommand(Command command, Session session) {
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
ConnectCommandHandlerTest.java | 31 session.sendReply(ReplyCodes.CONNECT_OK, replyTextFor(ReplyCodes.CONNECT_OK));
32 replay(session);
34 commandHandler.handleCommand(command1, session);
35 verify(session);
|
UnsupportedCommandHandlerTest.java | 31 session.sendReply(ReplyCodes.COMMAND_NOT_SUPPORTED, replyTextFor(ReplyCodes.COMMAND_NOT_SUPPORTED));
32 replay(session);
34 commandHandler.handleCommand(command1, session);
35 verify(session);
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
AborCommandHandlerTest.java | 38 session.sendReply(ReplyCodes.ABOR_OK, replyTextFor(ReplyCodes.ABOR_OK));
39 replay(session);
41 commandHandler.handleCommand(COMMAND, session);
42 verify(session);
|
FileRetrCommandHandlerTest.java | 68 * Test the handleCommand(Command,Session) method. Create a temporary (binary) file, and
78 session.sendReply(ReplyCodes.TRANSFER_DATA_INITIAL_OK, replyTextFor(ReplyCodes.TRANSFER_DATA_INITIAL_OK));
79 session.openDataConnection();
107 session.sendData(BUFFER, 512);
108 control(session).setMatcher(matcher);
109 session.sendData(BUFFER, 512);
110 session.sendData(BUFFER, 512);
111 session.sendData(BUFFER, 512);
112 session.sendData(BUFFER, 512);
113 session.sendData(BUFFER, 3); [all...] |
NoopCommandHandlerTest.java | 40 session.sendReply(ReplyCodes.NOOP_OK, replyTextFor(ReplyCodes.NOOP_OK));
41 replay(session);
43 commandHandler.handleCommand(COMMAND, session);
44 verify(session);
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
AborCommandHandlerTest.java | 39 session.sendReply(ReplyCodes.ABOR_OK, replyTextFor(ReplyCodes.ABOR_OK));
40 replay(session);
42 commandHandler.handleCommand(COMMAND, session);
43 verify(session);
|
FileRetrCommandHandlerTest.java | 71 * Test the handleCommand(Command,Session) method. Create a temporary (binary) file, and
80 session.sendReply(ReplyCodes.SEND_DATA_INITIAL_OK, replyTextFor(ReplyCodes.SEND_DATA_INITIAL_OK));
81 session.openDataConnection();
108 session.sendData(BUFFER, 512);
109 control(session).setMatcher(matcher);
110 session.sendData(BUFFER, 512);
111 session.sendData(BUFFER, 512);
112 session.sendData(BUFFER, 512);
113 session.sendData(BUFFER, 512);
114 session.sendData(BUFFER, 3); [all...] |
NoopCommandHandlerTest.java | 40 session.sendReply(ReplyCodes.NOOP_OK, replyTextFor(ReplyCodes.NOOP_OK));
41 replay(session);
43 commandHandler.handleCommand(COMMAND, session);
44 verify(session);
|
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/ |
SessionExpiresHeader.java | 15 public final static String NAME = "Session-Expires";
|
/external/tpm2/ |
ContextSave.c | 15 // TPM_RC_CONTEXT_GAP a contextID could not be assigned for a session context save 27 UINT64 contextID = 0; // session context ID 52 // for a session will be the same as input 63 // Perform object or session specific context save 119 SESSION *session = SessionGet(in->saveHandle); local 123 // size of a internal session structure plus the size of 126 fingerprintSize + sizeof(*session); 132 // Copy the whole internal SESSION structure to context blob. 138 session, sizeof(*session) [all...] |
PolicySigned.c | 25 // session 34 SESSION *session; local 45 session = SessionGet(in->policySession); // the session structure 47 // Only do input validation if this is not a trial policy session 48 if(session->attributes.isTrialPolicy == CLEAR) 51 authTimeout = expiration * 1000 + session->startTime; 53 result = PolicyParameterChecks(session, authTimeout, 69 // session, the size of this value is zero [all...] |
/external/webrtc/webrtc/api/objc/ |
RTCSessionDescription.h | 14 * Represents the session description type. This exposes the same types that are 27 /** The type of session description. */ 30 /** The SDP string representation of this session description. */ 35 /** Initialize a session description with a type and SDP string. */
|
/external/wpa_supplicant_8/hs20/server/www/ |
cert-enroll.php | 13 die("Missing session id"); 15 die("Invalid session id"); 19 die("Session not found"); 29 die("Failed to update session database");
|
/frameworks/base/media/java/android/media/ |
IRemoteVolumeController.aidl | 19 import android.media.session.ISessionController; 28 void remoteVolumeChanged(ISessionController session, int flags); 29 // sets the default session to use with the slider, replaces remoteSliderVisibility 31 void updateRemoteController(ISessionController session);
|
/frameworks/base/media/java/android/media/session/ |
ISessionControllerCallback.aidl | 16 package android.media.session; 20 import android.media.session.ParcelableVolumeInfo; 21 import android.media.session.PlaybackState; 22 import android.media.session.MediaSession;
|
ISessionManager.aidl | 16 package android.media.session; 20 import android.media.session.IActiveSessionsListener; 21 import android.media.session.ISession; 22 import android.media.session.ISessionCallback;
|
/frameworks/base/wifi/java/android/net/wifi/nan/ |
WifiNanPublishSession.java | 20 * A representation of a NAN publish session. Created when 23 * publish session. 36 * Restart/re-configure the publish session. Note that the 42 * publish session.
|
WifiNanSubscribeSession.java | 20 * A representation of a NAN subscribe session. Created when 23 * subscribe session. 36 * Restart/re-configure the subscribe session. Note that the 42 * subscribe session.
|
/frameworks/opt/net/ims/src/java/com/android/ims/internal/ |
ImsStreamMediaSession.java | 22 * Provides the APIs to control the media session, such as passing the surface object, 31 * Listener for events relating to an IMS media session. 48 * Sets the listener to listen to the media session events. A {@code ImsStreamMediaSession} 52 * @param listener to listen to the media session events of this object
|
/frameworks/support/v4/java/android/support/v4/media/session/ |
IMediaControllerCallback.aidl | 16 package android.support.v4.media.session; 20 import android.support.v4.media.session.ParcelableVolumeInfo; 21 import android.support.v4.media.session.PlaybackStateCompat; 22 import android.support.v4.media.session.MediaSessionCompat;
|
/packages/apps/Bluetooth/res/values-tl/ |
strings_pbap.xml | 4 <string name="pbap_session_key_dialog_title" msgid="3580996574333882561">"I-type ang key ng session para kay %1$s"</string> 5 <string name="pbap_session_key_dialog_header" msgid="2772472422782758981">"Kinakailangan ang key ng bluetooth na session"</string> 7 <string name="pbap_authentication_timeout_message" msgid="4166979525521902687">"Nagkaroon ng time out sa key ng pag-input ng session sa %1$s"</string> 9 <string name="auth_notif_title" msgid="7599854855681573258">"Key ng Session"</string>
|