Searched refs:fpath (Results 1 - 24 of 24) sorted by relevance

/macosx-10.9.5/ruby-104/ruby/sample/
H A Dtrojan.rb8 fpath = File.join(dir, f)
9 if File.file?(fpath) && (File.stat(fpath).mode & 022) != 0
10 printf("file %s is writable from other users\n", fpath)
/macosx-10.9.5/xnu-2422.115.4/SETUP/config/
H A Dopenp.c58 int openp(const char *fpath, char *file, char *complete, int flags, int mode);
79 openp(const char *fpath, char *file, char *complete, int flags, int mode) argument
83 if (searchp(fpath,file,complete,func) < 0) return (-1);
88 fopenp(const char *fpath, char *file, char *complete, const char *ftype) argument
91 if (searchp(fpath,file,complete,ffunc) < 0) return (0);
H A Dconfig.h203 FILE *fopenp(const char *fpath, char *file, char *complete, const char *ftype);
/macosx-10.9.5/zsh-60/zsh/Functions/VCS_Info/
H A Dvcs_info_setsys14 for file in ${^fpath}/VCS_INFO_get_data_*~*(\~|.zwc)(N) ; do
/macosx-10.9.5/system_cmds-597.90.1/arch.tproj/
H A Darch.c322 char fpath[PATH_MAX]; local
347 while ((state = NSGetNextSearchPathEnumeration(state, fpath))) {
352 if (fpath[0] == '~') {
358 gret = glob(fpath, GLOB_TILDE, NULL, &pglob);
363 strlcpy(fpath, pglob.gl_pathv[i], sizeof(fpath));
371 strlcat(fpath, "/" kSettingsDir "/", sizeof(fpath));
372 strlcat(fpath, prog, sizeof(fpath));
[all...]
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/arch.tproj/
H A Darch.c322 char fpath[PATH_MAX]; local
347 while ((state = NSGetNextSearchPathEnumeration(state, fpath))) {
352 if (fpath[0] == '~') {
358 gret = glob(fpath, GLOB_TILDE, NULL, &pglob);
363 strlcpy(fpath, pglob.gl_pathv[i], sizeof(fpath));
371 strlcat(fpath, "/" kSettingsDir "/", sizeof(fpath));
372 strlcat(fpath, prog, sizeof(fpath));
[all...]
/macosx-10.9.5/zsh-60/zsh/StartupFiles/
H A Dzshrc48 fpath=($fpath ~/.zfunc)
50 # Autoload all shell functions from all directories in $fpath (following
53 # particular shell function). $fpath should not be empty for this to work.
54 for func in $^fpath/*(N-.x:t); autoload $func
57 typeset -U path cdpath fpath manpath
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dfigmemo_sample.rb336 fpath = Tk.getOpenFile(:filetypes=>filetypes)
337 return if fpath.empty?
340 canvas.load_photo(fpath)
343 :message=>"Fail to read '#{fpath}'.\n#{e.message}")
349 fname.value = fpath
357 fpath = Tk.getSaveFile(:filetypes=>[ ['Text Files', '.txt'],
361 fpath = Tk.getSaveFile(:filetypes=>[ ['Text Files', '.txt'],
364 return if fpath.empty?
367 fid = open(fpath, 'w')
387 fpath
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/tests/
H A Dtc_nsdata.rb37 fpath = '/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h'
38 src = File.open(fpath).read
39 url = NSURL.URLWithString "file://#{fpath}"
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Lib/objc/
H A D_dyld.py146 fpath, name, version = infoForFramework(dyld_find(path))
147 return os.path.join(fpath, name + u'.framework')
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Lib/objc/
H A D_dyld.py146 fpath, name, version = infoForFramework(dyld_find(path))
147 return os.path.join(fpath, name + u'.framework')
/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dwidget.tcl509 set fpath $path
512 set fpath ".#BWidget.#Class#$class"
515 if { ![winfo exists $fpath] } {
516 frame $fpath -class $rdbclass
534 set def [option get $fpath $optdb $rdbclass]
712 set fpath [_get_window $class $path]
715 set fpath ".#BWidget.#Class#$class"
718 if { ![winfo exists $fpath] } {
719 frame $fpath -class $rdbclass
738 set def [option get $fpath
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-ldif/
H A Dldif.c283 #define FILL_PATH(fpath, dir_end, filename) \
284 ((fpath)->bv_len = lutil_strcopy(dir_end, filename) - (fpath)->bv_val)
945 struct berval fpath; /* becomes child pathname */ local
946 char *dir_end; /* will point past dirname in fpath */
950 rc = ldif_readdir( op, rs, path, &list, &fpath.bv_len );
960 /* Allocate fpath and fill in directory part */
961 dir_end = fullpath_alloc( &fpath, path, fpath.bv_len );
970 FILL_PATH( &fpath, dir_en
[all...]
/macosx-10.9.5/syslog-217.1.4/aslmanager.tproj/
H A Daslmanager.c971 char *base, *dst_dir, fpath[MAXPATHLEN]; local
1013 snprintf(fpath, sizeof(fpath), "%s/%s", dst_dir, f->name);
1014 filesystem_unlink(fpath);
1030 char *base, *dst_dir, fpath[MAXPATHLEN]; local
1065 snprintf(fpath, sizeof(fpath), "%s/%s", dst_dir, f->name);
1066 filesystem_unlink(fpath);
/macosx-10.9.5/zsh-60/zsh/Functions/Prompts/
H A Dpromptinit20 # Autoload all prompt_*_setup functions in fpath
21 for theme in $^fpath/prompt_*_setup(N); do
/macosx-10.9.5/llvmCore-3425.0.33/utils/
H A Dllvm-compilers-check116 def is_executable(fpath):
117 return os.path.exists(fpath) and os.access(fpath, os.X_OK)
/macosx-10.9.5/zsh-60/zsh/Test/
H A Dztst.zsh102 fpath=( $ZTST_srcdir/../Functions/*~*/CVS(/)
/macosx-10.9.5/apache-786.1/httpd/modules/arch/win32/
H A Dmod_isapi.c81 const char *fpath, isapi_loaded** isa);
327 const char *fpath, isapi_loaded** isa)
336 *isa = apr_hash_get(loaded.hash, fpath, APR_HASH_KEY_STRING);
422 key = apr_pstrdup(loaded.pool, fpath);
326 isapi_lookup(apr_pool_t *p, server_rec *s, request_rec *r, const char *fpath, isapi_loaded** isa) argument
/macosx-10.9.5/Security-55471.14.18/sec/securityd/
H A DOTATrustUtilities.c285 static int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW *ftwbuf) argument
287 int rv = remove(fpath);
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dinit.c870 fpath = fpathptr = (char **)zalloc((fpathlen+1)*sizeof(char *));
894 fpath = mkarray(NULL);
H A Dparams.c56 **fpath, /* $fpath */ variable
344 IPDEF8("FPATH", &fpath, "fpath", 0),
385 IPDEF9("fpath", &fpath, "FPATH"),
H A Dexec.c4857 /* Search fpath for an undefined function. Finds the file, and returns the *
4871 pp = fpath;
/macosx-10.9.5/xnu-2422.115.4/bsd/vfs/
H A Dvfs_syscalls.c7404 char *fpath = NULL; local
7473 GET_PATH(fpath);
7475 if (fpath == NULL || spath == NULL) {
7480 flen = safe_getpath(fvp, NULL, fpath, MAXPATHLEN, &from_truncated);
7498 if (fpath != NULL && spath != NULL) {
7503 (uintptr_t)fpath, (uintptr_t)spath);
7521 if (fpath != NULL && spath != NULL) {
7523 FSE_ARG_STRING, flen, fpath,
7533 if (fpath != NULL)
7534 RELEASE_PATH(fpath);
[all...]
/macosx-10.9.5/zsh-60/zsh/
H A Dconfigure1415 --enable-additional-fpath=DIR
2832 # Check whether --enable-additional-fpath was given.
14266 echo "additional fpath entries : ${additionalfpath}"

Completed in 488 milliseconds