OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:HandleWatcher
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/mojo/common/
handle_watcher.h
25
//
HandleWatcher
is used to asynchronously wait on a handle and notify a Closure
27
class MOJO_COMMON_EXPORT
HandleWatcher
{
29
HandleWatcher
();
32
~
HandleWatcher
();
58
DISALLOW_COPY_AND_ASSIGN(
HandleWatcher
);
handle_watcher.cc
313
//
HandleWatcher
::StateBase and subclasses -------------------------------------
315
// The base class of
HandleWatcher
's state. Owns the user's callback and
318
class
HandleWatcher
::StateBase : public base::MessageLoop::DestructionObserver {
320
StateBase(
HandleWatcher
* watcher,
353
HandleWatcher
* watcher_;
362
// If the thread on which
HandleWatcher
is used runs MessagePumpMojo,
365
class
HandleWatcher
::SameThreadWatchingState : public StateBase,
368
SameThreadWatchingState(
HandleWatcher
* watcher,
407
// If the thread on which
HandleWatcher
is used runs a message pump different
410
class
HandleWatcher
::SecondaryThreadWatchingState : public StateBase
[
all
...]
Completed in 43 milliseconds