Home
last modified time | relevance | path

Searched refs:CancelWatch (Results 1 – 17 of 17) sorted by relevance

/external/libmojo/mojo/edk/js/
Dsupport.cc45 void CancelWatch(WaitingCallback* waiting_callback) { in CancelWatch() function
66 .SetMethod("cancelWatch", CancelWatch) in GetModule()
/external/libchrome/base/files/
Dfile_path_watcher.cc21 void FilePathWatcher::CancelWatch( in CancelWatch() function in base::FilePathWatcher
Dfile_path_watcher.h89 static void CancelWatch(const scoped_refptr<PlatformDelegate>& delegate);
Dfile_path_watcher_linux.cc481 task_runner()->PostTask(FROM_HERE, Bind(&FilePathWatcher::CancelWatch, in Cancel()
/external/libmojo/mojo/public/c/system/
Dthunks.cc197 assert(g_thunks.CancelWatch); in MojoCancelWatch()
198 return g_thunks.CancelWatch(handle, context); in MojoCancelWatch()
Dthunks.h122 MojoResult (*CancelWatch)(MojoHandle handle, uintptr_t context); member
/external/libmojo/mojo/edk/system/
Dmessage_pipe_dispatcher.h55 MojoResult CancelWatch(uintptr_t context) override;
Ddata_pipe_consumer_dispatcher.h50 MojoResult CancelWatch(uintptr_t context) override;
Ddata_pipe_producer_dispatcher.h49 MojoResult CancelWatch(uintptr_t context) override;
Ddispatcher.h76 virtual MojoResult CancelWatch(uintptr_t context);
Ddispatcher.cc31 MojoResult Dispatcher::CancelWatch(uintptr_t context) { in CancelWatch() function in mojo::edk::Dispatcher
Dcore.h141 MojoResult CancelWatch(MojoHandle handle, uintptr_t context);
Ddata_pipe_producer_dispatcher.cc113 MojoResult DataPipeProducerDispatcher::CancelWatch(uintptr_t context) { in CancelWatch() function in mojo::edk::DataPipeProducerDispatcher
Ddata_pipe_consumer_dispatcher.cc114 MojoResult DataPipeConsumerDispatcher::CancelWatch(uintptr_t context) { in CancelWatch() function in mojo::edk::DataPipeConsumerDispatcher
Dmessage_pipe_dispatcher.cc126 MojoResult MessagePipeDispatcher::CancelWatch(uintptr_t context) { in CancelWatch() function in mojo::edk::MessagePipeDispatcher
Dcore.cc429 MojoResult Core::CancelWatch(MojoHandle handle, uintptr_t context) { in CancelWatch() function in mojo::edk::Core
434 return dispatcher->CancelWatch(context); in CancelWatch()
/external/libmojo/mojo/edk/embedder/
Dentrypoints.cc56 return g_core->CancelWatch(handle, context); in MojoCancelWatchImpl()