Home
last modified time | relevance | path

Searched refs:SyncWatch (Results 1 – 3 of 3) sorted by relevance

/openbmc/phosphor-bmc-code-mgmt/
H A Dsync_watch.hpp25 class SyncWatch class
34 SyncWatch(sd_event& loop, std::function<int(int, fs::path&)> syncCallback);
36 SyncWatch(const SyncWatch&) = delete;
37 SyncWatch& operator=(const SyncWatch&) = delete;
38 SyncWatch(SyncWatch&&) = default;
39 SyncWatch& operator=(SyncWatch&&) = delete;
43 ~SyncWatch();
H A Dsync_watch.cpp23 void SyncWatch::addInotifyWatch(const fs::path& path) in addInotifyWatch()
37 SyncWatch::SyncWatch(sd_event& loop, in SyncWatch() function in phosphor::software::manager::SyncWatch
69 SyncWatch::~SyncWatch() in ~SyncWatch()
77 int SyncWatch::callback(sd_event_source* /* s */, int fd, uint32_t revents, in callback()
93 auto syncWatch = static_cast<SyncWatch*>(userdata); in callback()
H A Dsync_manager_main.cpp28 phosphor::software::manager::SyncWatch watch(*loop, syncCallback); in main()