/external/chromium/chrome/browser/sessions/ |
session_restore.h | 12 #include "chrome/browser/sessions/session_types.h"
|
session_backend.h | 13 #include "chrome/browser/sessions/base_session_service.h" 14 #include "chrome/browser/sessions/session_command.h"
|
tab_restore_service_browsertest.cc | 5 #include "chrome/browser/sessions/session_types.h" 6 #include "chrome/browser/sessions/session_service.h" 7 #include "chrome/browser/sessions/tab_restore_service.h" 309 // Makes sure we don't attempt to load previous sessions after a restore. 323 // Makes sure we don't attempt to load previous sessions after a clean exit.
|
/external/chromium/chrome/browser/sync/engine/ |
syncer_proto_util.cc | 14 #include "chrome/browser/sync/sessions/sync_session.h" 34 using sessions::SyncSession; 85 sessions::SyncSession* session) { 142 sessions::SyncSession* session,
|
build_and_process_conflict_sets_command.cc | 16 #include "chrome/browser/sync/sessions/sync_session.h" 21 using sessions::ConflictProgress; 22 using sessions::StatusController; 23 using sessions::SyncSession; 24 using sessions::UpdateProgress;
|
syncer_thread.cc | 17 using sessions::SyncSession; 18 using sessions::SyncSessionSnapshot; 19 using sessions::SyncSourceInfo; 35 linked_ptr<sessions::SyncSession> session, bool is_canary_job, 68 SyncerThread::SyncerThread(sessions::SyncSessionContext* context, 138 sessions::SyncSessionSnapshot snapshot(dummy->TakeSnapshot()); 485 sessions::SyncSession* session, [all...] |
/external/chromium/chrome/browser/sync/sessions/ |
session_state.h | 5 // The 'sessions' namespace comprises all the pieces of state that are 25 #include "chrome/browser/sync/sessions/ordered_commit_set.h" 37 namespace sessions { namespace in namespace:browser_sync 303 } // namespace sessions
|
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
PCalledPartyIDHeader.java | 44 * so both URIs can receive invitations to new sessions. When the user receives an invitation
|
/external/tcpdump/ |
rpc_auth.h | 42 * "sessions".
|
/frameworks/base/core/java/android/net/ |
SSLSessionCache.java | 29 * File-based cache of established SSL sessions. When re-establishing a
|
/external/openssh/ |
sshd_config.0 | 142 sessions using ``sftp'', no additional configuration of the 144 though sessions which use logging do require /dev/log inside the 304 automatically selected for interactive sessions and the second 305 for non-interactive sessions. The default is ``lowdelay'' for 306 interactive sessions and ``throughput'' for non-interactive 307 sessions. 342 sessions by later breaking into the machine and stealing the 420 Specifies the maximum number of open sessions permitted per 576 hand, if TCP keepalives are not sent, sessions may hang 582 crashes. This avoids infinitely hanging sessions [all...] |
/external/bluetooth/bluez/network/ |
server.c | 80 GSList *sessions; /* Active connections */ member in struct:network_server 319 session = find_session(ns->sessions, chan); 365 ns->sessions = g_slist_append(ns->sessions, session); 744 session = find_session_by_addr(ns->sessions, dst_addr); 787 if (ns->sessions) { 788 g_slist_foreach(ns->sessions, (GFunc) session_free, NULL); 789 g_slist_free(ns->sessions);
|
/external/chromium/chrome/browser/ |
jumplist_win.h | 16 #include "chrome/browser/sessions/tab_restore_service.h" 17 #include "chrome/browser/sessions/tab_restore_service_observer.h"
|
/external/chromium/chrome/browser/sync/ |
backend_migrator.cc | 12 #include "chrome/browser/sync/sessions/session_state.h" 21 using sessions::SyncSessionSnapshot;
|
/external/chromium/chrome/browser/sync/syncable/ |
nigori_util.cc | 54 encrypted_types.insert(SESSIONS); 70 nigori->set_encrypt_sessions(types.count(SESSIONS) > 0);
|
/external/chromium/third_party/libjingle/source/talk/session/tunnel/ |
securetunnelsessionclient.h | 61 // The jid is used as the name for sessions for outgoing tunnels. 63 // and its sessions.
|
/external/qemu/slirp/ |
slirp_config.h | 31 /* interactive sessions less responsive */ 37 * You will notice a small lag in interactive sessions, but it's not that bad
|
/external/qemu/slirp-android/ |
slirp_config.h | 31 /* interactive sessions less responsive */ 37 * You will notice a small lag in interactive sessions, but it's not that bad
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLContextSpi.java | 90 * Returns the SSL session context that encapsulates the set of SSL sessions 100 * Returns the SSL session context that encapsulates the set of SSL sessions
|
SSLSession.java | 53 * Returns this sessions identifier. 55 * @return this sessions identifier.
|
SSLEngine.java | 136 * Returns whether new SSL sessions may be established by this engine. 139 * existing sessions must be reused. 242 * Sets whether new SSL sessions may be established by this engine instance. 245 * {@code true} if new SSL sessions may be established, 246 * {@code false} if existing SSL sessions must be reused.
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
call.cc | 126 std::vector<Session *> sessions = sessions_; local 130 for (it = sessions.begin(); it != sessions.end(); it++) 176 // If no more sessions for this call, delete it 195 const std::vector<Session *> &Call::sessions() { function in class:cricket::Call
|
/external/openssl/ssl/ |
ssl_sess.c | 245 * very close to 2^128 (or 2^256) SSL sessions to our server. How you might 246 * store that many sessions is perhaps a more interesting question ... */ 263 * we could not prevent the concurrent creation of sessions 467 * - Both for new and resumed sessions, s->tlsext_ticket_expected is set to 1 518 ret=lh_SSL_SESSION_retrieve(s->session_ctx->sessions,&data); 652 s=lh_SSL_SESSION_insert(ctx->sessions,c); 656 * ctx->sessions), or we're in trouble. */ 718 if ((r = lh_SSL_SESSION_retrieve(ctx->sessions,c)) == c) 721 r=lh_SSL_SESSION_delete(ctx->sessions,c); 998 tp.cache=s->sessions; [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/radius/ |
radius_server.c | 75 struct radius_session *sessions; member in struct:radius_client 166 struct radius_session *sess = client->sessions; 208 session = client->sessions; 212 client->sessions = sess->next; 264 sess->next = client->sessions; 265 client->sessions = sess; 845 struct radius_session *sessions) 849 session = sessions; 868 radius_server_free_sessions(data, prev->sessions); 1282 for (s = cli->sessions; s; s = s->next) [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteSession.java | 28 * <h2>About database sessions</h2> 33 * Sessions can be used to perform both read-only and read-write operations. 117 * A {@link SQLiteDatabase} can have multiple active sessions at the same 120 * are in use, then database transactions on some sessions will block until a 126 * efficiently by multiple sessions as long as they are not all trying to perform 181 * read but other sessions are allowed to read or write. 183 * or write but other sessions are only allowed to read. 201 * or write but other sessions are only allowed to read. 215 * or write but no other sessions are allowed to access the database. [all...] |