Home
last modified time | relevance | path

Searched refs:targetPath (Results 1 – 7 of 7) sorted by relevance

/openbmc/openpower-pnor-code-mgmt/test/
H A Dtest_functions.cpp265 std::filesystem::path targetPath = workdir / "target"; in TEST() local
267 functions::process_hostfirmware::writeLink(linkPath.filename(), targetPath, in TEST()
280 auto targetPath = workdir / "target"; in TEST() local
281 std::ofstream link{linkPath}, target{targetPath}; in TEST()
282 functions::process_hostfirmware::writeLink(linkPath.filename(), targetPath, in TEST()
298 auto targetPath = workdir / "target"; in TEST() local
299 std::filesystem::create_directory(targetPath); in TEST()
301 auto filePath = targetPath / "file"; in TEST()
307 EXPECT_EQ(callbackPath, targetPath); in TEST()
321 auto targetPath = workdir / "foo/bar/foo"; in TEST() local
[all …]
/openbmc/openbmc-tools/sensor_yaml_config/
H A Dsensor_yaml_config.py16 targetPath: str
249 r["path"] = getDimmTempPath(s.targetPath)
264 r["path"] = getCoreTempPath(s.name, s.targetPath)
398 s.targetPath,
402 if "dimm" in s.targetPath.lower():
405 elif "core" in s.targetPath.lower():
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dpopulate_sdk_base.bbclass258 targetPath = os.readlink(linkPath)
259 if not os.path.isabs(targetPath):
260 targetPath = os.path.join(linkDirPath, targetPath)
261 targetPath = norm_path(targetPath)
263 if SCAN_ROOT != os.path.commonprefix( [SCAN_ROOT, targetPath] ):
264 bb.error("Escaping symlink {0!s} --> {1!s}".format(linkPath, targetPath))
267 if not os.path.exists(targetPath):
268 bb.error("Broken symlink {0!s} --> {1!s}".format(linkPath, targetPath))
271 if os.path.isdir(targetPath):
272 dir_walk(targetPath)
/openbmc/phosphor-fan-presence/monitor/
H A Djson_parser.cpp149 std::string targetPath; in getSensorDefs() local
152 targetPath = sensor["target_path"].get<std::string>(); in getSensorDefs()
183 .targetPath = targetPath, in getSensorDefs()
H A Dtypes.hpp110 std::string targetPath; member
H A Dfan.cpp69 s.targetInterface, s.targetPath, s.factor, s.offset, def.method, in Fan()
/openbmc/ipmbbridge/
H A Dipmbbridged.cpp815 const std::string& targetPath = channelConfig["slave-path"]; in initializeChannels() local
829 if (channel->ipmbChannelInit(targetPath.c_str()) < 0) in initializeChannels()