Home
last modified time | relevance | path

Searched full:paths (Results 1 – 25 of 1801) sorted by relevance

12345678910>>...73

/freebsd/contrib/netbsd-tests/include/
H A Dt_paths.c39 #include <paths.h>
55 } paths[] = { variable
117 ATF_TC(paths);
118 ATF_TC_HEAD(paths, tc) in ATF_TC_HEAD() argument
120 atf_tc_set_md_var(tc, "descr", "A basic test for <paths.h>"); in ATF_TC_HEAD()
123 ATF_TC_BODY(paths, tc) in ATF_TC_BODY() argument
137 for (i = 0; i < __arraycount(paths); i++) { in ATF_TC_BODY()
139 (void)fprintf(stderr, "testing '%s'\n", paths[i].path); in ATF_TC_BODY()
142 fd = open(paths[i].path, O_RDONLY); in ATF_TC_BODY()
149 if ((paths[i].flags & PATH_OPT) == 0) { in ATF_TC_BODY()
[all …]
/freebsd/bin/pax/tests/
H A Dlegacy_test.pl36 my @paths = (
47 my @l = map { length } @paths;
50 create_file $_ for @paths;
68 push @paths, "$work94/x$x60/${x95}x256"; # 256 chars
69 push @l, length $paths[-1];
70 create_file $paths[-1];
75 unlink $paths[-1];
76 $paths[-1] = "$work94/${x95}xc100"; # 100 char filename
77 $l[-1] = length $paths[-1];
78 create_file $paths[-1];
[all …]
/freebsd/lib/geom/multipath/
H A Dgmultipath.8108 Additional device paths also will not be detected automatically.
111 method uses on-disk metadata to detect device and all its paths.
126 It is up to administrator, how to properly identify device paths.
172 If there are other paths present, new requests will be forwarded there.
215 Open underlying providers exclusively, preventing individual paths access.
223 in selecting providers that do indeed represent multiple paths to the
233 on different paths (or even disjoint fabrics) might be considered
239 paths to the same device.
254 In Active/Active mode all paths not marked FAIL may handle I/O at the same time.
255 Requests are distributed between paths to equalize load.
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCXXInheritance.cpp35 /// isAmbiguous - Determines whether the set of paths provided is
36 /// ambiguous, i.e., there are two or more paths that refer to
47 Paths.clear(); in clear()
58 Paths.swap(Other.Paths); in swap()
68 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false, in isDerivedFrom() local
70 return isDerivedFrom(Base, Paths); in isDerivedFrom()
74 CXXBasePaths &Paths) const { in isDerivedFrom()
78 Paths.setOrigin(const_cast<CXXRecordDecl*>(this)); in isDerivedFrom()
86 Paths); in isDerivedFrom()
93 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false, in isVirtuallyDerivedFrom() local
[all …]
/freebsd/contrib/libarchive/tar/test/
H A Dtest_option_P.c32 // I'm unsure how to specify paths with spaces for the test invocation on windows. in DEFINE_TEST()
33 // Adding quotes doesn't seem to work. We should find a way to escape these paths, in DEFINE_TEST()
49 r = systemf("%s --absolute-paths -cf test.tar %s", testprog, temp_absolute_file_name); in DEFINE_TEST()
51 r = systemf("%s --absolute-paths -cf test.tar \"%s\"", testprog, temp_absolute_file_name); in DEFINE_TEST()
57 // Extracting the archive without -P / --absolute-paths should strip leading drive letter or slash in DEFINE_TEST()
71 // Extracting the archive with -P / --absolute-paths should create the file. in DEFINE_TEST()
72 r = systemf("%s --absolute-paths -xf test.tar", testprog); in DEFINE_TEST()
/freebsd/contrib/ofed/opensm/libvendor/
H A Dosm_pkt_randomizer.c58 * paths that the given path includes it.
62 * the given paths: 0,1 or 0,3,1,4 - the return value will be FALSE.
110 * First - if not all paths are initialized, it randomally chooses if
112 * Second - if the path is in the fault paths (meaning - it is equal
113 * to or includes one of the fault paths) - then it randomally chooses
167 /* Check if the path given is in one of the fault paths */ in __osm_pkt_randomizer_process_path()
172 /* Check if all paths are initialized */ in __osm_pkt_randomizer_process_path()
177 /* the path is not in the false paths. Check using the rand value in __osm_pkt_randomizer_process_path()
187 /* update the path in the fault paths */ in __osm_pkt_randomizer_process_path()
201 OSM_LOG(p_log, OSM_LOG_VERBOSE, "%s not in fault paths\n", buf); in __osm_pkt_randomizer_process_path()
[all …]
/freebsd/release/scripts/
H A Dlist-new-changesets.py65 print("Changed paths:")
66 for paths in logentry.findall('paths'):
67 for path in paths.findall('path'):
98 for paths in logentry.findall('paths'):
99 for path in paths.findall('path'):
/freebsd/contrib/netbsd-tests/lib/libc/gen/
H A Dt_realpath.c49 } paths[] = { variable
79 for (i = 0; i < __arraycount(paths); i++) { in ATF_TC_BODY()
83 ptr = realpath(paths[i].path, buf); in ATF_TC_BODY()
85 if (ptr == NULL && paths[i].result == NULL) in ATF_TC_BODY()
88 if (ptr == NULL && paths[i].result != NULL) in ATF_TC_BODY()
89 atf_tc_fail("realpath failed for '%s'", paths[i].path); in ATF_TC_BODY()
91 if (strcmp(paths[i].result, buf) != 0) in ATF_TC_BODY()
93 paths[i].result, buf); in ATF_TC_BODY()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp106 PathStorage Paths; in canonicalize() local
107 Paths.VirtualPath = SrcPath; in canonicalize()
108 makeAbsolute(Paths.VirtualPath); in canonicalize()
113 Paths.CopyFrom = Paths.VirtualPath; in canonicalize()
114 updateWithRealPath(Paths.CopyFrom); in canonicalize()
117 sys::path::remove_dots(Paths.VirtualPath, /*remove_dot_dot=*/true); in canonicalize()
119 return Paths; in canonicalize()
123 PathCanonicalizer::PathStorage Paths = Canonicalizer.canonicalize(SrcPath); in addFileImpl() local
126 sys::path::append(DstPath, sys::path::relative_path(Paths.CopyFrom)); in addFileImpl()
129 // this we map different virtual src paths to the same entry in the VFS in addFileImpl()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp93 /// Adjust column widths to fit long file paths and function names.
138 /// Get the number of redundant path components in each path in \p Paths.
139 unsigned getNumRedundantPathComponents(ArrayRef<std::string> Paths) { in getNumRedundantPathComponents() argument
142 SmallVector<StringRef, 8> FirstPathComponents{sys::path::begin(Paths[0]), in getNumRedundantPathComponents()
143 sys::path::end(Paths[0])}; in getNumRedundantPathComponents()
146 for (unsigned I = 1, E = Paths.size(); NumRedundant > 0 && I < E; ++I) { in getNumRedundantPathComponents()
147 StringRef Path = Paths[I]; in getNumRedundantPathComponents()
151 // useful parts of already-visited paths. in getNumRedundantPathComponents()
167 /// Determine the length of the longest redundant prefix of the paths in
168 /// \p Paths.
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DAutomaton.h17 // input symbols will produce one path through the DFA but multiple paths
56 /// The internal class that maintains all possible paths through an NFA based
79 /// The returned paths. This is populated during getPaths.
80 SmallVector<NfaPath, 4> Paths;
123 Paths.clear();
140 Paths.clear();
148 Paths.push_back(std::move(P)); in getPaths()
150 return Paths; in getPaths()
186 /// use of transcription, which analyzes the possible paths in the original
249 /// Obtain a set of possible paths throug in canAdd()
82 SmallVector<NfaPath, 4> Paths; global() variable
[all...]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dimport_paths_changed.ksh22 # A pool should be importable even if device paths have changed.
27 # 3. Change the paths of some of the devices.
40 log_note "$0: pool '$poolcreate', changing paths of $pathstochange."
68 log_note "$0: pool '$poolcreate', swapping paths of $pathtoswap1" \
100 log_pass "zpool import succeeded after changing device paths."
/freebsd/contrib/kyua/utils/fs/
H A Dpath.cpp207 /// Less-than comparator for paths.
222 /// Compares two paths for equality.
224 /// Given that the paths are internally normalized, input paths such as
227 /// if the paths actually point to the same object my means of links.
231 /// \returns A boolean indicating whether the paths are equal.
239 /// Compares two paths for inequality.
246 /// \returns A boolean indicating whether the paths are different.
266 /// two paths are incompatible.
282 /// two paths are incompatible.
/freebsd/contrib/libucl/
H A DCMakeLists.txt49 PATHS ${RSPAMD_DEFAULT_INCLUDE_PATHS}
62 PATHS ${RSPAMD_DEFAULT_LIBRARY_PATHS}
78 PATHS ${RSPAMD_DEFAULT_INCLUDE_PATHS}
89 PATHS ${RSPAMD_DEFAULT_LIBRARY_PATHS}
103 PATHS ${RSPAMD_DEFAULT_INCLUDE_PATHS}
114 PATHS ${RSPAMD_DEFAULT_LIBRARY_PATHS}
138 FIND_LIBRARY(LIBFETCH_LIBRARY NAMES fetch PATHS PATH_SUFFIXES lib64 lib
139 PATHS
150 FIND_FILE(HAVE_FETCH_H NAMES fetch.h PATHS /usr/include
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DLookup.h201 Paths(std::move(Other.Paths)), in LookupResult()
215 Other.Paths = nullptr; in LookupResult()
224 Paths = std::move(Other.Paths);
240 Other.Paths = nullptr;
251 if (Paths) deletePaths(Paths); in ~LookupResult()
364 /// Return the base paths structure that's associated with
367 return Paths; in getBasePaths()
530 if (Paths) { in resolveKindAfterFilter()
531 deletePaths(Paths); in resolveKindAfterFilter()
532 Paths = nullptr; in resolveKindAfterFilter()
[all …]
/freebsd/cddl/usr.sbin/dwatch/
H A Ddwatch.1426 Print filesystem paths being created by
429 Print filesystem paths being looked-up by
432 Print directory paths being created by
435 Print device node paths being created by
438 Print directory paths being read by
441 Print filesystem paths being removed by
444 Print filesystem paths being renamed by
447 Print directory paths being removed by
450 Print symlink paths being created by
588 Watch paths being removed by
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dmodmisc.mk32 paths+= ${d:${MOD_OPT}:${MOD_HOMES}}
37 @echo "paths=${paths}"
38 @echo "PATHS=${paths:tu}"
/freebsd/usr.bin/clang/llvm-cov/
H A Dllvm-cov.1144 can be combined with the \-\-preserve\-paths option to use complete paths for
164 .B \-p, \-\-preserve\-paths
175 Only dump files with relative paths or absolute paths with the prefix specified
308 Skip source code files with file paths that match the given regular expression.
349 Directory used as a base for relative coverage mapping paths. Only applicable
380 Map the paths in the coverage data to local source file paths. This allows you
463 Skip source code files with file paths that match the given regular expression.
468 Directory used as a base for relative coverage mapping paths. Only applicable
534 Skip source code files with file paths that match the given regular expression.
558 Directory used as a base for relative coverage mapping paths. Only applicable
/freebsd/contrib/mandoc/
H A Dapropos.152 databases in the default paths stipulated by
105 Use the colon-separated path instead of the default list of paths
109 Invalid paths, or paths without manual databases, are ignored.
111 Prepend the colon-separated paths to the list of paths searched
115 Invalid paths, or paths without manual databases, are ignored.
H A Dmain.c505 printf("%s:", conf.manpath.paths[i]); in main()
506 printf("%s\n", conf.manpath.paths[i]); in main()
778 fs_lookup(const struct manpaths *paths, size_t ipath, in fs_lookup() argument
798 paths->paths[ipath], sec, name, sec); in fs_lookup()
804 paths->paths[ipath], sec, name); in fs_lookup()
813 paths->paths[ipath], sec, arch, name, sec); in fs_lookup()
819 cp = file = mandoc_malloc(strlen(paths->paths[ipath]) * 2 + in fs_lookup()
822 glob_esc(&cp, paths->paths[ipath], slman); in fs_lookup()
839 cp = file = mandoc_malloc(strlen(paths->paths[ipath]) * 2 + in fs_lookup()
843 glob_esc(&cp, paths->paths[ipath], slman); in fs_lookup()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_bookmark/
H A Dzfs_bookmark_cliargs.ksh37 # 2. Verify we can create a bookmark specifying snapshot and bookmark full paths
44 # bookmark full paths.
47 # 9. Verify two short paths are not allowed, and test empty paths
87 # Verify we can create a bookmark specifying snapshot and bookmark full paths
147 # and new bookmark full paths.
171 # Verify two short paths are not allowed, and test empty paths
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_sa_multipath_record.c548 for loopback paths, packetLifeTime shall be zero. */ in mpr_rcv_get_path_parms()
860 for loopback paths, packetLifeTime shall be zero. */ in mpr_rcv_build_pr()
926 rather then requiring non-reversible paths ... in mpr_rcv_get_lid_pair_path()
995 We shouldn't be here if the paths are disqualified in some way... in mpr_rcv_get_port_pair_paths()
998 We desire to return high-quality paths first. in mpr_rcv_get_port_pair_paths()
999 In OpenSM, higher quality mean least overlap with other paths. in mpr_rcv_get_port_pair_paths()
1000 This is acheived in practice by returning paths with in mpr_rcv_get_port_pair_paths()
1002 paths are more redundant that paths with the same LID repeated in mpr_rcv_get_port_pair_paths()
1003 on one side. For example, in OpenSM the paths between two in mpr_rcv_get_port_pair_paths()
1015 OpenSM ranks paths in three preference groups: in mpr_rcv_get_port_pair_paths()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DOHOS.cpp158 path_list &Paths = getFilePaths(); in OHOS() local
162 Paths); in OHOS()
166 Paths); in OHOS()
171 Paths); in OHOS()
287 path_list Paths; in getRuntimePaths() local
294 Paths.push_back(P.c_str()); in getRuntimePaths()
299 Paths.push_back(P.c_str()); in getRuntimePaths()
306 Paths.push_back(P.c_str()); in getRuntimePaths()
308 return Paths; in getRuntimePaths()
408 ToolChain::path_list Paths; in getArchSpecificLibPaths() local
[all …]
/freebsd/sbin/kldconfig/
H A Dkldconfig.853 Remove the specified paths from the module search path.
61 Add the specified paths to the beginning of the search path, not to the end.
62 This option can only be used when adding paths.
64 Instead of replacing the module search path with the set of paths
72 This option cannot be used if any paths are also specified.
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DContext.h87 /// The search paths provided are searched in order.
91 /// \param FrameworkSearchPaths Search paths to look up frameworks with.
92 /// \param LibrarySearchPaths Search paths to look up dylibs with.
93 /// \param SearchPaths Fallback search paths if library was not found in earlier
94 /// paths.

12345678910>>...73