OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:watch_path
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/media_galleries_private/
gallery_watch_manager.h
40
// |
watch_path
| specifies the absolute gallery path.
45
const base::FilePath&
watch_path
,
51
// |
watch_path
| specifies the absolute gallery path.
53
const base::FilePath&
watch_path
,
70
// |
watch_path
| specifies the absolute path of the gallery. Returns true,
74
const base::FilePath&
watch_path
,
79
// |extension_id|. |
watch_path
| specifies the absolute path of the gallery.
80
void StopGalleryWatch(const base::FilePath&
watch_path
,
90
// |
watch_path
|.
91
void RemoveGalleryFilePathWatcherEntry(const base::FilePath&
watch_path
);
[
all
...]
gallery_watch_manager.cc
282
const base::FilePath&
watch_path
,
287
gallery_id,
watch_path
, extension_id, event_router);
292
const base::FilePath&
watch_path
,
298
watch_path
, extension_id);
321
const base::FilePath&
watch_path
,
325
WatcherMap::const_iterator iter = gallery_watchers_.find(
watch_path
);
335
event_router, gallery_id,
watch_path
, extension_id,
338
watch_path
)));
341
gallery_watchers_[
watch_path
] = watch.get();
346
const base::FilePath&
watch_path
,
[
all
...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
file_watcher.cc
16
// Creates a base::FilePathWatcher and starts watching at |
watch_path
| with
19
const base::FilePath&
watch_path
,
25
if (!watcher->Watch(
watch_path
, false /* recursive */, callback))
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
event_router.cc
452
base::FilePath
watch_path
= local_path;
local
453
bool is_on_drive = drive::util::IsUnderDriveMountPoint(
watch_path
);
458
watch_path
= drive::util::ExtractDrivePath(
watch_path
);
460
WatcherMap::iterator iter = file_watchers_.find(
watch_path
);
472
watch_path
,
478
file_watchers_[
watch_path
] = watcher.release();
490
base::FilePath
watch_path
= local_path;
local
494
if (drive::util::IsUnderDriveMountPoint(
watch_path
)) {
495
watch_path
= drive::util::ExtractDrivePath(watch_path)
[
all
...]
Completed in 665 milliseconds