OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FilePathWatcher
(Results
1 - 11
of
11
) sorted by null
/external/libchrome/base/files/
file_path_watcher.cc
5
// Cross platform methods for
FilePathWatcher
. See the various platform
20
FilePathWatcher
::~
FilePathWatcher
() {
25
void
FilePathWatcher
::CancelWatch(
31
bool
FilePathWatcher
::RecursiveWatchAvailable() {
43
FilePathWatcher
::PlatformDelegate::PlatformDelegate(): cancelled_(false) {
46
FilePathWatcher
::PlatformDelegate::~PlatformDelegate() {
50
bool
FilePathWatcher
::Watch(const FilePath& path,
file_path_watcher_mac.cc
17
class FilePathWatcherImpl : public
FilePathWatcher
::PlatformDelegate {
21
const
FilePathWatcher
::Callback& callback) override {
25
if (!
FilePathWatcher
::RecursiveWatchAvailable())
57
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
25
class FilePathWatcherFSEvents : public
FilePathWatcher
::PlatformDelegate {
29
//
FilePathWatcher
::PlatformDelegate overrides.
32
const
FilePathWatcher
::Callback& callback) override;
77
FilePathWatcher
::Callback callback_;
file_path_watcher_unittest.cc
111
// Instead, TestDelegate gets the notifications from
FilePathWatcher
and uses
135
FilePathWatcher
* watcher,
193
FilePathWatcher
* watcher,
215
FilePathWatcher
* watcher,
229
FilePathWatcher
watcher;
242
FilePathWatcher
watcher;
257
FilePathWatcher
watcher;
270
FilePathWatcher
watcher;
281
// Deletes the
FilePathWatcher
when it's notified.
284
Deleter(
FilePathWatcher
* watcher, MessageLoop* loop
[
all
...]
file_path_watcher_kqueue.h
30
class FilePathWatcherKQueue : public
FilePathWatcher
::PlatformDelegate,
43
//
FilePathWatcher
::PlatformDelegate overrides.
46
const
FilePathWatcher
::Callback& callback) override;
124
FilePathWatcher
::Callback callback_;
file_path_watcher_linux.cc
92
class FilePathWatcherImpl : public
FilePathWatcher
::PlatformDelegate,
118
const
FilePathWatcher
::Callback& callback) override;
126
// Deletion of the
FilePathWatcher
will call Cancel() to dispose of this
179
FilePathWatcher
::Callback callback_;
452
const
FilePathWatcher
::Callback& callback) {
481
task_runner()->PostTask(FROM_HERE, Bind(&
FilePathWatcher
::CancelWatch,
685
FilePathWatcher
::
FilePathWatcher
() {
file_path_watcher_fsevents.cc
87
const
FilePathWatcher
::Callback& callback) {
163
<< "Cancel() must be called before
FilePathWatcher
is destroyed.";
file_path_watcher_kqueue.cc
316
const
FilePathWatcher
::Callback& callback) {
/system/tpm/attestation/server/
database_impl.h
85
std::unique_ptr<base::
FilePathWatcher
> file_watcher_;
database_impl.cc
41
// A base::
FilePathWatcher
::Callback that just relays to |callback|.
153
file_watcher_.reset(new base::
FilePathWatcher
());
Completed in 526 milliseconds