/freebsd/contrib/netbsd-tests/include/ |
H A D | t_paths.c | 39 #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 D | legacy_test.pl | 36 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 D | gmultipath.8 | 108 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 D | CXXInheritance.cpp | 35 /// 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 D | test_option_P_upper.c | 32 // 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 D | osm_pkt_randomizer.c | 58 * 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 D | list-new-changesets.py | 65 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/crypto/krb5/doc/ |
H A D | conf.py | 31 # Add any paths that contain templates here, relative to this directory. 123 # Add any paths that contain custom themes here, relative to this directory. 143 # Add any paths that contain custom static files (such as style sheets) here, 247 # Read configured paths from a file produced by the build system. 248 exec(open("paths.py").read()) 250 bindir = ':ref:`BINDIR <paths>`' 251 sbindir = ':ref:`SBINDIR <paths>`' 252 libdir = ':ref:`LIBDIR <paths>`' 253 localstatedir = ':ref:`LOCALSTATEDIR <paths>`' 254 runstatedir = ':ref:`RUNSTATEDIR <paths>`' [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/gen/ |
H A D | t_realpath.c | 49 } 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 D | FileCollector.cpp | 106 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/crypto/krb5/src/lib/krb5/unicode/ucdata/ |
H A D | ucdata.c | 89 _ucopenfile(char *paths, char *filename, char *mode) in _ucopenfile() argument 97 dp = paths; in _ucopenfile() 136 _ucprop_load(char *paths, int reload) in _ucprop_load() argument 159 if ((in = _ucopenfile(paths, "ctype.dat", "rb")) == 0) in _ucprop_load() 323 _uccase_load(char *paths, int reload) in _uccase_load() argument 340 if ((in = _ucopenfile(paths, "case.dat", "rb")) == 0) in _uccase_load() 518 _uccomp_load(char *paths, int reload) in _uccomp_load() argument 535 if ((in = _ucopenfile(paths, "comp.dat", "rb")) == 0) in _uccomp_load() 716 _ucdcmp_load(char *paths, int reload) in _ucdcmp_load() argument 733 if ((in = _ucopenfile(paths, "decomp.dat", "rb")) == 0) in _ucdcmp_load() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageReport.cpp | 93 /// 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 D | Automaton.h | 17 // 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 D | import_paths_changed.ksh | 23 # A pool should be importable even if device paths have changed. 28 # 3. Change the paths of some of the devices. 41 log_note "$0: pool '$poolcreate', changing paths of $pathstochange." 69 log_note "$0: pool '$poolcreate', swapping paths of $pathtoswap1" \ 101 log_pass "zpool import succeeded after changing device paths."
|
/freebsd/contrib/kyua/utils/fs/ |
H A D | path.cpp | 207 /// 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/crypto/krb5/doc/html/ |
H A D | mitK5defaults.html | 73 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">DEFKTNAME</span></a></… 77 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">DEFCKTNAME</span></a><… 81 …te"><span class="pre">:</span></code><a class="reference internal" href="#paths"><span class="std … 85 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">LOCALSTATEDIR</span></… 89 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">SYSCONFDIR</span></a><… 93 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">LOCALSTATEDIR</span></… 97 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">LOCALSTATEDIR</span></… 101 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">LOCALSTATEDIR</span></… 105 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">RUNSTATEDIR</span></a>… 109 <td><p><a class="reference internal" href="#paths"><span class="std std-ref">LIBDIR</span></a><code… [all …]
|
/freebsd/contrib/libucl/ |
H A D | CMakeLists.txt | 49 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 D | Lookup.h | 201 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 D | dwatch.1 | 426 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/usr.bin/clang/llvm-cov/ |
H A D | llvm-cov.1 | 144 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/bmake/unit-tests/ |
H A D | modmisc.mk | 32 paths+= ${d:${MOD_OPT}:${MOD_HOMES}} 37 @echo "paths=${paths}" 38 @echo "PATHS=${paths:tu}"
|
/freebsd/crypto/krb5/src/doc/ |
H A D | Makefile.in | 41 # configured paths). This can be done in an unconfigured source tree 54 # paths. 55 substhtml: composite paths.py 57 cp paths.py rst_composite 111 paths.py: 133 Doxyfile paths.py $(docsrc)/version.py notice.txt \
|
/freebsd/contrib/ofed/opensm/opensm/ |
H A D | osm_sa_multipath_record.c | 548 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/mandoc/ |
H A D | apropos.1 | 52 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.
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_bookmark/ |
H A D | zfs_bookmark_cliargs.ksh | 38 # 2. Verify we can create a bookmark specifying snapshot and bookmark full paths 45 # bookmark full paths. 48 # 9. Verify two short paths are not allowed, and test empty paths 88 # Verify we can create a bookmark specifying snapshot and bookmark full paths 148 # and new bookmark full paths. 172 # Verify two short paths are not allowed, and test empty paths
|