OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Core
(Results
51 - 57
of
57
) sorted by null
1
2
3
/external/chromium/net/socket/
tcp_client_socket_win.cc
62
// is destroyed while an operation is in progress, the
Core
is detached and it
65
class TCPClientSocketWin::
Core
: public base::RefCounted<
Core
> {
67
explicit
Core
(TCPClientSocketWin* socket);
100
friend class base::RefCounted<
Core
>;
104
explicit ReadDelegate(
Core
*
core
) : core_(
core
) {}
111
Core
* const core_;
116
explicit WriteDelegate(
Core
* core) : core_(core) {
[
all
...]
/external/chromium_org/chrome/browser/
pepper_flash_settings_manager.cc
35
class PepperFlashSettingsManager::
Core
37
public base::RefCountedThreadSafe<
Core
, BrowserThread::DeleteOnIOThread> {
39
Core
(base::WeakPtr<PepperFlashSettingsManager> manager,
44
// Notifies the
core
that it has been detached. Afterwards, no method should
72
friend class base::DeleteHelper<
Core
>;
122
virtual ~
Core
();
212
PepperFlashSettingsManager::
Core
::
Core
(
223
PepperFlashSettingsManager::
Core
::~
Core
() {
[
all
...]
/external/chromium_org/net/socket/
tcp_socket_win.cc
126
// destroyed while an operation is in progress, the
Core
is detached and it
129
class TCPSocketWin::
Core
: public base::RefCounted<
Core
> {
131
explicit
Core
(TCPSocketWin* socket);
155
friend class base::RefCounted<
Core
>;
159
explicit ReadDelegate(
Core
*
core
) : core_(
core
) {}
166
Core
* const core_;
171
explicit WriteDelegate(
Core
* core) : core_(core) {
[
all
...]
ssl_client_socket_nss.cc
161
// Used by SSLClientSocketNSS::
Core
to indicate there is no read result
280
// SSLClientSocketNSS::
Core
.
289
// SSLClientSocketNSS::
Core
.
299
// from within the SSLClientSocketNSS::
Core
.
301
//
Core
is backed by an IOBuffer. If the "const char*" is bound via
497
// SSLClientSocketNSS::
Core
provides a thread-safe, ref-counted
core
that is
507
// Threading within SSLClientSocketNSS and SSLClientSocketNSS::
Core
:
510
// such as signing, creating certificates, or locating private keys, the
Core
542
// SSLClientSocketNSS
Core
(Transport Socket
1323
Core*
core
= reinterpret_cast<Core*>(arg);
local
1353
Core*
core
= reinterpret_cast<Core*>(arg);
local
1565
Core*
core
= reinterpret_cast<Core*>(arg);
local
1591
Core*
core
= reinterpret_cast<Core*>(arg);
local
1679
Core*
core
= reinterpret_cast<Core*>(arg);
local
2340
Core*
core
= reinterpret_cast<Core*>(arg);
local
[
all
...]
/external/chromium_org/net/udp/
udp_socket_win.cc
38
// is destroyed while an operation is in progress, the
Core
is detached and it
41
class UDPSocketWin::
Core
: public base::RefCounted<
Core
> {
43
explicit
Core
(UDPSocketWin* socket);
64
friend class base::RefCounted<
Core
>;
68
explicit ReadDelegate(
Core
*
core
) : core_(
core
) {}
75
Core
* const core_;
80
explicit WriteDelegate(
Core
* core) : core_(core) {
[
all
...]
/external/chromium/chrome/browser/sync/glue/
sync_backend_host.h
159
// See the implementation and
Core
::DoShutdown for details.
260
class
Core
: public base::RefCountedThreadSafe<SyncBackendHost::
Core
>,
265
explicit
Core
(SyncBackendHost* backend);
267
// SyncManager::Observer implementation. The
Core
just acts like an air
375
// 3) Destroy this
Core
. That will delete syncapi components in a safe order
379
// Posts a config request on the
core
thread.
425
friend class base::RefCountedThreadSafe<SyncBackendHost::
Core
>;
428
virtual ~
Core
();
473
// Called from
Core
::OnSyncCycleCompleted to handle updating fronten
[
all
...]
sync_backend_host.cc
61
: core_(new
Core
(ALLOW_THIS_IN_INITIALIZER_LIST(this))),
144
InitCore(
Core
::DoInitializeOptions(
201
void SyncBackendHost::InitCore(const
Core
::DoInitializeOptions& options) {
203
NewRunnableMethod(core_.get(), &SyncBackendHost::
Core
::DoInitialize,
210
&SyncBackendHost::
Core
::DoUpdateCredentials,
216
NewRunnableMethod(core_.get(), &SyncBackendHost::
Core
::DoStartSyncing));
237
NewRunnableMethod(core_.get(), &SyncBackendHost::
Core
::DoSetPassphrase,
249
&SyncBackendHost::
Core
::DoShutdown,
266
// frontend_loop_ by our
Core
) will epically fail because the CRT won't be
406
&SyncBackendHost::
Core
::FinishConfigureDataTypes))
[
all
...]
Completed in 278 milliseconds
1
2
3