Symbol: BPathMonitor
headers/private/storage/PathMonitor.h
36
class BPathMonitor {
headers/private/storage/PathMonitor.h
53
BPathMonitor();
headers/private/storage/PathMonitor.h
54
~BPathMonitor();
headers/private/storage/PathMonitor.h
63
class BPathMonitor::BWatchingInterface {
headers/private/storage/PathMonitor.h
83
using BPrivate::BPathMonitor;
src/add-ons/input_server/filters/shortcut_catcher/KeyCommandMap.cpp
110
BPrivate::BPathMonitor::StopWatching(BMessenger(this, this));
src/add-ons/input_server/filters/shortcut_catcher/KeyCommandMap.cpp
88
BPrivate::BPathMonitor::StartWatching(fFileName,
src/apps/mail/MailWindow.cpp
2010
BPrivate::BPathMonitor::StopWatching(BMessenger(this, this));
src/apps/mail/MailWindow.cpp
3224
BPrivate::BPathMonitor::StartWatching(queryPath.Path(),
src/apps/text_search/GrepWindow.cpp
791
BPrivate::BPathMonitor::StartWatching(path.Path(),
src/apps/text_search/GrepWindow.cpp
811
BPrivate::BPathMonitor::StopWatching(BMessenger(this));
src/kits/network/libnetapi/NetworkSettings.cpp
526
return BPrivate::BPathMonitor::StopWatching(target);
src/kits/network/libnetapi/NetworkSettings.cpp
691
return BPrivate::BPathMonitor::StartWatching(path.Path(), B_WATCH_STAT,
src/kits/storage/PathMonitor.cpp
1966
BPathMonitor::BPathMonitor()
src/kits/storage/PathMonitor.cpp
1971
BPathMonitor::~BPathMonitor()
src/kits/storage/PathMonitor.cpp
1977
BPathMonitor::StartWatching(const char* path, uint32 flags,
src/kits/storage/PathMonitor.cpp
2043
BPathMonitor::StopWatching(const char* path, const BMessenger& target)
src/kits/storage/PathMonitor.cpp
2073
BPathMonitor::StopWatching(const BMessenger& target)
src/kits/storage/PathMonitor.cpp
2100
BPathMonitor::SetWatchingInterface(BWatchingInterface* watchingInterface)
src/kits/storage/PathMonitor.cpp
2108
BPathMonitor::_InitIfNeeded()
src/kits/storage/PathMonitor.cpp
2110
pthread_once(&sInitOnce, &BPathMonitor::_Init);
src/kits/storage/PathMonitor.cpp
2116
BPathMonitor::_Init()
src/kits/storage/PathMonitor.cpp
2146
BPathMonitor::BWatchingInterface::BWatchingInterface()
src/kits/storage/PathMonitor.cpp
2151
BPathMonitor::BWatchingInterface::~BWatchingInterface()
src/kits/storage/PathMonitor.cpp
2157
BPathMonitor::BWatchingInterface::WatchNode(const node_ref* node, uint32 flags,
src/kits/storage/PathMonitor.cpp
2165
BPathMonitor::BWatchingInterface::WatchNode(const node_ref* node, uint32 flags,
src/kits/storage/PathMonitor.cpp
2173
BPathMonitor::BWatchingInterface::StopWatching(const BMessenger& target)
src/kits/storage/PathMonitor.cpp
2180
BPathMonitor::BWatchingInterface::StopWatching(const BHandler* handler,
src/kits/storage/PathMonitor.cpp
62
static BPathMonitor::BWatchingInterface* sDefaultWatchingInterface = NULL;
src/kits/storage/PathMonitor.cpp
63
static BPathMonitor::BWatchingInterface* sWatchingInterface = NULL;
src/kits/tracker/DeskWindow.cpp
344
BPathMonitor::StartWatching(path.Path(), B_WATCH_STAT | B_WATCH_FILES_ONLY, this);
src/kits/tracker/Tracker.cpp
224
class TTracker::WatchingInterface : public BPathMonitor::BWatchingInterface {
src/kits/tracker/Tracker.cpp
254
BPathMonitor::SetWatchingInterface(fWatchingInterface);
src/kits/tracker/Tracker.cpp
310
BPathMonitor::SetWatchingInterface(NULL);
src/kits/tracker/VirtualDirectoryPoseView.cpp
146
BPathMonitor::StartWatching(path, B_WATCH_DIRECTORY | B_WATCH_CHILDREN
src/kits/tracker/VirtualDirectoryPoseView.cpp
163
BPathMonitor::StopWatching(this);
src/servers/input/AddOnManager.cpp
224
status = BPathMonitor::StartWatching(path.String(),
src/servers/input/AddOnManager.cpp
251
BPathMonitor::StopWatching(path.String(), this);
src/servers/launch/FileWatcher.cpp
117
status_t status = BPathMonitor::StartWatching(path.Path(),
src/servers/launch/FileWatcher.cpp
130
BPathMonitor::StopWatching(path.Path(), sWatcher);
src/servers/midi/DeviceWatcher.cpp
130
return BPathMonitor::StartWatching(kDevicesRoot,
src/servers/midi/DeviceWatcher.cpp
138
return BPathMonitor::StopWatching(kDevicesRoot, this);
src/servers/net/NetServer.cpp
151
BPrivate::BPathMonitor::StopWatching("/dev/net", this);
src/servers/net/NetServer.cpp
162
BPrivate::BPathMonitor::StartWatching("/dev/net",
src/tests/kits/storage/testapps/PathMonitorTest.cpp
20
using BPrivate::BPathMonitor;
src/tests/kits/storage/testapps/PathMonitorTest.cpp
39
status_t status = BPathMonitor::StartWatching(path, B_WATCH_ALL, this);
src/tests/kits/storage/testapps/PathMonitorTest.cpp
49
status_t status = BPathMonitor::StopWatching(fPath.Path(), this);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
33
using BPrivate::BPathMonitor;
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
540
BPathMonitor::StopWatching(this);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
589
FATAL_IF_ERROR(BPathMonitor::StartWatching(absolutePath, fFlags, this),