Home
last modified time | relevance | path

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

/system/core/init/
Dmount_handler.h41 class MountHandler {
43 explicit MountHandler(Epoll* epoll);
44 MountHandler(const MountHandler&) = delete;
45 MountHandler(MountHandler&&) = delete;
46 MountHandler& operator=(const MountHandler&) = delete;
47 MountHandler& operator=(MountHandler&&) = delete;
48 ~MountHandler();
Dmount_handler.cpp115 MountHandler::MountHandler(Epoll* epoll) : epoll_(epoll), fp_(fopen("/proc/mounts", "re"), fclose) { in MountHandler() function in android::init::MountHandler
122 MountHandler::~MountHandler() { in ~MountHandler()
126 void MountHandler::MountHandlerFunction() { in MountHandlerFunction()
Dinit.cpp812 MountHandler mount_handler(&epoll); in SecondStageMain()