Home
last modified time | relevance | path

Searched refs:path1 (Results 1 – 11 of 11) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-inotify/
H A Dnew-test-inotify.patch143 - i.add_watch(path1)
144 + wd = i.add_watch(path1)
155 path1,
162 path1,
169 path1,
176 path1,
212 path1 = TestInotify._make_temp_path(path, 'aa')
215 i = inotify.adapters.Inotify([path1, path2])
218 TestInotify._open_write_close(path1, 'seen_new_file')
221 + wd_path1 = get_wd(i, path1)
[all …]
/openbmc/phosphor-power/test/
H A Dtemporary_file_tests.cpp115 fs::path path1 = file1.getPath(); in TEST() local
126 EXPECT_NE(path1, path2); in TEST()
135 EXPECT_EQ(file2.getPath(), path1); in TEST()
136 EXPECT_TRUE(fs::exists(path1)); in TEST()
177 fs::path path1 = file1.getPath(); in TEST() local
188 EXPECT_NE(path1, path2); in TEST()
205 EXPECT_EQ(file1.getPath(), path1); in TEST()
206 EXPECT_TRUE(fs::exists(path1)); in TEST()
H A Dtemporary_subdirectory_tests.cpp75 fs::path path1 = subdirectory1.getPath(); in TEST() local
86 EXPECT_NE(path1, path2); in TEST()
96 EXPECT_EQ(subdirectory2.getPath(), path1); in TEST()
97 EXPECT_TRUE(fs::exists(path1)); in TEST()
138 fs::path path1 = subdirectory1.getPath(); in TEST() local
149 EXPECT_NE(path1, path2); in TEST()
169 EXPECT_EQ(subdirectory1.getPath(), path1); in TEST()
170 EXPECT_TRUE(fs::exists(path1)); in TEST()
/openbmc/phosphor-logging/test/openpower-pels/
H A Dtemporary_file_test.cpp147 fs::path path1 = tmpFile->getPath(); in TEST_F() local
157 EXPECT_NE(path1, path2); in TEST_F()
166 EXPECT_EQ(tmpFileNoData->getPath(), path1); in TEST_F()
167 EXPECT_TRUE(fs::exists(path1)); in TEST_F()
199 fs::path path1 = tmpFile->getPath(); in TEST_F() local
209 EXPECT_NE(path1, path2); in TEST_F()
226 EXPECT_EQ(tmpFile->getPath(), path1); in TEST_F()
227 EXPECT_TRUE(fs::exists(path1)); in TEST_F()
/openbmc/phosphor-psu-code-mgmt/test/
H A Dtest_utils.cpp30 const char* path1 = "/com/example/chassis/powersupply1"; in TEST() local
54 *s = path1; in TEST()
64 EXPECT_EQ(path1, ret[1]); in TEST()
/openbmc/qemu/tests/qtest/
H A Dnetdev-socket.c424 gchar *path0, *path1; in test_dgram_unix() local
427 path1 = g_strconcat(tmpdir, "/dgram_unix1", NULL); in test_dgram_unix()
432 path0, path1); in test_dgram_unix()
435 path0, path1); in test_dgram_unix()
442 path1, path0); in test_dgram_unix()
446 path1, path0); in test_dgram_unix()
452 unlink(path1); in test_dgram_unix()
453 g_free(path1); in test_dgram_unix()
/openbmc/openpower-hw-diags/test/
H A Dtest-util-data-file.cpp36 fs::path path1 = fullPathTempFile1; in TEST() local
44 it = find(dataPaths.begin(), dataPaths.end(), path1); in TEST()
/openbmc/phosphor-objmgr/src/test/
H A Dhandler.cpp243 std::string path1 = "/test/object_path_0/child/grandchild"; in TEST_F() local
264 subtree = getSubTree(interfaceMap, path1, 0, interfaces); in TEST_F()
289 std::string path1 = "/test/object_path_0/child/grandchild"; in TEST_F() local
310 subtreePath = getSubTreePaths(interfaceMap, path1, 0, interfaces); in TEST_F()
344 sdbusplus::message::object_path path1("/test/object_path_0/child"); in TEST_F() local
376 path1 / "descendent", path1, 0, interfaces); in TEST_F()
415 sdbusplus::message::object_path path1("/test/object_path_0/child"); in TEST_F() local
437 path1 / "descendent", path1, 0, interfaces); in TEST_F()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/bubblewrap/bubblewrap/
H A D0001-Use-stdbool.h-for-booleans.patch577 path_equal (const char *path1,
585 @@ -256,14 +256,14 @@ path_equal (const char *path1,
586 while (*path1 != 0 && *path1 != '/')
588 if (*path1 != *path2)
591 path1++;
595 /* Matched path1 path element, must be entire path element */
/openbmc/u-boot/Documentation/sphinx/
H A Dkfigure.py105 def isNewer(path1, path2): argument
111 return (path.exists(path1)
112 and os.stat(path1).st_ctime > os.stat(path2).st_ctime)
/openbmc/openpower-proc-control/
H A Dtargeting.cpp99 metadata::PATH(e.path1().c_str())); in Targeting()