Searched refs:path (Results 251 - 275 of 4335) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/CPANInternal-140/Net-Daemon-0.48/
H A DMakefile.PL29 my ($self, $path) = @_;
30 ($path =~ /\~$/) ? undef : $path;
/macosx-10.9.5/CPANInternal-140/URI/URI/
H A Dnews.pm21 my $old = $self->path;
29 my $path = $group;
31 $path .= "/$from";
32 $path .= "-$to" if defined $to;
34 $self->path($path);
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A Dsafefile.c48 safefile(path, secret)
49 const char *path;
62 if (stat(path, &s) != 0)
69 "%s has invalid owner uid\n", path);
78 "%s is an invalid file type 0x%x\n", path,
87 "%s has weak file permission\n", path);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dmknod.c40 mknod(const char* path, mode_t mode, dev_t dev)
43 return mkfifo(path, mode);
45 return mkdir(path, mode);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/path/
H A Dpathcat.c46 pathcat(char* path, const char* dirs, int sep, const char* a, const char* b) argument
48 return pathcat_20100601(dirs, sep, a, b, path, PATH_MAX);
58 pathcat_20100601(register const char* dirs, int sep, const char* a, register const char* b, char* path, size_t size) argument
63 s = path;
64 e = path + size;
71 if (s != path)
/macosx-10.9.5/lsof-52/lsof/scripts/
H A Dcount_pf.perl10 # Set path to lsof.
44 ## isexec($path) -- is $path executable
46 # $path = absolute or relative path to file to test for executabiity.
48 # simple references are also tested with the path prefixes of the
53 my ($path) = @_;
56 $path =~ s/^\s+|\s+$//g;
57 if ($path eq "") { return(""); }
58 if (($path
[all...]
H A Dwatch_a_file.perl28 # Set path to lsof.
70 ## isexec($path) -- is $path executable
72 # $path = absolute or relative path to file to test for executabiity.
74 # simple references are also tested with the path prefixes of the
79 my ($path) = @_;
82 $path =~ s/^\s+|\s+$//g;
83 if ($path eq "") { return(""); }
84 if (($path
[all...]
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dload_file.c9 /* void load_file(path, action, context)
10 /* const char *path;
18 /* .IP path
53 void load_file(const char *path, LOAD_FILE_FN action, void *context) argument
66 if ((fp = vstream_fopen(path, O_RDONLY, 0)) == 0)
67 msg_fatal("open %s: %m", path);
70 msg_fatal("fstat %s: %m", path);
72 msg_fatal("read %s: %m", path);
77 msg_info("pausing to let %s cool down", path);
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Ddisjointlistbox.rb27 tk_call(@path, 'setlhs', items)
31 tk_call(@path, 'setrhs', items)
36 simplelist(tk_call(@path, 'getlhs'))
39 simplelist(tk_call(@path, 'getrhs'))
43 tk_call(@path, 'insertlhs', items)
47 tk_call(@path, 'insertrhs', items)
H A Dcombobox.rb27 tk_call(@path, 'clear', component)
32 tk_call(@path, 'delete', 'list', first, last)
37 tk_call(@path, 'delete', 'entry', first, last)
42 tk_call(@path, 'get', index)
46 tk_call(@path, 'insert', 'list', idx, *elems)
51 tk_call(@path, 'insert', 'entry', idx, *elems)
81 tk_call(@path, 'getcurselection')
84 tk_call(@path, 'justify', dir)
90 tk_call(@path, 'sort', '-command', proc(&b), *params)
92 tk_call(@path, 'sor
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/tktrans/
H A Dtktrans.rb34 tk_send('tktrans::setwidget', @path, img)
38 tk_send('tktrans::setwidget', @path)
46 tk_send('tktrans::settoplevel', @path, img)
50 tk_send('tktrans::settoplevel', @path)
58 tk_send('tktrans::settoplevel', @path, img)
62 tk_send('tktrans::settoplevel', @path)
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/
H A DtclLoadShl.c35 dlopen(path, mode)
36 const char *path;
41 if (path == (char *) NULL) {
47 length = strlen(path);
48 if ((length > 2) && !(strcmp(path+length-3,".sl"))) {
52 return (void *) shl_load(path, flags, 0L);
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/compat/
H A DtclLoadShl.c32 VOID *dlopen(path, mode)
33 CONST char *path;
42 if (path == (char *) NULL) {
48 length = strlen(path);
49 if ((length > 2) && !(strcmp(path+length-3,".sl"))) {
53 return (VOID *) shl_load(path, flags, 0L);
/macosx-10.9.5/xnu-2422.115.4/libsyscall/wrappers/unix03/
H A Dchmod.c32 extern int __chmod(const char *path, mode_t mode);
41 chmod(const char *path, mode_t mode) argument
43 int res = __chmod(path, mode);
48 res = __chmod(path, mode ^ S_ISGID);
53 res = __chmod(path, mode ^ S_ISUID);
58 res = __chmod(path, mode ^ (S_ISUID | S_ISGID));
/macosx-10.9.5/CommonCrypto-60049/test/test/
H A Dtestenv.c47 rmdir_recursive(const char *path) argument
50 if (strlen(path) + 10 > sizeof(command_buf) || strchr(path, '\''))
52 fprintf(stderr, "# rmdir_recursive: invalid path: %s", path);
56 sprintf(command_buf, "rm -rf '%s'", path);
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dftok.c36 ftok(path, id)
37 const char *path;
42 if (stat(path, &st) < 0)
H A Dutime.c41 utime(path, times)
42 const char *path;
54 return (utimes(path, tvp));
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/tsiggss/
H A Dauthsock.pl26 my $path;
31 GetOptions("path=s" => \$path,
36 if (!defined($path)) {
37 print("Usage: authsock.pl --path=<sockpath> --type=type --pidfile=pidfile\n");
41 unlink($path);
42 my $server = IO::Socket::UNIX->new(Local => $path, Type => SOCK_STREAM, Listen => 8) or
43 die "unable to create socket $path";
44 chmod 0777, $path;
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c++/detail/
H A Dfs.cpp69 static bool safe_access(const impl::path&, int, int);
80 safe_access(const impl::path& p, int mode, int experr)
109 // The "path" class.
112 impl::path::path(const std::string& s) function in class:impl::path
119 impl::path::path(const path& p) function in class:impl::path
126 impl::path::path(cons function in class:impl::path
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-basic/
H A Dmain.c30 static void trySO(const char* path) argument
32 void* handle = dlopen(path, RTLD_LAZY);
34 FAIL("dlopen(\"%s\") failed with: %s", path, dlerror());
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-in-initializer/
H A Dmain.c30 static void trySO(const char* path) argument
32 void* handle = dlopen(path, RTLD_LAZY);
34 FAIL("dlopen(\"%s\") failed with: %s", path, dlerror());
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-init-dlopen/
H A Dmain.c30 static void trySO(const char* path) argument
32 void* handle = dlopen(path, RTLD_LAZY);
34 FAIL("dlopen(\"%s\") failed with: %s", path, dlerror());
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-init-dlopen-up/
H A Dmain.c30 static void trySO(const char* path) argument
32 void* handle = dlopen(path, RTLD_LAZY);
34 FAIL("dlopen(\"%s\") failed with: %s", path, dlerror());
/macosx-10.9.5/ksh-20/ksh/src/lib/libdll/
H A Ddllfind.c33 * if path!=0 then library path up to size chars copied to path with trailing 0
38 dllfind(const char* lib, const char* ver, int flags, char* path, size_t size) argument
43 if ((id = error_info.id) && (dll = dllplug(id, lib, ver, flags, path, size)))
45 return dllplug(NiL, lib, ver, flags, path, size);
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dmail_conf.c116 char *path; local
127 path = concatenate(DEF_CONFIG_DIR, "/", "main.cf", (char *) 0);
128 if ((fp = vstream_fopen(path, O_RDONLY, 0)) == 0)
129 msg_fatal("open file %s: %m", path);
142 msg_fatal("read file %s: %m", path);
148 VAR_CONFIG_DIRS, config_dir, path);
150 myfree(path);
166 char *path; local
189 path = concatenate(var_config_dir, "/", "main.cf", (char *) 0);
190 if (dict_load_file_xt(CONFIG_DICT, path)
[all...]

Completed in 153 milliseconds

<<11121314151617181920>>