Searched refs:path (Results 176 - 200 of 2346) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/tcp_wrappers/
H A Dinetcf.c39 static void inet_chk(char *protocol, char *path, char *arg0, char *arg1);
40 static char *base_name(char *path);
66 char *path; local
116 path = user;
117 } else { /* path */
118 if ((path = strtok((char *) 0, whitespace)) == 0)
121 if (path[0] == '?') /* IRIX optional service */
122 path++;
123 if (STR_EQ(path, "internal"))
125 if (path[strsp
[all...]
/freebsd-11-stable/contrib/subversion/
H A Dwin-tests.py55 print("Usage: python win-tests.py [option] [test-path]")
74 print(" default is '-d,-r,<test-path-root>'")
125 sys.path.insert(0, os.path.join('build', 'generator'))
126 sys.path.insert(1, 'build')
130 version_header = os.path.join('subversion', 'include', 'svn_version.h')
221 abs_httpd_dir = os.path.abspath(val)
296 abs_srcdir = os.path.abspath("")
297 abs_objdir = os.path.join(abs_srcdir, objdir)
302 abs_builddir = os.path
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_fopen.c43 static const char *path = "fopen"; variable
61 fd = open(path, O_RDWR | O_CREAT, 0600);
70 ATF_REQUIRE(unlink(path) == 0);
75 (void)unlink(path);
88 fd = open(path, O_RDONLY | O_CREAT, 0600);
105 (void)unlink(path);
110 (void)unlink(path);
129 fd = open(path, O_RDWR | O_CREAT, 0600);
140 ATF_REQUIRE(unlink(path) == 0);
145 (void)unlink(path);
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_system.c40 static const char *path = "system"; variable
60 fd = open(path, O_RDONLY);
69 ATF_REQUIRE(unlink(path) == 0);
74 (void)unlink(path);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dfopen_unlocked.c39 @deftypefn Extension {FILE *} fopen_unlocked (const char *@var{path}, const char * @var{mode})
57 @deftypefn Extension {FILE *} freopen_unlocked (const char * @var{path}, const char * @var{mode}, FILE * @var{stream})
105 fopen_unlocked (const char *path, const char *mode) argument
107 FILE *const fp = fopen (path, mode);
121 freopen_unlocked (const char *path, const char *mode, FILE *stream) argument
123 FILE *const fp = freopen (path, mode, stream);
/freebsd-11-stable/lib/libc/posix1e/
H A Dmac_get.c53 mac_get_file(const char *path, struct mac *label) argument
56 return (__mac_get_file(path, label));
60 mac_get_link(const char *path, struct mac *label) argument
63 return (__mac_get_link(path, label));
/freebsd-11-stable/crypto/openssl/crypto/x509/
H A Dx509_d2.c86 const char *path)
97 if (path != NULL) {
101 if (X509_LOOKUP_add_dir(lookup, path, X509_FILETYPE_PEM) != 1)
104 if ((path == NULL) && (file == NULL))
85 X509_STORE_load_locations(X509_STORE *ctx, const char *file, const char *path) argument
/freebsd-11-stable/stand/libsa/zfs/
H A Ddevicename_stubs.c35 zfs_parsedev(struct zfs_devdesc *dev, const char *devspec, const char **path) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Ddag_cache.h39 const char *path);
61 /* The caller wants a NULL path object instead of an error if the
62 path cannot be found. */
67 /* A linked list representing the path from a node up to a root
74 /* A node along the path. This could be the final node, one of its
75 parents, or the root. Every parent path ends with an element for
90 path which should be implicitly copied; otherwise, this is NULL. */
96 Set *DAG_PATH_P to a path from the node up to ROOT. The resulting
109 but if the final path component doesn't exist, simply return a path
[all...]
/freebsd-11-stable/crypto/openssl/crypto/rand/
H A Drand_egd.c66 * RAND_query_egd_bytes(path, buf, bytes)
68 * at path and will write them to buf (if supplied) or will directly feed
82 * RAND_egd_bytes(path, bytes) will query "bytes" bytes and have them
93 * RAND_egd(path) will query 255 bytes and use the bytes retreived to seed
99 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) argument
104 int RAND_egd(const char *path) argument
109 int RAND_egd_bytes(const char *path, int bytes) argument
128 char sun_path[108]; /* path name (gag) */
138 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) argument
149 if (strlen(path) >
274 RAND_egd_bytes(const char *path, int bytes) argument
287 RAND_egd(const char *path) argument
[all...]
/freebsd-11-stable/contrib/netbsd-tests/fs/umapfs/
H A Dt_basic.c32 xtouch(const char *path) argument
36 fd = rump_sys_open(path, O_CREAT | O_RDWR, 0777);
38 atf_tc_fail_errno("create %s", path);
43 xchown(const char *path, uid_t uid, gid_t gid) argument
46 if (rump_sys_chown(path, uid, gid) == -1)
47 atf_tc_fail_errno("chown %s failed", path);
51 testuidgid(const char *path, uid_t uid, gid_t gid) argument
55 if (rump_sys_stat(path, &sb) == -1)
56 atf_tc_fail_errno("stat %s", path);
60 path, ui
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_unlink.c43 static char path[] = "unlink"; variable
59 fd = open(path, O_RDWR | O_CREAT, 0666);
63 ATF_REQUIRE(unlink(path) == 0);
66 ATF_REQUIRE_ERRNO(ENOENT, open(path, O_RDONLY) == -1);
72 (void)unlink(path);
103 (void)unlink(path);
115 ATF_REQUIRE(mkfifo(path, 0666) == 0);
116 ATF_REQUIRE(unlink(path) == 0);
119 ATF_REQUIRE_ERRNO(ENOENT, open(path, O_RDONLY) == -1);
124 (void)unlink(path);
[all...]
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dtest_helpers.c44 build_check_c_o(const char *path) argument
58 RE(atf_check_build_c_o(path, "test.o", optargs, &success));
68 atf_fs_path_t path; local
70 RE(atf_fs_path_init_fmt(&path, "%s/%s",
72 const bool result = build_check_c_o(atf_fs_path_cstring(&path));
73 atf_fs_path_fini(&path);
97 atf_fs_path_t *path)
99 RE(atf_fs_path_init_fmt(path, "%s/%sprocess_helpers",
96 get_process_helpers_path(const atf_tc_t *tc, const bool is_detail, atf_fs_path_t *path) argument
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dtst.InvalidModule1.d.ksh42 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidModule2.d.ksh42 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidModule3.d.ksh42 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidModule4.d.ksh42 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidProvider1.d.ksh42 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidProvider2.d.ksh42 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidProvider3.d.ksh42 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidProvider4.d.ksh42 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidTraceModule1.d.ksh41 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidTraceModule2.d.ksh41 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidTraceModule3.d.ksh41 echo expected one argument: '<'dtrace-path'>'
H A Dtst.InvalidTraceModule4.d.ksh41 echo expected one argument: '<'dtrace-path'>'

Completed in 138 milliseconds

1234567891011>>