OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HandleWatcher
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/mojo/common/
handle_watcher.h
26
//
HandleWatcher
is used to asynchronously wait on a handle and notify a Closure
28
class MOJO_COMMON_EXPORT
HandleWatcher
{
30
HandleWatcher
();
31
~
HandleWatcher
();
65
DISALLOW_COPY_AND_ASSIGN(
HandleWatcher
);
bindings_support_impl.cc
20
// Context is used to track the number of
HandleWatcher
objects in use by a
25
void CallOnHandleReady(
HandleWatcher
* watcher,
42
// All
HandleWatcher
instances created through this interface should have
62
HandleWatcher
* watcher = new
HandleWatcher
();
75
HandleWatcher
* watcher = static_cast<
HandleWatcher
*>(async_wait_id);
handle_watcher.cc
231
//
HandleWatcher
::StartState ---------------------------------------------------
234
struct
HandleWatcher
::StartState {
235
explicit StartState(
HandleWatcher
* watcher) : weak_factory(watcher) {
253
base::WeakPtrFactory<
HandleWatcher
> weak_factory;
256
//
HandleWatcher
---------------------------------------------------------------
259
base::TickClock*
HandleWatcher
::tick_clock_ = NULL;
261
HandleWatcher
::
HandleWatcher
() {
264
HandleWatcher
::~
HandleWatcher
() {
[
all
...]
handle_watcher_unittest.cc
25
HandleWatcher
* watcher,
63
void Start(
HandleWatcher
* watcher, const MessagePipeHandle& handle) {
67
void StartWithCallback(
HandleWatcher
* watcher,
97
HandleWatcher
::tick_clock_ = NULL;
102
HandleWatcher
::tick_clock_ = &tick_clock_;
118
HandleWatcher
watcher;
141
HandleWatcher
watcher1;
148
HandleWatcher
watcher2;
155
HandleWatcher
watcher3;
203
HandleWatcher
watcher1
[
all
...]
Completed in 262 milliseconds