Lines Matching refs:objectPath

78 void Manager::createWithRestore(const std::string& objectPath,  in createWithRestore()  argument
81 createObject(objectPath, interfaces); in createWithRestore()
83 restoreCalloutObjects(objectPath, interfaces); in createWithRestore()
86 void Manager::create(const std::string& objectPath, in create() argument
89 createObject(objectPath, interfaces); in create()
91 createCalloutObjects(objectPath, interfaces); in create()
94 void Manager::createObject(const std::string& objectPath, in createObject() argument
99 createPolicyInterface(objectPath, logInterface->second); in createObject()
110 void Manager::addInterface(const std::string& objectPath, InterfaceType type, in addInterface() argument
113 auto id = getEntryID(objectPath); in addInterface()
128 void Manager::addChildInterface(const std::string& objectPath, in addChildInterface() argument
131 auto id = getEntryID(objectPath); in addChildInterface()
162 void Manager::createPolicyInterface(const std::string& objectPath, in createPolicyInterface() argument
168 bus, objectPath.c_str(), PolicyObject::action::defer_emit); in createPolicyInterface()
177 addInterface(objectPath, InterfaceType::POLICY, anyObject); in createPolicyInterface()
181 void Manager::createCalloutObjects(const std::string& objectPath, in createCalloutObjects() argument
199 auto id = getEntryID(objectPath); in createCalloutObjects()
236 auto calloutPath = getCalloutObjectPath(objectPath, calloutNum); in createCalloutObjects()
250 addChildInterface(objectPath, InterfaceType::CALLOUT, anyObject); in createCalloutObjects()
260 void Manager::restoreCalloutObjects(const std::string& objectPath, in restoreCalloutObjects() argument
263 auto saveDir = getCalloutSaveDir(getEntryID(objectPath)); in restoreCalloutObjects()
285 auto path = getCalloutObjectPath(objectPath, id); in restoreCalloutObjects()
292 addChildInterface(objectPath, InterfaceType::CALLOUT, anyObject); in restoreCalloutObjects()
337 std::string Manager::getCalloutObjectPath(const std::string& objectPath, in getCalloutObjectPath() argument
340 return fs::path{objectPath} / "callouts" / std::to_string(calloutNum); in getCalloutObjectPath()