OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:watch_event_
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/win/
registry.cc
21
watch_event_
(0) {
26
watch_event_
(0) {
239
if (!
watch_event_
)
240
watch_event_
= CreateEvent(NULL, TRUE, FALSE, NULL);
248
LONG result = RegNotifyChangeKeyValue(key_, TRUE, filter,
watch_event_
, TRUE);
250
CloseHandle(
watch_event_
);
251
watch_event_
= 0;
258
if (
watch_event_
) {
259
if (WaitForSingleObject(
watch_event_
, 0) == WAIT_OBJECT_0) {
269
if (
watch_event_
) {
[
all
...]
registry.h
80
// This can't be const because the |
watch_event_
| may be refreshed.
87
inline bool IsWatching() const { return
watch_event_
!= 0; }
88
HANDLE watch_event() const { return
watch_event_
; }
93
HANDLE
watch_event_
;
member in class:base::win::RegKey
Completed in 176 milliseconds