HomeSort by relevance Sort by last modified time
    Searched defs:session (Results 251 - 275 of 750) sorted by null

<<11121314151617181920>>

  /external/libmicrohttpd/src/microspdy/
daemon.c 28 #include "session.h"
76 struct SPDY_Session *session; local
78 while (NULL != (session = daemon->cleanup_head))
82 session);
84 SPDYF_session_destroy(session);
97 struct SPDY_Session *session; local
99 while (NULL != (session = daemon->sessions_head))
102 SPDYF_prepare_goaway(session, SPDY_GOAWAY_STATUS_OK, true);
104 SPDYF_session_write(session,true);
105 SPDYF_session_close(session);
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_render.c 342 struct ilo_render_rectlist_session session; local
346 memset(&session, 0, sizeof(session));
347 ilo_render_emit_rectlist_dynamic_states(render, blitter, &session);
348 ilo_render_emit_rectlist_commands(render, blitter, &session);
365 struct ilo_render_draw_session *session)
367 memset(session, 0, sizeof(*session));
368 session->pipe_dirty = vec->dirty;
369 session->reduced_prim = u_reduced_prim(vec->draw->mode)
441 struct ilo_render_draw_session session; local
487 struct ilo_render_launch_grid_session session; local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_vce_52.c 541 static void session(struct rvce_encoder *enc) function
543 RVCE_BEGIN(0x00000001); // session cmd
629 enc->session = session;
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
AlloCommandHandlerTest.java 47 session.sendReply(ReplyCodes.ALLO_OK, replyTextFor(ReplyCodes.ALLO_OK));
48 session.sendReply(ReplyCodes.ALLO_OK, replyTextFor(ReplyCodes.ALLO_OK));
49 replay(session);
51 commandHandler.handleCommand(command1, session);
52 commandHandler.handleCommand(command2, session);
53 verify(session);
75 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R ")), session);
89 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("xx")), session);
102 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R xx")), session);
  /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...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
AbstractCommandHandlerTest.java 28 import org.mockftpserver.core.session.Session;
49 protected Session session; field in class:AbstractCommandHandlerTest
63 commandHandler.handleCommand(new Command(commandName, parameters), session);
156 session = (Session) createMock(Session.class);
157 control(session).setDefaultMatcher(MockControl.ARRAY_MATCHER);
158 control(session).expectAndDefaultReturn(session.getClientHost(), DEFAULT_HOST);
    [all...]
AlloCommandHandlerTest.java 47 session.sendReply(ReplyCodes.ALLO_OK, replyTextFor(ReplyCodes.ALLO_OK));
48 session.sendReply(ReplyCodes.ALLO_OK, replyTextFor(ReplyCodes.ALLO_OK));
49 replay(session);
51 commandHandler.handleCommand(command1, session);
52 commandHandler.handleCommand(command2, session);
53 verify(session);
75 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R ")), session);
89 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("xx")), session);
102 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R xx")), session);
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/mtpd/
mtpd.h 43 uint16_t session; member in struct:sockaddr_pppolac::__anon28850
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiAwareManagerFacade.java 365 description = "The session configuration, or null for default config")
369 "Specifies whether the callback events should be decorated with session Id")
385 @Rpc(description = "Destroy a Aware session.")
389 WifiAwareSession session; local
391 session = mSessions.get(clientId);
393 if (session == null) {
395 "Calling WifiAwareDisconnect before session (client ID " + clientId
398 session.close();
407 "Specifies whether the callback events should be decorated with session Id")
411 WifiAwareSession session = mSessions.get(clientId) local
436 DiscoverySession session = mDiscoverySessions.get(sessionId); local
460 WifiAwareSession session = mSessions.get(clientId); local
485 DiscoverySession session = mDiscoverySessions.get(sessionId); local
505 DiscoverySession session = mDiscoverySessions.get(sessionId); local
529 DiscoverySession session; local
554 DiscoverySession session; local
583 DiscoverySession session; local
625 WifiAwareSession session; local
    [all...]
  /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/webrtc/talk/app/webrtc/
