Searched refs:path (Results 526 - 550 of 4145) sorted by relevance

<<21222324252627282930>>

/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/
H A Ddlfcn.h43 void *dlopen (const char *path, int mode);
/macosx-10.10/tcsh-65/tcsh/cygwin/
H A Dcsh.login7 set path=( /usr/local/bin /usr/bin /bin $path:q )
/macosx-10.10/xnu-2782.1.97/iokit/bsddev/
H A DDINetBootHook.h67 Parameters: path -> path/url to disk image
72 int di_root_image(const char *path, char devname[], dev_t *dev_p);
/macosx-10.10/xnu-2782.1.97/tools/tests/perf_index/
H A Dtest_file_helper.c21 int cleanup_tempdir(char* path) { argument
22 return rmdir(path);
25 int test_file_create(char* path, int thread_id, int num_threads, long long length) { argument
32 snprintf(filepath, MAXPATHLEN, "%s/file_create-%d-%lld", path, thread_id, i);
40 snprintf(filepath, MAXPATHLEN, "%s/file_create-%d-%lld", path, thread_id, i);
48 int test_file_read_setup(char* path, int num_threads, long long length, long long max_file_size) { argument
60 snprintf(filepath, sizeof(filepath), "%s/file_read", path);
77 int test_file_read(char* path, int thread_id, int num_threads, long long length, long long max_file_size) { argument
91 snprintf(filepath, sizeof(filepath), "%s/file_read", path);
114 int test_file_read_cleanup(char* path, in argument
125 test_file_write_setup(char* path, int num_threads, long long length) argument
149 test_file_write(char* path, int thread_id, int num_threads, long long length, long long max_file_size) argument
177 test_file_write_cleanup(char* path, int num_threads, long long length) argument
[all...]
/macosx-10.10/zlib-55/zlib/examples/
H A Dgzlog.h27 Interface changed slightly in that now path is a prefix
56 when locking the resource. path is the prefix of the file names created by
57 this object. If path is "foo", then the log file will be "foo.gz", and
64 gzlog *gzlog_open(char *path);
/macosx-10.10/Libc-1044.1.2/sys/
H A Dopenx_np.c37 _mkfilex_np(int opcode, const char *path, int flags, filesec_t fsec) argument
102 return(__open_extended(path, flags, owner, group, mode, fsacl));
104 return(__mkfifo_extended(path, owner, group, mode, fsacl));
106 return(__mkdir_extended(path, owner, group, mode, fsacl));
114 openx_np(const char *path, int flags, filesec_t fsec) argument
118 return(open(path, flags));
119 return(_mkfilex_np(OPENX, path, flags, fsec));
123 mkfifox_np(const char *path, filesec_t fsec) argument
125 return(_mkfilex_np(MKFIFOX, path, 0, fsec));
129 mkdirx_np(const char *path, filesec_ argument
[all...]
/macosx-10.10/OpenSSL098-52/src/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
103 int RAND_egd(const char *path) argument
108 int RAND_egd_bytes(const char *path,int bytes) argument
126 char sun_path[108]; /* path name (gag) */
136 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) argument
147 if (strlen(path) >
284 RAND_egd_bytes(const char *path, int bytes) argument
297 RAND_egd(const char *path) argument
[all...]
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_addr_map.c9 /* ARGV *mail_addr_map(path, address, propagate)
10 /* MAPS *path;
28 /* .IP path
29 /* Dictionary search path (see maps(3)).
35 /* The path->error value is non-zero when the lookup
77 ARGV *mail_addr_map(MAPS *path, const char *address, int propagate) argument
91 if ((string = mail_addr_find(path, address, &extension)) != 0) {
121 path->title, address, string);
123 path->error = DICT_ERR_RETRY;
133 path
160 MAPS *path; local
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dbuttonbox.rb26 [self.path, 'buttoncget', id]
31 [self.path, 'buttonconfigure', id]
71 tk_call(@path, 'add', tagid(tag), *hash_kv(keys))
76 tk_call(@path, 'default', index(idx))
81 tk_call(@path, 'delete', index(idx))
86 tk_call(@path, 'hide', index(idx))
91 number(tk_call(@path, 'index', tagid(idx)))
104 tk_call(@path, 'insert', index(idx), tagid(tag), *hash_kv(keys))
110 tk_call(@path, 'invoke', index(idx))
112 tk_call(@path, 'invok
[all...]
H A Ddialogshell.rb26 [self.path, 'buttoncget', id]
31 [self.path, 'buttonconfigure', id]
71 tk_call(@path, 'add', tagid(tag), *hash_kv(keys))
76 tk_call(@path, 'default', index(idx))
81 tk_call(@path, 'delete', index(idx))
86 tk_call(@path, 'hide', index(idx))
91 number(tk_call(@path, 'index', tagid(idx)))
104 tk_call(@path, 'insert', index(idx), tagid(tag), *hash_kv(keys))
110 tk_call(@path, 'invoke', index(idx))
112 tk_call(@path, 'invok
[all...]
/macosx-10.10/ruby-106/ruby/lib/
H A Dtmpdir.rb2 # tmpdir - retrieve temporary directory path
18 # Returns the operating system's temporary file path.
61 # it is yielded with the path of the directory.
72 # The path of the directory is returned.
85 path = Tmpname.create(prefix_suffix || "d", *rest) {|n| mkdir(n, 0700)}
88 yield path
90 stat = File.stat(File.dirname(path))
94 FileUtils.remove_entry path
97 path
120 path
[all...]
/macosx-10.10/tcl-105/tcl_ext/bwidget/bwidget/
H A Dprogressdlg.tcl48 proc ProgressDlg::create { path args } {
52 eval [list Dialog::create] $path $maps(:cmd) \
56 Widget::initFromODB ProgressDlg "$path#ProgressDlg" $maps(ProgressDlg)
58 wm protocol $path WM_DELETE_WINDOW {;}
60 set frame [Dialog::getframe $path]
61 bind $frame <Destroy> [list Widget::destroy $path\#ProgressDlg]
72 set stop [Widget::cget "$path#ProgressDlg" -stop]
73 set cmd [Widget::cget "$path#ProgressDlg" -command]
75 Dialog::add $path -text $stop -name $stop -command $cmd
77 Dialog::draw $path
[all...]
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/dlopen-RTLD_FIRST/
H A Dmain.c39 const char* path; member in struct:info
44 static info dlopen_or_fail(const char* path, int options) argument
47 result.path = path;
48 result.handle = dlopen(path, options);
50 FAIL("dlopen-RTLD_FIRST: dlopen(\"%s\") failed: %s", path, dlerror());
53 //fprintf(stderr, "dlopen(%s, 0x%0X) => %p\n", path, options, result.handle);
61 FAIL("dlopen-RTLD_FIRST: dlsym(handle-%s, \"%s\") should have failed", hp.path, symbol);
70 FAIL("dlopen-RTLD_FIRST: dlsym(handle-%s, \"%s\") failed", hp.path, symbol);
/macosx-10.10/BerkeleyDB-21/db/os/
H A Dos_stat.c20 __os_exists(env, path, isdirp)
22 const char *path;
33 __db_msg(env, "fileops: stat %s", path);
36 return (DB_GLOBAL(j_exists)(path, isdirp));
38 RETRY_CHK((stat(CHAR_STAR_CAST path, &sb)), ret);
65 __os_ioinfo(env, path, fhp, mbytesp, bytesp, iosizep)
67 const char *path;
75 return (DB_GLOBAL(j_ioinfo)(path,
H A Dos_tmpdir.c21 * Set the temporary directory path.
78 /* Get the path to the temporary folder. */
88 /* Get the path to the temporary directory. */
91 char *path, *eos; local
94 FROM_TSTRING(env, tpath, path, ret);
98 eos = path + strlen(path) - 1;
101 if (__os_exists(env, path, &isdir) == 0 && isdir) {
103 path, &dbenv->db_tmp_dir);
104 FREE_STRING(env, path);
[all...]
/macosx-10.10/Libc-1044.1.2/emulated/
H A Dlchmod.c33 lchmod(const char *path, mode_t mode) argument
42 return setattrlist(path, &a, &m, sizeof(int), FSOPT_NOFOLLOW);
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dxar++.h46 Xar(const char *path = NULL);
48 void open(const char *path);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dxar++.h46 Xar(const char *path = NULL);
48 void open(const char *path);
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebKitSystemBits.cpp46 WTF::String path(cfstringPath);
48 BOOL result = GetDiskFreeSpaceExW((LPCWSTR)path.charactersWithNullTermination().data(), &freeBytesToCaller, 0, 0);
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Ddnlcsnoop.d58 /* store path */
59 self->path = stringof(args[0]->v_path);
62 this->len = strlen(self->path);
85 self->path, self->join, self->name);
88 self->path = 0;
/macosx-10.10/dtrace-147/DTTk/Kernel/
H A Ddnlcsnoop.d58 /* store path */
59 self->path = stringof(args[0]->v_path);
62 this->len = strlen(self->path);
85 self->path, self->join, self->name);
88 self->path = 0;
/macosx-10.10/mDNSResponder-561.1.1/mDNSWindows/
H A Dloclibrary.h34 int PathForResourceWithPathW ( const wchar_t *path, const wchar_t *name, wchar_t *locFile, int locFileLen);
37 int PathForResourceWithPathA ( const char *path, const char *name, char *locFile, int locFileLen);
/macosx-10.10/postfix-255/postfix/src/util/
H A Dlstat_as.c10 /* int lstat_as(path, st, euid, egid)
11 /* const char *path;
51 int lstat_as(const char *path, struct stat * st, uid_t euid, gid_t egid) argument
65 status = lstat(path, st);
H A Dopen_as.c10 /* int open_as(path, flags, mode, euid, egid)
11 /* const char *path;
48 int open_as(const char *path, int flags, int mode, uid_t euid, gid_t egid) argument
62 fd = open(path, flags, mode);
H A Dstat_as.c10 /* int stat_as(path, st, euid, egid)
11 /* const char *path;
51 int stat_as(const char *path, struct stat * st, uid_t euid, gid_t egid) argument
65 status = stat(path, st);

Completed in 465 milliseconds

<<21222324252627282930>>