OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FilePathWatcher
(Results
1 - 25
of
40
) sorted by null
1
2
/external/chromium_org/base/files/
file_path_watcher_stub.cc
14
class FilePathWatcherImpl : public
FilePathWatcher
::PlatformDelegate {
18
const
FilePathWatcher
::Callback& callback) OVERRIDE {
32
FilePathWatcher
::
FilePathWatcher
() {
file_path_watcher.cc
5
// Cross platform methods for
FilePathWatcher
. See the various platform
19
FilePathWatcher
::~
FilePathWatcher
() {
24
void
FilePathWatcher
::CancelWatch(
30
bool
FilePathWatcher
::RecursiveWatchAvailable() {
42
FilePathWatcher
::PlatformDelegate::PlatformDelegate(): cancelled_(false) {
45
FilePathWatcher
::PlatformDelegate::~PlatformDelegate() {
49
bool
FilePathWatcher
::Watch(const FilePath& path,
file_path_watcher_mac.cc
16
class FilePathWatcherImpl : public
FilePathWatcher
::PlatformDelegate {
20
const
FilePathWatcher
::Callback& callback) OVERRIDE {
24
if (!
FilePathWatcher
::RecursiveWatchAvailable())
56
FilePathWatcher
::
FilePathWatcher
() {
file_path_watcher.h
22
// underlying OS APIs,
FilePathWatcher
has slightly different semantics on OS X
23
// than on Windows or Linux.
FilePathWatcher
on Linux and Windows will detect
24
// modifications to files in a watched directory.
FilePathWatcher
on Mac will
28
class BASE_EXPORT
FilePathWatcher
{
45
// Stop watching. This is called from
FilePathWatcher
's dtor in order to
52
friend class
FilePathWatcher
;
83
FilePathWatcher
();
84
virtual ~
FilePathWatcher
();
106
DISALLOW_COPY_AND_ASSIGN(
FilePathWatcher
);
file_path_watcher_fsevents.h
23
class FilePathWatcherFSEvents : public
FilePathWatcher
::PlatformDelegate {
38
//
FilePathWatcher
::PlatformDelegate overrides.
41
const
FilePathWatcher
::Callback& callback) OVERRIDE;
57
FilePathWatcher
::Callback callback_;
file_path_watcher_win.cc
21
class FilePathWatcherImpl : public
FilePathWatcher
::PlatformDelegate,
29
//
FilePathWatcher
::PlatformDelegate overrides.
32
const
FilePathWatcher
::Callback& callback) OVERRIDE;
35
// Deletion of the
FilePathWatcher
will call Cancel() to dispose of this
64
FilePathWatcher
::Callback callback_;
91
const
FilePathWatcher
::Callback& callback) {
124
Bind(&
FilePathWatcher
::CancelWatch,
297
FilePathWatcher
::
FilePathWatcher
() {
file_path_watcher_browsertest.cc
106
// Instead, TestDelegate gets the notifications from
FilePathWatcher
and uses
130
FilePathWatcher
* watcher,
180
FilePathWatcher
* watcher,
201
FilePathWatcher
* watcher,
216
FilePathWatcher
watcher;
229
FilePathWatcher
watcher;
244
FilePathWatcher
watcher;
257
FilePathWatcher
watcher;
268
// Deletes the
FilePathWatcher
when it's notified.
271
Deleter(
FilePathWatcher
* watcher, MessageLoop* loop
[
all
...]
file_path_watcher_kqueue.h
29
class FilePathWatcherKQueue : public
FilePathWatcher
::PlatformDelegate,
42
//
FilePathWatcher
::PlatformDelegate overrides.
45
const
FilePathWatcher
::Callback& callback) OVERRIDE;
123
FilePathWatcher
::Callback callback_;
file_path_watcher_linux.cc
89
class FilePathWatcherImpl : public
FilePathWatcher
::PlatformDelegate,
115
const
FilePathWatcher
::Callback& callback) OVERRIDE;
123
// Deletion of the
FilePathWatcher
will call Cancel() to dispose of this
174
FilePathWatcher
::Callback callback_;
428
const
FilePathWatcher
::Callback& callback) {
458
Bind(&
FilePathWatcher
::CancelWatch,
665
FilePathWatcher
::
FilePathWatcher
() {
/external/chromium_org/chrome/browser/media_galleries/fileapi/
file_path_watcher_util.h
13
typedef base::Callback<void(scoped_ptr<base::
FilePathWatcher
> watcher)>
22
const base::
FilePathWatcher
::Callback& path_changed_callback);
file_path_watcher_util.cc
19
const base::
FilePathWatcher
::Callback& callback,
28
// the
FilePathWatcher
also needs to run on the FILE thread.
32
const base::
FilePathWatcher
::Callback& path_changed_callback) {
36
scoped_ptr<base::
FilePathWatcher
> watcher(new base::
FilePathWatcher
);
52
const base::
FilePathWatcher
::Callback& path_changed_callback) {
iapps_data_provider.h
53
// Called when the
FilePathWatcher
for |library_path_| has tried to add an
55
void OnLibraryWatchStarted(scoped_ptr<base::
FilePathWatcher
> library_watcher);
68
scoped_ptr<base::
FilePathWatcher
> library_watcher_;
picasa_data_provider.h
68
// Called when the
FilePathWatcher
for Picasa's temp directory has started.
70
scoped_ptr<base::
FilePathWatcher
> temp_dir_watcher);
112
scoped_ptr<base::
FilePathWatcher
> temp_dir_watcher_;
iapps_data_provider.cc
69
scoped_ptr<base::
FilePathWatcher
> library_watcher) {
/external/chromium_org/chrome/browser/chromeos/file_manager/
file_watcher.h
21
// For local files, the class maintains a
FilePathWatcher
instance and
64
const base::
FilePathWatcher
::Callback& file_watcher_callback,
68
// Called when a
FilePathWatcher
is created and started.
71
base::
FilePathWatcher
* file_path_watcher);
73
base::
FilePathWatcher
* local_file_watcher_;
file_watcher.cc
16
// Creates a base::
FilePathWatcher
and starts watching at |watch_path| with
18
base::
FilePathWatcher
* CreateAndStartFilePathWatcher(
20
const base::
FilePathWatcher
::Callback& callback) {
24
scoped_ptr<base::
FilePathWatcher
> watcher(new base::
FilePathWatcher
);
83
const base::
FilePathWatcher
::Callback& file_watcher_callback,
102
base::
FilePathWatcher
* file_watcher) {
/external/chromium_org/components/policy/core/common/
config_dir_policy_loader.h
59
base::
FilePathWatcher
mandatory_watcher_;
60
base::
FilePathWatcher
recommended_watcher_;
policy_loader_mac.h
44
// Callback for the
FilePathWatcher
.
67
base::
FilePathWatcher
watcher_;
/external/chromium_org/components/storage_monitor/
mtab_watcher_linux.h
55
base::
FilePathWatcher
file_watcher_;
/external/chromium_org/content/browser/
time_zone_monitor_linux.cc
44
//
FilePathWatcher
needs to run on the FILE thread, but TimeZoneMonitor runs
95
file_path_watchers_.push_back(new base::
FilePathWatcher
());
124
std::vector<base::
FilePathWatcher
*> file_path_watchers_;
/external/chromium_org/chrome/browser/extensions/api/braille_display_private/
braille_controller_brlapi.h
80
base::
FilePathWatcher
file_path_watcher_;
/external/chromium_org/chrome/common/
service_process_util_posix.h
75
base::
FilePathWatcher
executable_watcher_;
/external/chromium_org/remoting/host/linux/
audio_pipe_reader.h
79
base::
FilePathWatcher
file_watcher_;
/external/chromium_org/chrome/browser/media_galleries/
gallery_watch_manager.cc
42
explicit FileWatchManager(const base::
FilePathWatcher
::Callback& callback);
54
typedef std::map<base::FilePath, linked_ptr<base::
FilePathWatcher
> >
61
base::
FilePathWatcher
::Callback callback_;
69
const base::
FilePathWatcher
::Callback& callback)
91
linked_ptr<base::
FilePathWatcher
> watcher(new base::
FilePathWatcher
);
238
// Start the
FilePathWatcher
on |gallery_path| if necessary.
/external/chromium_org/remoting/host/
config_file_watcher.cc
77
scoped_ptr<base::
FilePathWatcher
> config_watcher_;
142
config_watcher_.reset(new base::
FilePathWatcher
());
Completed in 427 milliseconds
1
2