HomeSort by relevance Sort by last modified time
    Searched refs:session (Results 226 - 250 of 843) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /external/chromium_org/chrome/test/chromedriver/
element_util.cc 17 #include "chrome/test/chromedriver/session.h"
227 Session* session,
254 session->GetCurrentFrameId(), script, arguments, &temp);
275 session->implicit_wait) {
290 Session* session,
299 session->GetCurrentFrameId(), web_view, webdriver::atoms::GET_ATTRIBUTE,
304 Session* session,
    [all...]
  /external/openssh/
ssh-pkcs11.c 45 CK_SESSION_HANDLE session; member in struct:pkcs11_slotinfo
100 if (p->slotinfo[i].session &&
102 p->slotinfo[i].session)) != CKR_OK)
196 CK_SESSION_HANDLE session; local
202 session = p->slotinfo[slotidx].session;
203 if ((rv = f->C_FindObjectsInit(session, attr, nattr)) != CKR_OK) {
207 if ((rv = f->C_FindObjects(session, obj, 1, &nfound)) != CKR_OK ||
213 if ((rv = f->C_FindObjectsFinal(session)) != CKR_OK)
267 if ((rv = f->C_Login(si->session, CKU_USER, pin, strlen(pin))
354 CK_SESSION_HANDLE session; local
398 CK_SESSION_HANDLE session; local
    [all...]
  /external/mtpd/
l2tp.c 18 * creates a single session. The following code only handles control packets.
128 static void set_message(uint16_t session, uint16_t message)
134 p[3] = session;
183 static int recv_packet(uint16_t *session)
228 *session = p[3];
362 .local = {.tunnel = local_tunnel, .session = local_session},
363 .remote = {.tunnel = remote_tunnel, .session = remote_session},
415 uint16_t session = 0; local
417 if (!recv_packet(&session)) {
421 /* Here is the fun part. We always try to protect our tunnel and session
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
SSLEngineImpl.java 67 // active session object
68 private SSLSessionImpl session; field in class:SSLEngineImpl
139 if (session != null) {
140 session.invalidate();
369 if (session != null) {
370 return session;
425 if ((session == null || engine_was_closed) && (
470 session = recordProtocol.getSession();
478 if (session != null) {
479 session.invalidate()
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_proto_util.cc 85 sessions::SyncSession* session) {
93 session->status_controller()->set_types_needing_local_migration(to_migrate);
142 sessions::SyncSession* session,
164 session->context()->NotifyListeners(event);
204 SyncSession* session) {
212 ScopedDirLookup dir(session->context()->directory_manager(),
213 session->context()->account_name());
217 if (!PostAndProcessHeaders(session->context()->connection_manager(), session,
222 session->status_controller()->set_syncer_stuck(true)
    [all...]
apply_updates_command_unittest.cc 142 apply_updates_command_.ExecuteImpl(session());
144 sessions::StatusController* status = session()->status_controller();
165 apply_updates_command_.ExecuteImpl(session());
167 sessions::StatusController* status = session()->status_controller();
182 apply_updates_command_.ExecuteImpl(session());
184 sessions::StatusController* status = session()->status_controller();
204 apply_updates_command_.ExecuteImpl(session());
206 sessions::StatusController* status = session()->status_controller();
226 session()->context()->directory_manager()->GetCryptographer(&trans);
240 apply_updates_command_.ExecuteImpl(session());
    [all...]
syncer.h 91 virtual void SyncShare(sessions::SyncSession* session);
95 virtual void SyncShare(sessions::SyncSession* session,
101 void ProcessClientCommand(sessions::SyncSession* session);
syncer_proto_util.h 43 // session->status()->syncer_stuck_ is set true if the birthday is
48 sessions::SyncSession* session);
109 sessions::SyncSession* session);
114 sessions::SyncSession* session,
  /frameworks/opt/net/voip/src/java/android/net/sip/
SipAudioCall.java 52 * <a href="{@docRoot}guide/topics/network/sip.html">Session Initiation Protocol</a>
111 * Called when the session is established.
121 * Called when the session is terminated.
131 * Called when the peer is busy during session initialization.
332 * @return the session state
345 * @return the session object that carries this call
378 public void onCalling(SipSession session) {
379 if (DBG) log("onCalling: session=" + session);
391 public void onRingingBack(SipSession session) {
    [all...]
  /external/chromium_org/sync/engine/
syncer_proto_util.cc 263 sessions::SyncSession* session,
283 session->context()->NotifyListeners(event);
351 SyncSession* session) {
358 AddRequestBirthday(session->context()->directory(), msg);
360 AddBagOfChips(session->context()->directory(), msg);
362 msg->mutable_client_status()->CopyFrom(session->context()->client_status());
363 msg->set_invalidator_client_id(session->context()->invalidator_client_id());
365 syncable::Directory* dir = session->context()->directory();
368 session->context()->traffic_recorder()->RecordClientToServerMessage(*msg);
369 if (!PostAndProcessHeaders(session->context()->connection_manager(), session
    [all...]
  /external/chromium_org/sync/test/engine/
syncer_command_test.h 42 // and a syncer session.
78 const sessions::SyncSessionSnapshot& session) OVERRIDE {
104 // Lazily create a session requesting all datatypes with no state.
105 sessions::SyncSession* session() { function in class:syncer::SyncerCommandTestBase
157 EXPECT_TRUE(command.GetGroupsToChangeForTest(*session()).empty());
165 command.GetGroupsToChangeForTest(*session()));
175 command.GetGroupsToChangeForTest(*session()));
186 command.GetGroupsToChangeForTest(*session()));
  /external/wpa_supplicant_8/src/crypto/
tls_gnutls.c 73 /* Data for session resumption */
84 gnutls_session session; member in struct:tls_connection
137 * that is expected to have same structure definition for the session
259 ret = gnutls_init(&conn->session,
267 ret = gnutls_set_default_priority(conn->session);
272 ret = gnutls_priority_set_direct(conn->session, "NORMAL:-VERS-SSL3.0",
280 ret = gnutls_certificate_type_set_priority(conn->session, cert_types);
284 ret = gnutls_protocol_set_priority(conn->session, protos);
289 gnutls_transport_set_pull_function(conn->session, tls_pull_func);
290 gnutls_transport_set_push_function(conn->session, tls_push_func)
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
sync_session.h 9 // session status in response to events and hiccups along the way, set and
10 // query session progress with regards to conflict resolution and applying
11 // server updates, and access the SyncSessionContext for the current session
45 // The Delegate services events that occur during the session requiring an
46 // explicit (and session-global) action, as opposed to events that are simply
47 // recorded in per-session state.
57 // as the delegate ensures no session is started if syncing is silenced.
59 // session and the interval has not yet elapsed, but the contract here is
61 // that any given session _instance_ is silenced. An example of reasonable
90 // Builds a thread-safe and read-only copy of the current session state
    [all...]
  /external/chromium/net/http/
http_response_body_drainer.cc 27 void HttpResponseBodyDrainer::Start(HttpNetworkSession* session) {
36 session_ = session;
37 session->AddResponseDrainer(this);
http_network_session_peer.h 25 const scoped_refptr<HttpNetworkSession>& session);
http_response_body_drainer.h 35 // doesn't complete immediately, it will add itself to |session|.
36 void Start(HttpNetworkSession* session);
  /external/chromium_org/net/tools/quic/
quic_spdy_client_stream.cc 20 QuicClientSession* session)
21 : QuicReliableClientStream(id, session),
66 session()->compressor()->CompressHeaders(header_block);
quic_spdy_server_stream.cc 19 QuicSession* session)
20 : QuicReliableServerStream(id, session),
73 session()->compressor()->CompressHeaders(header_block);
  /frameworks/base/media/java/android/media/
RemoteDisplay.java 126 final int width, final int height, final int flags, final int session) {
130 mListener.onDisplayConnected(surface, width, height, flags, session);
160 int width, int height, int flags, int session);
  /hardware/ti/omap4xxx/security/tf_sdk/include/
tee_client_api.h 163 TEEC_Session* session,
171 TEEC_Session* session);
174 TEEC_Session* session,
  /external/apache-http/src/org/apache/http/conn/ssl/
X509HostnameVerifier.java 62 boolean verify(String host, SSLSession session);
  /external/chromium_org/chrome/test/pyautolib/
prefs_info.py 15 print info.Prefs('session.restore_on_startup') # a single pref
84 path is a dot-separated string like "session.restore_on_startup".
  /external/chromium_org/net/dns/
dns_transaction.h 70 // |session|.
72 DnsSession* session) WARN_UNUSED_RESULT;
  /external/chromium_org/net/quic/
quic_crypto_stream.h 33 explicit QuicCryptoStream(QuicSession* session);

Completed in 1179 milliseconds

1 2 3 4 5 6 7 8 91011>>