Symbol: MonitoringInfo
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
449
MonitoringInfoSet& Add(const MonitoringInfo& info, bool expected = true)
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
459
return Add(MonitoringInfo(opcode, test_path(path)), expected);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
465
return Add(MonitoringInfo(opcode, test_path(fromPath),
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
479
const MonitoringInfo& InfoAt(int32 index) const
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
493
const MonitoringInfo& info = InfoAt(i);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
502
std::vector<MonitoringInfo> fInfos;
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
594
MonitoringInfo CreateDirectory(const char* path)
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
598
return MonitoringInfo(B_ENTRY_CREATED, absolutePath);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
601
MonitoringInfo CreateFile(const char* path)
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
607
return MonitoringInfo(B_ENTRY_CREATED, absolutePath);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
610
MonitoringInfo MoveEntry(const char* fromPath, const char* toPath)
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
617
return MonitoringInfo(B_ENTRY_MOVED, absoluteFromPath, absoluteToPath);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
620
MonitoringInfo RemoveEntry(const char* path)
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
623
MonitoringInfo info(B_ENTRY_REMOVED, absolutePath);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
632
MonitoringInfo TouchEntry(const char* path)
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
637
MonitoringInfo info(B_STAT_CHANGED, absolutePath);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
641
void ExpectNotification(const MonitoringInfo& info, bool expected = true)
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
697
const MonitoringInfo& info = infos.InfoAt(i);
src/tests/kits/storage/testapps/PathMonitorTest2.cpp
721
typedef BObjectList<MonitoringInfo> MonitoringInfoList;