OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:watches_
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/media_galleries/
gallery_watch_manager.cc
201
if (ContainsKey(
watches_
, owner)) {
236
watches_
[owner] = path;
264
WatchesMap::iterator it =
watches_
.find(owner);
265
if (it !=
watches_
.end()) {
267
watches_
.erase(it);
276
WatchesMap::iterator it =
watches_
.begin();
277
while (it !=
watches_
.end()) {
281
watches_
.erase(it++);
295
for (WatchesMap::const_iterator it =
watches_
.begin(); it !=
watches_
.end()
[
all
...]
gallery_watch_manager.h
143
WatchesMap
watches_
;
member in class:GalleryWatchManager
/external/chromium_org/base/files/
file_path_watcher_linux.cc
184
WatchVector
watches_
;
member in class:base::__anon6877::FilePathWatcherImpl
350
// Switch to message_loop() to access |
watches_
| safely.
360
if (
watches_
.empty()) {
371
// Find the entry in |
watches_
| that corresponds to |fired_watch|.
372
for (size_t i = 0; i <
watches_
.size(); ++i) {
373
const WatchEntry& watch_entry =
watches_
[i];
388
(watch_entry.subdir == child &&
watches_
[i + 1].subdir.empty());
442
watches_
.push_back(WatchEntry(comps[i]));
443
watches_
.push_back(WatchEntry(FilePath::StringType()));
455
// Switch to the message_loop() if necessary so we can access |
watches_
|
[
all
...]
Completed in 1089 milliseconds