peerconnection.h 86 virtual WebRtcSession* session() { return session_.get(); } function in class:webrtc::PeerConnection
189 void OnSessionStateChange(WebRtcSession* session, WebRtcSession::State state);
245 // session description. It creates a remote MediaStreamTrackInterface
252 // Triggered when a remote track has been removed from a remote session
276 // session description.
285 // Triggered when a local track has been removed from a local session
  /frameworks/base/core/java/org/apache/http/conn/ssl/
AbstractVerifier.java 98 SSLSession session = ssl.getSession(); local
99 Certificate[] certs = session.getPeerCertificates();
104 public final boolean verify(String host, SSLSession session) {
106 Certificate[] certs = session.getPeerCertificates();
  /frameworks/base/core/tests/coretests/src/android/app/
NotificationTest.java 25 import android.media.session.MediaSession;
142 MediaSession session = new MediaSession(mContext, "test"); local
147 .setStyle(new Notification.MediaStyle().setMediaSession(session.getSessionToken()));
  /frameworks/base/telephony/java/android/telephony/
MbmsDownloadSession.java 255 MbmsDownloadSession session = local
257 final int result = session.bindAndInitialize();
268 return session;
    [all...]
MbmsStreamingSession.java 124 MbmsStreamingSession session = new MbmsStreamingSession(context, callback, local
127 final int result = session.bindAndInitialize();
138 return session;
  /frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java 75 INetworkStatsSession session = null; local
78 session = mStatsService.openSession();
79 final NetworkStats stats = session.getSummaryForAllUid(
85 TrafficStats.closeQuietly(session);
  /frameworks/base/tests/WindowManagerStressTest/src/test/windowmanagerstresstest/
MainActivity.java 129 final IWindowSession session = WindowManagerGlobal.getWindowSession(); local
132 final int res = session.addToDisplayWithoutInputChannel(window, window.mSeq, layoutParams,
  /frameworks/layoutlib/bridge/src/android/animation/
AnimationThread.java 110 RenderSession session = mSession.getSession(); local
156 mListener.onNewFrame(session);
  /hardware/interfaces/camera/device/3.2/default/
CameraDevice.cpp 75 sp<CameraDeviceSession> session = mSession.promote(); local
76 if (session == nullptr) {
79 // Only notify active session disconnect events.
82 session->disconnect();
175 sp<CameraDeviceSession> session = nullptr; local
195 session = mSession.promote();
196 if (session != nullptr && !session->isClosed()) {
242 session = createSession(
244 if (session == nullptr)
290 sp<CameraDeviceSession> session = mSession.promote(); local
    [all...]
  /hardware/qcom/audio/hal/
voice.h 58 struct voice_session session[MAX_VOICE_SESSIONS]; member in struct:voice
  /packages/apps/Camera2/src/com/android/camera/one/v2/photo/
SimpleImageCaptureCommand.java 63 try (FrameServer.Session session = mFrameServer.createExclusiveSession();
73 session.submitRequest(Arrays.asList(photoRequest.build()),
76 // Release the FrameServer session (allowing subsequent camera
79 session.close();
  /packages/apps/Camera2/src/com/android/camera/session/
PlaceholderManager.java 17 package com.android.camera.session;
69 * @return A session instance representing the new placeholder.
83 * @return A session instance representing the new placeholder.
115 * @return A session that can be used to update the progress of the new
116 * session.
125 * @param placeholder the session that is being finished.
147 * @param session the session to update
150 public void replacePlaceholder(Placeholder session, Bitmap placeholder) {
151 Storage.replacePlaceholder(session.outputUri, placeholder)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLSocketFactoryWrapper.java 195 * Attempt to enable session tickets.
197 * @return true if able to enable session tickets, false otherwise.
236 SSLSession session = ssl.getSession(); local
237 if (session == null) {
238 throw new SSLException("Cannot verify SSL socket without session");
240 LogUtils.d(LogUtils.TAG, "using cipherSuite %s", session.getCipherSuite());
241 if (!HttpsURLConnection.getDefaultHostnameVerifier().verify(hostname, session)) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atmsvc.h 36 unsigned int session; /* for p2pm */ member in struct:atmsvc_msg

Completed in 809 milliseconds

<<11121314151617181920>>