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
280
const base::FilePath&
watch_path
,
285
gallery_id,
watch_path
, extension_id, event_router);
290
const base::FilePath&
watch_path
,
296
watch_path
, extension_id);
319
const base::FilePath&
watch_path
,
323
WatcherMap::const_iterator iter = gallery_watchers_.find(
watch_path
);
333
event_router, gallery_id,
watch_path
, extension_id,
336
watch_path
)));
339
gallery_watchers_[
watch_path
] = watch.get();
344
const base::FilePath&
watch_path
,
[
all
...]
/external/chromium_org/chrome/browser/chromeos/file_manager/
file_watcher.cc
17
// Creates a base::FilePathWatcher and starts watching at |
watch_path
| with
20
const base::FilePath&
watch_path
,
26
if (!watcher->Watch(
watch_path
, false /* recursive */, callback))
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
event_router.cc
357
base::FilePath
watch_path
= local_path;
local
358
bool is_on_drive = drive::util::IsUnderDriveMountPoint(
watch_path
);
363
watch_path
= drive::util::ExtractDrivePath(
watch_path
);
365
WatcherMap::iterator iter = file_watchers_.find(
watch_path
);
377
watch_path
,
383
file_watchers_[
watch_path
] = watcher.release();
395
base::FilePath
watch_path
= local_path;
local
399
if (drive::util::IsUnderDriveMountPoint(
watch_path
)) {
400
watch_path
= drive::util::ExtractDrivePath(watch_path)
[
all
...]
Completed in 50 milliseconds