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

<<11121314151617181920>>

  /packages/apps/Email/provider_src/com/android/email/mail/transport/
MailTransport.java 218 SSLSession session = ssl.getSession(); local
219 if (session == null) {
220 throw new SSLException("Cannot verify SSL socket without session");
226 if (!HOSTNAME_VERIFIER.verify(hostname, session)) {
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipService.java 89 // session ID --> session
403 private synchronized void addPendingSession(ISipSession session) {
406 mPendingSessions.put(session.getCallId(), session); local
574 SipSessionGroup.SipSessionImpl session = local
578 if (!isRegistered() || callingSelf(this, session)) {
580 session.endCall();
585 addPendingSession(session);
587 session.getCallId(), sessionDescription)
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-core/0.18.1/
tycho-core-0.18.1.jar 
  /external/guice/extensions/persist/lib/
hibernate3.jar 
  /prebuilts/tools/common/m2/repository/kr/motd/maven/os-maven-plugin/1.2.3.Final/
os-maven-plugin-1.2.3.Final.jar 
  /device/google/contexthub/contexthubhal/
system_comms.cpp 1422 Session *session = pos->second; local
1439 Session *session = pos->second; local
    [all...]
  /external/boringssl/src/ssl/
ssl_session.cc 157 // SSL_magic_pending_session_ptr(). It allows a session callback to indicate
158 // that it needs to asynchronously fetch session information.
164 static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *session);
165 static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *session);
166 static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *session, int lock);
169 UniquePtr<SSL_SESSION> session(
171 if (!session) {
175 OPENSSL_memset(session.get(), 0, sizeof(SSL_SESSION));
177 session->x509_method = x509_method;
178 session->verify_result = X509_V_ERR_INVALID_CALL
367 UniquePtr<SSL_SESSION> session = ssl_session_new(ssl->ctx->x509_method); local
666 UniquePtr<SSL_SESSION> session; local
737 UniquePtr<SSL_SESSION> session; local
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.h 72 spdylay_session *session; member in struct:SPDY_Connection
  /external/libmicrohttpd/src/testspdy/
test_new_connection.c 109 spdylay_session *session; member in struct:Connection
221 static ssize_t send_callback(spdylay_session *session,
225 (void)session;
253 static ssize_t recv_callback(spdylay_session *session,
257 (void)session;
287 static void before_ctrl_send_callback(spdylay_session *session,
297 req = spdylay_session_get_stream_user_data(session, stream_id);
305 static void on_ctrl_send_callback(spdylay_session *session,
324 if(name && spdylay_session_get_stream_user_data(session, stream_id)) {
332 static void on_ctrl_recv_callback(spdylay_session *session,
    [all...]
test_notls.c 87 spdylay_session *session; member in struct:Connection
200 static ssize_t send_callback(spdylay_session *session,
204 (void)session;
241 static ssize_t recv_callback(spdylay_session *session,
245 (void)session;
284 static void before_ctrl_send_callback(spdylay_session *session,
294 req = spdylay_session_get_stream_user_data(session, stream_id);
302 static void on_ctrl_send_callback(spdylay_session *session,
321 if(name && spdylay_session_get_stream_user_data(session, stream_id)) {
329 static void on_ctrl_recv_callback(spdylay_session *session,
    [all...]
test_request_response.c 91 spdylay_session *session; member in struct:Connection
203 static ssize_t send_callback(spdylay_session *session,
207 (void)session;
235 static ssize_t recv_callback(spdylay_session *session,
239 (void)session;
269 static void before_ctrl_send_callback(spdylay_session *session,
279 req = spdylay_session_get_stream_user_data(session, stream_id);
287 static void on_ctrl_send_callback(spdylay_session *session,
306 if(name && spdylay_session_get_stream_user_data(session, stream_id)) {
314 static void on_ctrl_recv_callback(spdylay_session *session,
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/session/
DefaultSession.java 16 package org.mockftpserver.core.session;
51 * Default implementation of the {@link Session} interface.
56 public class DefaultSession implements Session {
96 * Return the InetAddress representing the client host for this session
99 * @see org.mockftpserver.core.session.Session#getClientHost()
106 * Return the InetAddress representing the server host for this session
109 * @see org.mockftpserver.core.session.Session#getServerHost()
150 * @see org.mockftpserver.core.session.Session#openDataConnection()
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/session/
DefaultSession.java 16 package org.mockftpserver.core.session;
50 * Default implementation of the {@link Session} interface.
56 public class DefaultSession implements Session {
96 * Return the InetAddress representing the client host for this session
100 * @see org.mockftpserver.core.session.Session#getClientHost()
107 * Return the InetAddress representing the server host for this session
111 * @see org.mockftpserver.core.session.Session#getServerHost()
152 * @see org.mockftpserver.core.session.Session#openDataConnection()
    [all...]
  /external/mtpd/
l2tp.c 18 * creates a single session. The following code only handles control packets.
129 static void set_message(uint16_t session, uint16_t message)
135 p[3] = session;
184 static int recv_packet(uint16_t *session)
229 *session = p[3];
363 .local = {.tunnel = local_tunnel, .session = local_session},
364 .remote = {.tunnel = remote_tunnel, .session = remote_session},
416 uint16_t session = 0; local
418 if (!recv_packet(&session)) {
422 /* Here is the fun part. We always try to protect our tunnel and session
    [all...]
  /external/nanohttpd/nanolets/src/main/java/fi/iki/elonen/router/
RouterNanoHTTPD.java 70 public Response get(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session);
72 public Response put(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session);
74 public Response post(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session);
76 public Response delete(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session);
78 public Response other(String method, UriResource uriResource, Map<String, String> urlParams, IHTTPSession session);
93 public Response get(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session) {
97 public Response post(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session) {
98 return get(uriResource, urlParams, session);
101 public Response put(UriResource uriResource, Map<String, String> urlParams, IHTTPSession session) {
102 return get(uriResource, urlParams, session);
    [all...]
  /external/ppp/pppd/plugins/rp-pppoe/
pppoe.h 183 unsigned int session:16; /* PPPoE session */ member in struct:PPPoEPacketStruct
193 #define PPPOE_OVERHEAD 6 /* type, code, session, length */
228 int sessionSocket; /* Raw socket for session frames */
233 UINT16_t session; /* Session ID */ member in struct:PPPoEConnectionStruct
  /external/python/cpython3/Lib/
ssl.py 396 server_hostname=None, session=None):
401 _context=self, _session=session)
404 server_hostname=None, session=None):
407 return SSLObject(sslobj, session=session)
577 def __init__(self, sslobj, owner=None, session=None):
581 if session is not None:
582 self._sslobj.session = session
594 def session(self) member in class:SSLObject
599 def session(self, session): member in class:SSLObject
824 def session(self): member in class:SSLSocket
830 def session(self, session): member in class:SSLSocket
    [all...]
  /external/tensorflow/tensorflow/contrib/pi_examples/camera/
camera.cc 44 #include "tensorflow/core/public/session.h"
237 // Reads a model graph definition from disk, and creates a session object you
240 std::unique_ptr<tensorflow::Session>* session) {
248 session->reset(tensorflow::NewSession(tensorflow::SessionOptions()));
249 Status session_create_status = (*session)->Create(graph_def);
439 std::unique_ptr<tensorflow::Session> session; local
441 Status load_graph_status = LoadGraph(graph_path, &session);
508 Status run_status = session->Run({{input_layer, resized_tensor}}
    [all...]
  /external/tensorflow/tensorflow/contrib/pi_examples/label_image/
label_image.cc 44 #include "tensorflow/core/public/session.h"
209 // Reads a model graph definition from disk, and creates a session object you
212 std::unique_ptr<tensorflow::Session>* session) {
220 session->reset(tensorflow::NewSession(tensorflow::SessionOptions()));
221 Status session_create_status = (*session)->Create(graph_def);
353 std::unique_ptr<tensorflow::Session> session; local
355 Status load_graph_status = LoadGraph(graph_path, &session);
376 Status run_status = session->Run({{input_layer, resized_tensor}}
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
direct_session_test.cc 44 #include "tensorflow/core/public/session.h"
51 std::unique_ptr<Session> CreateSession() {
54 return std::unique_ptr<Session>(NewSession(options));
93 auto session = CreateSession(); local
94 ASSERT_TRUE(session != nullptr);
95 TF_ASSERT_OK(session->Create(def_));
102 Status s = session->Run(inputs, output_names, target_nodes, &outputs);
115 auto session = CreateSession(); local
116 ASSERT_TRUE(session != nullptr);
118 TF_ASSERT_OK(session->Create(def_))
144 auto session = CreateSession(); local
213 auto session = CreateSession(); local
223 auto session = CreateSession(); local
267 auto session = CreateSession(); local
319 auto session = CreateSession(); local
354 auto session = CreateSession(); local
420 auto session = CreateSession(); local
530 auto session = CreateSession(); local
586 auto session = CreateSession(); local
619 auto session = CreateSession(); local
668 auto session = CreateSession(); local
709 auto session = CreateSession(); local
805 auto session = CreateSession(); local
1184 auto session = CreateSession(); local
    [all...]
  /external/tensorflow/tensorflow/core/debug/
debug_gateway_test.cc 97 auto session = CreateSession(); local
98 ASSERT_TRUE(session != nullptr);
100 DebugGateway debug_gateway(session.get());
144 TF_ASSERT_OK(session->Create(def_));
152 Status s = session->Run(inputs, output_names, target_nodes, &outputs);
232 auto session = CreateSession(); local
233 ASSERT_TRUE(session != nullptr);
235 DebugGateway debug_gateway(session.get());
299 TF_ASSERT_OK(session->Create(def_));
309 Status s = session->Run(run_opts, inputs, output_names, target_nodes
362 auto session = CreateSession(); local
549 auto session = CreateSession(); local
674 auto session = CreateSession(); local
753 auto session = CreateSession(); local
929 auto session = CreateSession(); local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_graph_execution_test.cc 49 #include "tensorflow/core/public/session.h"
289 // Setup session
293 std::unique_ptr<Session> session = local
294 std::unique_ptr<Session>(NewSession(session_options));
295 TF_ASSERT_OK(session->Create(fused_graph_def));
297 // Setup session arguments
309 TF_ASSERT_OK(session->Run(run_options, input_tensors, output_node_names, {},
  /external/wpa_supplicant_8/src/crypto/
tls_gnutls.c 27 /* Data for session resumption */
46 gnutls_session_t session; member in struct:tls_connection
68 static int tls_connection_verify_peer(gnutls_session_t session);
204 ret = gnutls_init(&conn->session,
212 ret = gnutls_set_default_priority(conn->session);
216 ret = gnutls_priority_set_direct(conn->session, "NORMAL:-VERS-SSL3.0",
224 gnutls_transport_set_pull_function(conn->session, tls_pull_func);
225 gnutls_transport_set_push_function(conn->session, tls_push_func);
226 gnutls_transport_set_ptr(conn->session, (gnutls_transport_ptr_t) conn);
227 gnutls_session_set_ptr(conn->session, conn)
    [all...]
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.h 78 audio_session_t session,
88 audio_session_t session);
91 audio_session_t session);
94 audio_session_t session);
97 audio_session_t session,
126 audio_session_t session,
185 virtual status_t acquireSoundTriggerSession(audio_session_t *session,
189 virtual status_t releaseSoundTriggerSession(audio_session_t session);
214 audio_session_t session);
217 audio_session_t session);
645 const audio_session_t session; \/\/ audio session ID member in class:android::AudioPolicyService::AudioRecordClient
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupManager.java 330 RestoreSession session = null; local
337 session = new RestoreSession(mContext, binder);
343 return session;
    [all...]

Completed in 849 milliseconds

<<11121314151617181920>>