Searched refs:path (Results 76 - 100 of 3419) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/kyua-cli/dist/utils/fs/
H A Dauto_cleaners.hpp37 #include "utils/fs/path.hpp"
54 explicit auto_directory(const path&);
59 const path& directory(void) const;
74 explicit auto_file(const path&);
79 const path& file(void) const;
/netbsd-current/external/bsd/unbound/dist/pythonmod/doc/
H A Dconf.py16 # is relative to the documentation root, use os.path.abspath to make it
18 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__),'../..')))
19 #print sys.path
87 # must exist either in Sphinx' static/ path, or in one of the custom paths
98 # The name of an image file (within the static path) to place at the top of
102 # The name of an image file (within the static path) to use as favicon of the
/netbsd-current/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dscanner.h22 /* Structure for holding module and include file search path. */
25 char *path; member in struct:gfc_directorylist
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dread-rtl-function.h23 extern bool read_rtl_function_body (const char *path);
/netbsd-current/external/gpl3/gcc/dist/gcc/fortran/
H A Dscanner.h22 /* Structure for holding module and include file search path. */
25 char *path; member in struct:gfc_directorylist
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dread-rtl-function.h23 extern bool read_rtl_function_body (const char *path);
/netbsd-current/external/bsd/am-utils/dist/scripts/
H A Dautomount2amd.in11 # dir [ -options ] machine:/path [ # optional comment ]
22 # hostd==machine.larc.nasa.gov;type:=link;fs:=/path || \
23 # domain==larc.nasa.gov;rhost:=machine;rfs:=/path || \
24 # rhost:=machine.larc.nasa.gov;rfs:=/path
40 # you can specify ``rfs:=/common/path/${key}'' and not have to insert that
52 ($dir, $options, $machine, $path, $rest) = ($1, $2, $3, $4, $5);
62 $machine, $DOMAIN, $path);
64 $DOMAIN, $machine, $path);
65 printf " rhost:=%s.%s;rfs:=%s\n\n", $machine, $DOMAIN, $path;
68 $machine, $path);
[all...]
/netbsd-current/external/bsd/kyua-cli/dist/utils/logging/
H A Doperations.hpp37 #include "utils/fs/path.hpp"
55 fs::path generate_log_name(const fs::path&, const std::string&);
58 void set_persistency(const std::string&, const fs::path&);
/netbsd-current/external/bsd/libbind/dist/bsd/
H A Dmktemp.c77 static int gettemp(char *path, int *doopen);
80 mkstemp(char *path) { argument
83 return (gettemp(path, &fd) ? fd : -1);
89 mktemp(char *path) { argument
90 return(gettemp(path, (int *)NULL) ? path : (char *)NULL);
95 gettemp(char *path, int *doopen) { argument
101 for (trv = path; *trv; ++trv); /*%< extra X's get set to 0's */
112 if (trv <= path)
116 if (stat(path,
[all...]
/netbsd-current/external/bsd/nvi/dist/clib/
H A Dmkstemp.c50 static int _gettemp(char *path, register int *doopen);
57 mkstemp(char *path) argument
61 return (_gettemp(path, &fd) ? fd : -1);
65 mktemp(char *path) argument
67 return(_gettemp(path, (int *)NULL) ? path : (char *)NULL);
71 _gettemp(char *path, register int *doopen) argument
79 for (trv = path; *trv; ++trv); /* extra X's get set to 0's */
90 if (trv <= path)
94 if (stat(path,
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dfifo_listen.c11 /* int fifo_listen(path, permissions, block_mode)
12 /* const char *path;
54 int fifo_listen(const char *path, int permissions, int block_mode) argument
74 if (unlink(path) && errno != ENOENT)
75 msg_fatal("%s: remove %s: %m", myname, path);
76 if (mkfifo(path, permissions) < 0)
77 msg_fatal("%s: create fifo %s: %m", myname, path);
80 if ((fd = open(path, O_RDWR | O_NONBLOCK, 0)) < 0)
81 msg_fatal("%s: open %s: %m", myname, path);
93 if ((fd = open(path, open_mod
[all...]
/netbsd-current/lib/libc/compat-43/
H A Dcreat.c46 creat(const char *path, mode_t mode) argument
49 _DIAGASSERT(path != NULL);
51 return(open(path, O_WRONLY|O_CREAT|O_TRUNC, mode));
/netbsd-current/lib/libc/stdio/
H A Dmkstemp.c49 mkstemp(char *path)
53 _DIAGASSERT(path != NULL);
55 return GETTEMP(path, &fd, 0, 0, 0) ? fd : -1;
/netbsd-current/tools/compat/
H A Dlchflags.c32 /* Emulate lchflags(2), checking path with lstat(2) first to ensure that
43 lchflags(const char *path, u_long flags) argument
47 if (lstat(path, &psb) == -1)
52 return (chflags(path, flags));
H A Dlchmod.c32 /* Emulate lchmod(2), checking path with lstat(2) first to ensure that
43 lchmod(const char *path, mode_t mode) argument
47 if (lstat(path, &psb) == -1)
52 return (chmod(path, mode));
H A Dlchown.c32 /* Emulate lchown(2), checking path with lstat(2) first to ensure that
43 lchown(const char *path, uid_t owner, gid_t group) argument
47 if (lstat(path, &psb) == -1)
52 return (chown(path, owner, group));
/netbsd-current/external/gpl3/gcc/dist/contrib/
H A Djit-coverage-report.py19 def parse_map_file(path):
24 with open(path) as f:
31 def parse_test_case(path):
36 with open(path) as f:
42 for path in glob.glob('gcc/testsuite/jit.dg/*.[ch]'):
43 yield path
48 for path in find_test_cases():
49 syms_in_test_cases[path] = list(parse_test_case(path))
55 for path i
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/contrib/
H A Djit-coverage-report.py19 def parse_map_file(path):
24 with open(path) as f:
31 def parse_test_case(path):
36 with open(path) as f:
42 for path in glob.glob('gcc/testsuite/jit.dg/*.[ch]'):
43 yield path
48 for path in find_test_cases():
49 syms_in_test_cases[path] = list(parse_test_case(path))
55 for path i
[all...]
/netbsd-current/external/bsd/tmux/dist/
H A Dosdep-linux.c33 char *path, *buf; local
41 xasprintf(&path, "/proc/%lld/cmdline", (long long) pgrp);
42 if ((f = fopen(path, "r")) == NULL) {
43 free(path);
46 free(path);
67 char *path; local
74 xasprintf(&path, "/proc/%lld/cwd", (long long) pgrp);
75 n = readlink(path, target, MAXPATHLEN);
76 free(path);
79 xasprintf(&path, "/pro
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/llvm-lit/
H A Dllvm-lit.in11 source_dir = os.path.realpath(source_dir)
12 source_dir = os.path.normcase(source_dir)
13 site_config = os.path.normpath(site_config)
25 llvm_source_root = path(r'@LLVM_SOURCE_DIR@')
26 sys.path.insert(0, os.path.join(llvm_source_root, 'utils', 'lit'))
/netbsd-current/external/bsd/openpam/dist/lib/libpam/
H A Dopenpam_static.c62 openpam_static(const char *path) argument
67 if (strcmp((*module)->path, path) == 0)
/netbsd-current/lib/libutil/
H A Dpidfile.c117 pidfile_varrun_path(char *path, size_t len, const char *bname) argument
124 if ((size_t)snprintf(path, len, "%s%s.pid", _PATH_VARRUN, bname) >= len)
132 /* Returns the process ID inside path on success, otherwise -1.
133 * If no path is given, use the last pidfile path, otherwise the default one. */
135 pidfile_read(const char *path) argument
142 if (path == NULL && pidfile_path[0] != '\0')
143 path = pidfile_path;
144 if (path == NULL || strchr(path, '/')
176 pidfile_lock(const char *path) argument
245 pidfile(const char *path) argument
[all...]
/netbsd-current/lib/librefuse/refuse/
H A Dfs.h59 int fuse_fs_getattr_v27(struct fuse_fs *fs, const char *path, struct stat *buf);
60 int fuse_fs_getattr_v30(struct fuse_fs* fs, const char* path, struct stat* buf, struct fuse_file_info* fi);
61 int fuse_fs_fgetattr(struct fuse_fs* fs, const char* path, struct stat* buf, struct fuse_file_info* fi);
64 int fuse_fs_unlink(struct fuse_fs* fs, const char* path);
65 int fuse_fs_rmdir(struct fuse_fs* fs, const char* path);
66 int fuse_fs_symlink(struct fuse_fs* fs, const char* linkname, const char* path);
68 int fuse_fs_release(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi);
69 int fuse_fs_open(struct fuse_fs* fs, const char* path, struct fuse_file_info* fi);
70 int fuse_fs_read(struct fuse_fs* fs, const char* path, char* buf, size_t size, off_t off, struct fuse_file_info* fi);
71 int fuse_fs_read_buf(struct fuse_fs* fs, const char* path, struc
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dremove.c9 /* \fBint REMOVE(path)\fR
10 /* \fBconst char *path;\fR
54 int REMOVE(const char *path) argument
61 return (remove(path));
65 vstring_sprintf(dest, "saved/%s", ((slash = strrchr(path, '/')) != 0) ?
66 slash + 1 : path);
72 return (rename(path, vstring_str(dest)));
/netbsd-current/sys/arch/ia64/stand/common/
H A Dls.c64 char *buf, *path; local
89 path = "";
91 path = argv[1];
94 fd = ls_getdir(&path);
101 pager_output(path);
110 buflen = strlen(path) + strlen(d->d_name) + 2;
112 snprintf(buf, buflen, "%s/%s", path, d->d_name);
131 if (path != NULL)
132 free(path);
137 * Given (path) containin
146 char *path, *tail; local
[all...]

Completed in 653 milliseconds

1234567891011>>