HomeSort by relevance Sort by last modified time
    Searched full:session (Results 401 - 425 of 3356) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/DebugInfo/PDB/DIA/
DIAEnumSourceFiles.cpp 18 : Session(PDBSession), Enumerator(DiaEnumerator) {}
31 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
40 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
49 return new DIAEnumSourceFiles(Session, EnumeratorClone);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
PwdCommandHandlerTest.java 42 session.sendReply(ReplyCodes.PWD_OK, formattedReplyTextFor(ReplyCodes.PWD_OK, "\"" + RESPONSE_DATA + "\""));
43 replay(session);
47 commandHandler.handleCommand(COMMAND, session);
48 verify(session);
SystCommandHandlerTest.java 45 session.sendReply(ReplyCodes.SYST_OK, formattedReplyTextFor(ReplyCodes.SYST_OK, "\"" + SYSTEM_NAME + "\""));
46 replay(session);
50 commandHandler.handleCommand(COMMAND, session);
51 verify(session);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
ConnectCommandHandlerTest.java 41 session.sendReply(ReplyCodes.CONNECT_OK, replyTextFor(ReplyCodes.CONNECT_OK));
42 replay(session);
44 commandHandler.handleCommand(command1, session);
45 verify(session);
PwdCommandHandlerTest.java 42 session.sendReply(ReplyCodes.PWD_OK, formattedReplyTextFor(ReplyCodes.PWD_OK, "\"" + RESPONSE_DATA + "\""));
43 replay(session);
47 commandHandler.handleCommand(COMMAND, session);
48 verify(session);
SystCommandHandlerTest.java 46 session.sendReply(ReplyCodes.SYST_OK, formattedReplyTextFor(ReplyCodes.SYST_OK, "\"" + SYSTEM_NAME + "\""));
47 replay(session);
51 commandHandler.handleCommand(COMMAND, session);
52 verify(session);
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
PutStreamIntegrationTest.java 47 public Response serve(IHTTPSession session) {
48 Method method = session.getMethod();
49 Map<String, String> headers = session.getHeaders();
54 DataInputStream dataInputStream = new DataInputStream(session.getInputStream());
  /external/nanohttpd/webserver/src/main/java/fi/iki/elonen/
WebServerPlugin.java 18 NanoHTTPD.Response serveFile(String uri, Map<String, String> headers, IHTTPSession session, File file, String mimeType);
  /external/wpa_supplicant_8/hostapd/
hostapd.eap_user_sqlite 22 session TEXT,
  /external/wpa_supplicant_8/hs20/server/www/
add-free.php 13 die("Missing session id");
15 die("Invalid session id");
19 die("Session not found");
40 die("Failed to update session database");
  /frameworks/av/drm/mediadrm/plugins/clearkey/
Session.h 32 class Session : public android::RefBase {
34 explicit Session(const android::Vector<uint8_t>& sessionId)
36 virtual ~Session() {}
54 DISALLOW_EVIL_CONSTRUCTORS(Session);
  /frameworks/base/cmds/media/src/com/android/commands/media/
Media.java 24 import android.media.session.ISessionController;
25 import android.media.session.ISessionControllerCallback;
26 import android.media.session.ISessionManager;
27 import android.media.session.ParcelableVolumeInfo;
28 import android.media.session.PlaybackState;
71 "media monitor: monitor updates to the specified session.\n" +
82 "Can't connect to media session service; is the system running?");
109 showError("Error: must include a session id");
116 for (IBinder session : sessions) {
117 ISessionController controller = ISessionController.Stub.asInterface(session);
    [all...]
  /frameworks/base/media/java/android/media/session/
ISession.aidl 16 package android.media.session;
22 import android.media.session.ISessionController;
23 import android.media.session.PlaybackState;
24 import android.media.session.MediaSession;
  /packages/apps/Camera2/src/com/android/camera/session/
SessionNotifier.java 17 package com.android.camera.session;
23 * Internal interface that e.g. a capture session can use to update about the
24 * status of session.
46 /** The underlying session data has been updated. */
StackSaverFactory.java 17 package com.android.camera.session;
47 * @param mTitle the title of this stack session.
48 * @param location the GPS location that the media in this session was
  /packages/apps/Camera2/src_pd/com/android/camera/stats/
CaptureStats.java 3 import com.android.camera.session.CaptureSession.ImageLifecycleListener;
  /external/iproute2/man/man8/
ip-l2tp.8 37 .BR "ip l2tp add session"
67 .BR "ip l2tp del session"
80 .BR "ip l2tp show session"
111 fixed. L2TPv3 tunnels can carry data of more than one session. Each
112 session is identified by a session_id and its parent tunnel's
113 tunnel_id. A tunnel must be created before a session can be created in
128 When an L2TPv3 ethernet session is created, a virtual network
129 interface is created for the session, which must then be configured
141 interface of a given L2TP session is configured and enabled, data can
149 .B l2tp add session
    [all...]
  /external/jetty/
.classpath 3 <classpathentry excluding="org/eclipse/jetty/jmx/|org/eclipse/jetty/util/log/jmx/|org/eclipse/jetty/server/handler/jmx/|org/eclipse/jetty/server/jmx/|org/eclipse/jetty/server/session/jmx/|org/eclipse/jetty/servlet/jmx/|org/eclipse/jetty/security/SpnegoLoginService.java|org/eclipse/jetty/security/SpnegoUserIdentity.java|org/eclipse/jetty/security/SpnegoUserPrincipal.java|org/eclipse/jetty/server/session/JDBCSessionIdManager.java|org/eclipse/jetty/server/session/JDBCSessionManager.java|org/eclipse/jetty/util/preventers/AppContextLeakPreventer.java|org/eclipse/jetty/util/preventers/AWTLeakPreventer.java" including="**/*.java" kind="src" path="src/java"/>
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
AbstractStaticReplyCommandHandler.java 18 import org.mockftpserver.core.session.Session;
84 * @param session - the Session
88 protected void sendReply(Session session) {
89 sendReply(session, null);
94 * @param session - the Session
99 protected void sendReply(Session session, Object messageParameter) {
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CallbackProxies.java 155 public void onConfigured(CameraCaptureSession session) {
156 mProxy.invoke("onConfigured", session);
161 public void onConfigureFailed(CameraCaptureSession session) {
162 mProxy.invoke("onConfigureFailed", session);
166 public void onReady(CameraCaptureSession session) {
167 mProxy.invoke("onReady", session);
171 public void onActive(CameraCaptureSession session) {
172 mProxy.invoke("onActive", session);
176 public void onClosed(CameraCaptureSession session) {
177 mProxy.invoke("onClosed", session);
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestSetPath.java 52 public void execute(ClientSession session) {
59 hs = session.setPath(mHeaderSet, false, false);
62 hs = session.setPath(mHeaderSet, true, false);
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapRequestSetPath.java 52 public void execute(ClientSession session) {
61 hs = session.setPath(mHeaderSet, false, false);
64 hs = session.setPath(mHeaderSet, true, false);
  /packages/apps/Camera2/src/com/android/camera/captureintent/resource/
ResourceCaptureToolsImpl.java 29 import com.android.camera.session.CaptureSession;
30 import com.android.camera.session.CaptureSessionManager;
31 import com.android.camera.session.CaptureSessionManagerImpl;
32 import com.android.camera.session.SessionStorageManagerImpl;
167 /** Create a new capture session. */
172 final CaptureSession session = local
174 session.startEmpty(null, openedCamera.getPictureSize());
179 session.getCollector().decorateAtTimeCaptureRequest(
181 session.getTitle() + ".jpg",
194 session.getTitle()
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
DeferredPictureTaker.java 21 import com.android.camera.session.CaptureSession;
39 public void takePicture(OneCamera.PhotoCaptureParameters params, CaptureSession session) {
43 taker.takePicture(params, session);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mgmtapi.h 31 WINBOOL SNMP_FUNC_TYPE SnmpMgrCtl(LPSNMP_MGR_SESSION session,DWORD dwCtlCode,LPVOID lpvInBuffer,DWORD cbInBuffer,LPVOID lpvOUTBuffer,DWORD cbOUTBuffer,LPDWORD lpcbBytesReturned);
32 WINBOOL SNMP_FUNC_TYPE SnmpMgrClose(LPSNMP_MGR_SESSION session);
33 SNMPAPI SNMP_FUNC_TYPE SnmpMgrRequest(LPSNMP_MGR_SESSION session,BYTE requestType,RFC1157VarBindList *variableBindings,AsnInteger *errorStatus,AsnInteger *errorIndex);

Completed in 215 milliseconds

<<11121314151617181920>>