| /src/sbin/mount_portal/examples/ |
| sysctlfs.sh.sh | 3 ## Fast hack at a sysctl filesystem. The path can be either in 6 for path in $*; do 8 path=`echo $path | tr '/' '.'` 14 sysctl $path | sed -e "s/$path//;s/^\.//;s/^ = //"
|
| /src/external/bsd/pdisk/dist/ |
| pathname.c | 76 open_pathname_as_media(char *path, int oflag) 83 if (strncmp("/dev/", path, 5) == 0) { 84 if (strncmp("/dev/scsi", path, 9) == 0) { 85 if (path[9] >= '0' && path[9] <= '7' && path[10] == 0) { 87 id = path[9] - '0'; 89 } else if (path[9] >= '0' && path[9] <= '7' && path[10] == '. [all...] |
| /src/usr.sbin/sysinst/arch/amd64/ |
| md.c | 7 void amd64_md_boot_cfg_finalize(const char *path); 10 amd64_md_boot_cfg_finalize(const char *path) 19 "< %s > %s.1", path, path); 20 snprintf(buf, sizeof buf, "%s.1", path); 21 mv_within_target_or_die(buf, path);
|
| /src/external/bsd/kyua-cli/dist/utils/fs/ |
| path.hpp | 29 /// \file utils/fs/path.hpp 30 /// Provides the utils::fs::path class. 32 /// This is a poor man's reimplementation of the path class provided by 46 /// Representation and manipulation of a file system path. 48 /// Application code should always use this class to represent a path instead of 53 class path { class in namespace:utils::fs 54 /// Internal representation of the path. 58 explicit path(const std::string&); 63 path branch_path(void) const; 65 path to_absolute(void) const [all...] |
| operations.hpp | 46 class path; 49 path current_path(void); 50 bool exists(const fs::path&); 51 utils::optional< path > find_in_path(const char*); 52 void mkdir(const path&, const int); 53 void mkdir_p(const path&, const int); 54 fs::path mkdtemp(const std::string&); 55 fs::path mkstemp(const std::string&); 56 void rm_r(const path&); 57 void rmdir(const path&) [all...] |
| path_test.cpp | 29 #include "utils/fs/path.hpp" 43 using utils::fs::path; 59 ATF_REQUIRE_EQ(".", path(".").str()); 60 ATF_REQUIRE_EQ("..", path("..").str()); 61 ATF_REQUIRE_EQ("/", path("/").str()); 62 ATF_REQUIRE_EQ("/", path("///").str()); 64 ATF_REQUIRE_EQ("foo", path("foo").str()); 65 ATF_REQUIRE_EQ("foo/bar", path("foo/bar").str()); 66 ATF_REQUIRE_EQ("foo/bar", path("foo/bar/").str()); 68 ATF_REQUIRE_EQ("/foo", path("/foo").str()) [all...] |
| /src/lib/libc/stdio/ |
| mktemp.c | 45 _mktemp(char *path) 48 _DIAGASSERT(path != NULL); 50 return GETTEMP(path, NULL, 0, 0, 0) ? path : NULL; 57 mktemp(char *path) 60 _DIAGASSERT(path != NULL); 62 return GETTEMP(path, NULL, 0, 0, 0) ? path : NULL;
|
| mkdtemp.c | 46 mkdtemp(char *path) 48 _DIAGASSERT(path != NULL); 50 return GETTEMP(path, NULL, 1, 0, 0) ? path : NULL;
|
| mkostemp.c | 31 mkostemp(char *path, int oflags) 35 return GETTEMP(path, &fd, 0, 0, oflags) ? fd : -1;
|
| /src/sys/external/bsd/acpica/dist/generate/lint/ |
| lset.bat | 1 set path=%PATH%;$G variable
|
| /src/external/gpl2/lvm2/dist/scripts/ |
| last_cvs_update.sh | 19 ## it was updated. May be given a relative or absolute path. 30 ## $path/$file 37 then path=.; 40 then echo "usage: $0 [ -h | path ]" 44 then path=$1; 46 echo "usage: $0 [ -h | path ]" 52 # grab the tag from the path passed in 53 if [[ -f $path/CVS/Tag ]]; 54 then echo "Tag: " `cat $path/CVS/Tag | sed -e 's/^[NT]//'` 62 # find the path for the Entries fil [all...] |
| /src/usr.bin/make/unit-tests/ |
| varmod-path.exp | 1 varmod-path.subdir/varmod-path.phony 2 varmod-path.subdir/varmod-path.real 3 varmod-path.enoent
|
| /src/sys/external/bsd/compiler_rt/dist/lib/profile/ |
| InstrProfilingUtil.c | 23 void __llvm_profile_recursive_mkdir(char *path) { 26 for (i = 1; path[i] != '\0'; ++i) { 27 if (path[i] != '/') continue; 28 path[i] = '\0'; 30 _mkdir(path); 32 mkdir(path, 0755); /* Some of these will fail, ignore it. */ 34 path[i] = '/';
|
| /src/sys/arch/arm/dts/ |
| imx6q-utilite-pro.dts | 32 stdout-path = &uart4;
|
| omap3-beagle-xm.dts | 33 stdout-path = &uart3;
|
| omap3-beagle.dts | 33 stdout-path = &uart3;
|
| omap3-n900.dts | 33 stdout-path = &dss;
|
| /src/external/bsd/atf/dist/atf-c++/detail/ |
| fs.hpp | 57 // The "path" class. 61 //! \brief A class to represent a path to a file. 63 //! The path class represents the route to a file or directory in the 68 //! It is important to note that the file pointed to by a path need not 71 class path { class in namespace:atf::fs 73 //! \brief Internal representation of a path. 78 //! \brief Constructs a new path from a user-provided string. 81 //! code or by the user and constructs a new path object. The string 87 explicit path(const std::string&); 92 path(const path&) [all...] |
| /src/external/apache2/llvm/dist/clang/tools/scan-build-py/bin/ |
| analyze-build | 9 import os.path 10 this_dir = os.path.dirname(os.path.realpath(__file__)) 11 sys.path.append(os.path.dirname(this_dir))
|
| analyze-c++ | 8 import os.path 9 this_dir = os.path.dirname(os.path.realpath(__file__)) 10 sys.path.append(os.path.dirname(this_dir))
|
| analyze-cc | 8 import os.path 9 this_dir = os.path.dirname(os.path.realpath(__file__)) 10 sys.path.append(os.path.dirname(this_dir))
|
| intercept-build | 9 import os.path 10 this_dir = os.path.dirname(os.path.realpath(__file__)) 11 sys.path.append(os.path.dirname(this_dir))
|
| intercept-c++ | 8 import os.path 9 this_dir = os.path.dirname(os.path.realpath(__file__)) 10 sys.path.append(os.path.dirname(this_dir))
|
| intercept-cc | 8 import os.path 9 this_dir = os.path.dirname(os.path.realpath(__file__)) 10 sys.path.append(os.path.dirname(this_dir))
|
| scan-build | 9 import os.path 10 this_dir = os.path.dirname(os.path.realpath(__file__)) 11 sys.path.append(os.path.dirname(this_dir))
|