OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SyncContext
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/sync/internal_api/
sync_context.cc
11
SyncContext
::
SyncContext
() {
14
SyncContext
::~
SyncContext
() {
sync_context_proxy_impl.h
17
class
SyncContext
;
30
const base::WeakPtr<
SyncContext
>& sync_context);
52
// A SequencedTaskRunner representing the thread where the
SyncContext
lives.
55
// The
SyncContext
this object is wrapping.
56
base::WeakPtr<
SyncContext
> sync_context_;
sync_context_proxy_impl.cc
18
const base::WeakPtr<
SyncContext
>& sync_context)
32
base::Bind(&
SyncContext
::ConnectSyncTypeToWorker,
44
base::Bind(&
SyncContext
::DisconnectSyncWorker, sync_context_, type));
sync_manager_impl.h
38
class
SyncContext
;
294
scoped_ptr<
SyncContext
> sync_context_;
sync_manager_impl.cc
312
// Bind the
SyncContext
WeakPtr to this thread. This helps us crash earlier
314
base::WeakPtr<
SyncContext
> weak_core = model_type_registry_->AsWeakPtr();
[
all
...]
/external/chromium_org/sync/internal_api/public/
sync_context.h
27
class SYNC_EXPORT_PRIVATE
SyncContext
{
29
SyncContext
();
30
virtual ~
SyncContext
();
/external/chromium_org/ipc/
ipc_sync_channel.cc
29
// more other channels). That means that in
SyncContext
's OnMessageReceived,
61
void QueueMessage(const Message& msg, SyncChannel::
SyncContext
* context) {
79
this, scoped_refptr<
SyncContext
>(context)));
83
void QueueReply(const Message &msg, SyncChannel::
SyncContext
* context) {
89
void DispatchMessagesTask(
SyncContext
* context) {
97
void DispatchMessages(
SyncContext
* dispatching_context) {
103
scoped_refptr<SyncChannel::
SyncContext
> context;
132
void RemoveContext(
SyncContext
* context) {
200
QueuedMessage(Message* m,
SyncContext
* c) : message(m), context(c) { }
202
scoped_refptr<SyncChannel::
SyncContext
> context
[
all
...]
ipc_sync_channel.h
46
//
SyncContext
maintains the queue in a threadsafe way and listens for replies
119
//
SyncContext
holds the per object data for SyncChannel, so that SyncChannel
122
class
SyncContext
: public Context {
124
SyncContext
(
142
// needs to get dispatched (by calling
SyncContext
::DispatchMessages).
173
virtual ~
SyncContext
();
210
SyncContext
* sync_context() {
211
return reinterpret_cast<
SyncContext
*>(context());
217
SyncContext
* context, base::WaitableEvent* pump_messages_event);
221
static void WaitForReplyWithNestedMessageLoop(
SyncContext
* context)
[
all
...]
/external/chromium_org/sync/sessions/
model_type_registry.h
44
: public
SyncContext
,
104
base::WeakPtr<
SyncContext
> AsWeakPtr();
model_type_registry.cc
302
base::WeakPtr<
SyncContext
> ModelTypeRegistry::AsWeakPtr() {
Completed in 751 milliseconds