Searched refs:path (Results 126 - 150 of 4335) sorted by relevance

1234567891011>>

/macosx-10.9.5/patch_cmds-17/patch/
H A Dmkpath.c40 * path - path
43 mkpath(char *path) argument
49 slash = path;
58 if (stat(path, &sb)) {
59 if (errno != ENOENT || (mkdir(path, 0777) &&
61 warn("%s", path);
65 warnx("%s: %s", path, strerror(ENOTDIR));
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/gke/
H A Dgkhandmake5 # gkhandmake path type source outputfile
32 path=os.path.abspath(sys.argv[1]) variable
41 if os.path.exists(outputfile):
48 sigpath = "/tmp/%s.dsig" % os.path.basename(path.strip('/'))
59 path
69 path
84 # under the given path
91 auth[path]
93 path=path, variable
100 path=path, variable
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/os2/
H A Ddir_make_recurse.c25 static const char *path_canonicalize(const char *path, apr_pool_t *pool) argument
29 apr_size_t len = strlen(path);
32 while ((len > 0) && IS_SEP(path[len - 1])) {
37 return apr_pstrndup(pool, path, len);
40 return path;
47 static char *path_remove_last_component(const char *path, apr_pool_t *pool) argument
49 const char *newpath = path_canonicalize(path, pool);
53 if (IS_SEP(path[i])) {
58 return apr_pstrndup(pool, path, (i < 0) ? 0 : i);
63 apr_status_t apr_dir_make_recursive(const char *path, apr_fileperms_ argument
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/os2/
H A Ddir_make_recurse.c25 static const char *path_canonicalize(const char *path, apr_pool_t *pool) argument
29 apr_size_t len = strlen(path);
32 while ((len > 0) && IS_SEP(path[len - 1])) {
37 return apr_pstrndup(pool, path, len);
40 return path;
47 static char *path_remove_last_component(const char *path, apr_pool_t *pool) argument
49 const char *newpath = path_canonicalize(path, pool);
53 if (IS_SEP(path[i])) {
58 return apr_pstrndup(pool, path, (i < 0) ? 0 : i);
63 apr_status_t apr_dir_make_recursive(const char *path, apr_fileperms_ argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dtitleframe.tcl51 proc TitleFrame::create { path args } {
52 Widget::init TitleFrame $path $args
56 set frame [eval [list ttk::frame $path] [Widget::subcget $path :cmd] \
59 set padtop [eval [list ttk::frame $path.p] [Widget::subcget $path :cmd] \
61 set border [eval [list ttk::frame $path.b] [Widget::subcget $path .b]]
62 set label [eval [list ttk::label $path.l] [Widget::subcget $path
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/os/
H A Dos_unlink.c20 __os_unlink(env, path, overwrite_test)
22 const char *path;
32 __db_msg(env, "fileops: unlink %s", path);
36 (void)__db_file_multi_write(env, path);
41 ret = DB_GLOBAL(j_unlink)(path);
43 RETRY_CHK((unlink(CHAR_STAR_CAST path)), ret);
51 RETRY_CHK((shm_unlink(path)), ret);
73 __db_syserr(env, ret, "unlink: %s", path);
/macosx-10.9.5/bootp-268.1/bootplib/
H A Dioregpath.h30 myIORegistryEntryCopyValue(const char * path);
33 myIORegistryEntryCopyProperty(const char * path, CFStringRef prop);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dresolvepath.c44 resolvepath(const char* file, char* path, size_t size) argument
62 s = path;
63 else if (!getcwd(path, size - n))
67 s = path + strlen(path);
70 strlcpy(s, file, size - (s - path));
71 return (s = pathcanon(path, size, PATH_PHYSICAL|PATH_DOTDOT|PATH_EXISTS)) ? (s - path) : -1;
/macosx-10.9.5/man-16/man/src/
H A Dpaths.h.in3 * Define the absolute path to the configuration file and programs used.
12 char *path; /* path plus command options - never NULL */
35 { "COMPRESS_EXT", "@compress_ext@" }, /* not a path, just a string variable */
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Lib/objc/
H A D_gnustep.py12 def pathForFramework(path):
13 return ensure_unicode(path)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Lib/objc/
H A D_gnustep.py12 def pathForFramework(path):
13 return ensure_unicode(path)
/macosx-10.9.5/ruby-104/ruby/ext/-test-/path_to_class/
H A Dpath_to_class.c4 path_to_class(VALUE klass, VALUE path) argument
6 return rb_path_to_class(path);
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dbitmap.rb18 @path = tk_call_without_enc('Bitmap::get', name)
19 Tk_IMGTBL[@path] = self
/macosx-10.9.5/ruby-104/ruby/lib/net/http/
H A Dproxy_delta.rb12 def edit_path(path)
13 use_ssl? ? path : "http://#{addr_port()}#{path}"
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/examples/
H A Ddomtext.tcl62 proc ::domtext { path args } { return [eval domtext::create $path $args] }
115 # path widget path
119 # Widget created, returns path
121 proc domtext::create {path args} {
122 upvar #0 [namespace current]::$path data
125 eval frame $path $maps(:text) -bd 0 -relief flat -takefocus 0 \
128 Widget::initFromODB domtext $path $maps(Text)
131 bindtags $path [lis
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/os_brew/
H A Dos_unlink.c18 __os_unlink(env, path, overwrite_test)
20 const char *path;
32 if (IFILEMGR_Remove(ifmp, path) == EFAILED)
33 FILE_MANAGER_ERR(env, ifmp, path, "IFILEMGR_Remove", ret);
/macosx-10.9.5/BerkeleyDB-21/db/os_vxworks/
H A Dos_vx_rpath.c17 * Return the last path separator in the path or NULL if none found.
20 __db_rpath(path)
21 const char *path;
40 if ((dummy = iosDevFind((char *)path, &ptail)) == NULL)
41 s = path;
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dchown.c39 chown(const char *path, uid_t owner, gid_t group) argument
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/ABPresence/
H A Drb_main.rb8 path = OSX::NSBundle.mainBundle.resourcePath.fileSystemRepresentation
9 rbfiles = Dir.entries(path).select {|x| /\.rb\z/ =~ x}
11 rbfiles.each do |path|
12 require( File.basename(path) )
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CGPDFViewer/
H A Drb_main.rb5 path = OSX::NSBundle.mainBundle.resourcePath.fileSystemRepresentation
6 rbfiles = Dir.entries(path).select {|x| /\.rb\z/ =~ x}
8 rbfiles.each do |path|
9 require( File.basename(path) )
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CIBevelSample/
H A Drb_main.rb8 path = OSX::NSBundle.mainBundle.resourcePath.fileSystemRepresentation
9 rbfiles = Dir.entries(path).select {|x| /\.rb\z/ =~ x}
11 rbfiles.each do |path|
12 require( File.basename(path) )
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CIExposureSample/
H A Drb_main.rb7 path = OSX::NSBundle.mainBundle.resourcePath.fileSystemRepresentation
8 rbfiles = Dir.entries(path).select {|x| /\.rb\z/ =~ x}
10 rbfiles.each do |path|
11 require( File.basename(path) )
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CIMicroPaint/
H A Drb_main.rb8 path = OSX::NSBundle.mainBundle.resourcePath.fileSystemRepresentation
9 rbfiles = Dir.entries(path).select {|x| /\.rb\z/ =~ x}
11 rbfiles.each do |path|
12 require( File.basename(path) )
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CITransitionSelectorSample/
H A Drb_main.rb7 path = OSX::NSBundle.mainBundle.resourcePath.fileSystemRepresentation
8 rbfiles = Dir.entries(path).select {|x| /\.rb\z/ =~ x}
10 rbfiles.each do |path|
11 require( File.basename(path) )
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CocoaGL/
H A Drb_main.rb7 path = OSX::NSBundle.mainBundle.resourcePath.fileSystemRepresentation
8 rbfiles = Dir.entries(path).select {|x| /\.rb\z/ =~ x}
10 rbfiles.each do |path|
11 require( File.basename(path) )

Completed in 292 milliseconds

1234567891011>>