HomeSort by relevance Sort by last modified time
    Searched refs:watch_event_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/base/win/
registry.cc 41 watch_event_(0),
47 watch_event_(0),
53 watch_event_(0),
372 if (!watch_event_)
373 watch_event_ = CreateEvent(NULL, TRUE, FALSE, NULL);
381 LONG result = RegNotifyChangeKeyValue(key_, TRUE, filter, watch_event_, TRUE);
383 CloseHandle(watch_event_);
384 watch_event_ = 0;
391 if (watch_event_) {
392 if (WaitForSingleObject(watch_event_, 0) == WAIT_OBJECT_0)
    [all...]
registry.h 127 // This can't be const because the |watch_event_| may be refreshed.
134 inline bool IsWatching() const { return watch_event_ != 0; }
135 HANDLE watch_event() const { return watch_event_; }
151 HANDLE watch_event_; member in class:base::win::RegKey

Completed in 40 milliseconds