Searched refs:toFind (Results 1 – 1 of 1) sorted by relevance
584 std::string toFind("system1/chassis1/motherboard1"); in updateOemDbusPaths() local585 if (dbusPath.find(toFind) != std::string::npos) in updateOemDbusPaths()587 size_t pos = dbusPath.find(toFind); in updateOemDbusPaths()588 dbusPath.replace(pos, toFind.length(), "system/chassis/motherboard"); in updateOemDbusPaths()590 toFind = "system1"; in updateOemDbusPaths()591 if (dbusPath.find(toFind) != std::string::npos) in updateOemDbusPaths()593 size_t pos = dbusPath.find(toFind); in updateOemDbusPaths()594 dbusPath.replace(pos, toFind.length(), "system"); in updateOemDbusPaths()599 toFind = "socket"; in updateOemDbusPaths()600 size_t pos1 = dbusPath.find(toFind); in updateOemDbusPaths()[all …]