Searched refs:path (Results 751 - 775 of 4145) sorted by relevance

<<31323334353637383940>>

/macosx-10.10/nano-12/src/
H A Dbrowser.c47 /* Our main file browser function. path is the tilde-expanded path we
49 char *do_browser(char *path, DIR *dir) argument
82 path = mallocstrassn(path, get_full_path(path));
84 assert(path != NULL && path[strlen(path) - 1] == '/');
87 browser_init(path, di
396 char *path; local
452 browser_init(const char *path, DIR *dir) argument
1071 striponedir(const char *path) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dudata.cpp81 static UDataMemory *udata_findCachedData(const char *path);
210 findBasename(const char *path) { argument
211 const char *basename=uprv_strrchr(path, U_FILE_SEP_CHAR);
213 return path;
221 packageNameFromPath(const char *path) argument
223 if((path == NULL) || (*path == 0)) {
227 path = findBasename(path);
229 if((path
293 udata_findCachedData(const char *path) argument
315 udata_cacheDataItem(const char *path, UDataMemory *item, UErrorCode *pErr) argument
407 const char *path; /* working path (u_icudata_Dir) */ member in class:UDataPathIterator
647 openCommonData(const char *path, int32_t commonDataIndex, UErrorCode *pErrorCode) argument
728 UDataPathIterator iter(u_getDataDirectory(), inBasename, path, ".dat", TRUE, pErrorCode); local
876 udata_setAppData(const char *path, const void *data, UErrorCode *err) argument
946 doLoadFromIndividualFiles(const char *pkgName, const char *dataPath, const char *tocEntryPathSuffix, const char *path, const char *type, const char *name, UDataMemoryIsAcceptable *isAcceptable, void *context, UErrorCode *subErrorCode, UErrorCode *pErrorCode) argument
1004 doLoadFromCommonData(UBool isICUData, const char * , const char * , const char * , const char *tocEntryName, const char *path, const char *type, const char *name, UDataMemoryIsAcceptable *isAcceptable, void *context, UErrorCode *subErrorCode, UErrorCode *pErrorCode) argument
1101 doOpenChoice(const char *path, const char *type, const char *name, UDataMemoryIsAcceptable *isAcceptable, void *context, UErrorCode *pErrorCode) argument
1313 udata_open(const char *path, const char *type, const char *name, UErrorCode *pErrorCode) argument
1333 udata_openChoice(const char *path, const char *type, const char *name, UDataMemoryIsAcceptable *isAcceptable, void *context, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/urlPageGrab/
H A DurlPageGrab.cpp77 char path[MAX_PATH_LEN]; member in struct:__anon5285
92 printf("%s hostname path [options]\n", argv[0]);
103 const char *path,
107 printf("https://%s%s", host, path);
110 printf("http://%s%s", host, path);
115 * Given a hostname, path, and SSL flag, fetch the data, optionally
120 const char *path,
138 sprintf(url, "%s%s%s", scheme, host, path);
197 params->path,
237 * If the original path end
101 printUrl( const char *host, const char *path, int isSsl) argument
118 fetchUrl( const char *host, const char *path, bool isSsl, bool useCfNet, int singleThread, unsigned *bytesRead, CFDataRef *cfData) argument
445 char *path; local
[all...]
/macosx-10.10/pam_modules-140/modules/pam_mount/
H A Dpam_mount.c79 char *path = NULL; local
115 /* get the server_URL, path and homedir from OD */
116 if (PAM_SUCCESS != (retval = od_extract_home(pamh, username, &server_URL, &path, &homedir))) {
123 openpam_log(PAM_LOG_DEBUG, " path: %s", path);
142 if (NULL != path) {
145 path,
164 /* cache the homedir and path for close_session */
166 pam_set_data(pamh, "path", path, openpam_free_dat
217 char *path = NULL; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclvfs/tclvfs/library/template/
H A Dversionvfs.tcl91 upvar path path root root relative relative
103 set fileName [VFileNameEncode [file join $path $relative]]\;[VCreateTag $root]
127 upvar path path root root relative relative
129 set latest [lindex [lindex [lsort [VersionsAll $path $relative]] end] 0]
130 set acquired [lindex [split [set fileName [VAcquireFile $path $root $relative]] \;] 1]
137 upvar path path root root relative relative
139 set latest [lindex [lindex [lsort [VersionsAll $path
[all...]
/macosx-10.10/ruby-106/ruby/lib/
H A Dfileutils.rb59 # remove_entry(path, force = false)
60 # remove_entry_secure(path, force = false)
61 # remove_file(path, force = false)
203 list.map {|path| path.chomp(?/) }.each do |path|
206 fu_mkdir path, options[:mode]
209 next if File.directory?(path)
213 until path == stack.last # dirname("/")=="/", dirname("C:/")=="C:/"
214 stack.push path
1213 def path method in class:copy_entry.Entry_
[all...]
/macosx-10.10/BerkeleyDB-21/db/env/
H A Denv_name.c39 * of call, build a path based on the ENV->open rules, and return
77 * Absolute path names are never modified. If the file is an absolute
78 * path, we're done.
143 * Allocate space to hold the current path information, as well as any
189 __db_tmp_open(env, tmp_oflags, path, fhpp)
192 char *path;
203 if ((ret = __os_exists(env, path, &isdir)) != 0) {
204 __db_err(env, ret, "%s", path);
208 __db_err(env, EINVAL, "%s", path);
212 /* Build the path
[all...]
/macosx-10.10/llvmCore-3425.0.34/utils/lit/lit/
H A DTestingConfig.py10 def frompath(path, parent, litConfig, mustExist, config = None):
16 'PATH' : os.pathsep.join(litConfig.path +
44 if os.path.exists(path):
47 f = open(path)
51 cfg_globals['__file__'] = path
55 litConfig.note('... loaded config %r' % path)
64 litConfig.fatal('unable to load config from %r ' % path)
66 litConfig.note('... config not found - %r' %path)
88 def clone(self, path)
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-LaunchServices/PyObjCTest/
H A Dtest_lsopen.py9 self.path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'dummy.txt')
10 fp = open(self.path, 'w')
15 if os.path.exists(self.path):
16 os.unlink(self.path)
54 url = CFURLCreateFromFileSystemRepresentation(None, self.path, len(self.path), Tru
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dtabnotebook.rb26 [self.path, 'pagecget', id]
31 [self.path, 'pageconfigure', id]
77 window(tk_call(@path, 'add', *hash_kv(keys)))
81 list(tk_call(@path, 'childsite'))
85 window(tk_call(@path, 'childsite', index(idx)))
90 tk_call(@path, 'delete', index(idx1), index(idx2))
92 tk_call(@path, 'delete', index(idx1))
98 #number(tk_call(@path, 'index', tagid(idx)))
103 window(tk_call(@path, 'insert', index(idx), *hash_kv(keys)))
107 tk_call(@path, 'nex
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/tkDND/
H A Dtkdnd.rb93 procedure(tk_call('dnd', 'bindtarget', @path, type, event))
95 procedure(tk_call('dnd', 'bindtarget', @path, type))
97 simplelist(tk_call('dnd', 'bindtarget', @path))
104 # tk_call('dnd', 'bindtarget', @path, type, event,
108 # tk_call('dnd', 'bindtarget', @path, type, event,
126 tk_call('dnd', 'bindtarget', @path, type, event,
130 tk_call('dnd', 'bindtarget', @path, type, event,
137 tk_call('dnd', 'cleartarget', @path)
143 procedure(tk_call('dnd', 'bindsource', @path, type))
145 simplelist(tk_call('dnd', 'bindsource', @path))
[all...]
/macosx-10.10/ruby-106/ruby/lib/rubygems/
H A Drequest_set.rb43 # available via Gem.path and return an Array of Specification
52 def load_gemdeps(path)
53 gf = GemDepedencyAPI.new(self, path)
104 path = req.download(dir)
106 inst = Gem::Installer.new path, :install_dir => dir,
134 path = req.download cache_dir
136 inst = Gem::Installer.new path, options
149 def initialize(set, path)
151 @path = path
[all...]
/macosx-10.10/ruby-106/ruby/test/zlib/
H A Dtest_zlib.rb443 Zlib::GzipWriter.open(t.path) {|gz| gz.print("foo") }
445 Zlib::GzipReader.open(t.path) do |f|
454 Zlib::GzipWriter.open(t.path) {|gz| gz.print("foo") }
456 Zlib::GzipReader.open(t.path) do |f|
468 Zlib::GzipWriter.open(t.path) do |gz|
476 Zlib::GzipReader.open(t.path) do |f|
485 Zlib::GzipWriter.open(t.path) {|gz| gz.print("foo") }
487 Zlib::GzipReader.open(t.path) do |f|
496 Zlib::GzipWriter.open(t.path) {|gz| gz.print("foo") }
498 Zlib::GzipReader.open(t.path) d
[all...]
/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Ddir.c44 static const char *path_canonicalize (const char *path, apr_pool_t *pool) argument
48 apr_size_t len = strlen (path);
51 while ((len > 0) && (path[len - 1] == PATH_SEPARATOR))
55 return apr_pstrndup (pool, path, len);
57 return path;
61 static char *path_remove_last_component (const char *path, apr_pool_t *pool) argument
63 const char *newpath = path_canonicalize (path, pool);
67 if (path[i] == PATH_SEPARATOR)
71 return apr_pstrndup (pool, path, (i < 0) ? 0 : i);
299 apr_status_t apr_dir_make(const char *path, apr_fileperms_ argument
312 apr_dir_make_recursive(const char *path, apr_fileperms_t perm, apr_pool_t *pool) argument
345 apr_dir_remove(const char *path, apr_pool_t *pool) argument
[all...]
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCPCommit.c68 prefsPrivate->newPath ? prefsPrivate->newPath : prefsPrivate->path);
142 char * path; local
199 path = prefsPrivate->newPath ? prefsPrivate->newPath : prefsPrivate->path;
206 if (stat(prefsPrivate->path, &statBuf) == -1) {
219 pathLen = strlen(path) + sizeof("-new");
221 snprintf(thePath, pathLen, "%s-new", path);
248 SCLog(_sc_verbose, LOG_ERR, CFSTR(" prefs = %s"), path);
256 SCLog(_sc_verbose, LOG_ERR, CFSTR(" path = %s"), thePath);
268 SCLog(_sc_verbose, LOG_ERR, CFSTR(" path
[all...]
H A DSCDHostName.c52 CFStringRef path; local
63 path = CFStringCreateWithFormat(NULL,
68 dict = SCPreferencesPathGetValue(prefs, path);
69 CFRelease(path);
173 CFStringRef path; local
189 path = CFStringCreateWithFormat(NULL,
195 dict = SCPreferencesPathGetValue(prefs, path);
231 ok = SCPreferencesPathSetValue(prefs, path, newDict);
233 ok = SCPreferencesPathRemoveValue(prefs, path);
236 CFRelease(path);
252 CFStringRef path; local
284 CFStringRef path; local
344 CFStringRef path; local
512 CFStringRef path; local
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_dyld.py68 orig = os.path.exists
70 os.path.exists = lambda fn: l.append(fn)
76 os.path.expanduser('~/lib/libXSystem.dylib'),
88 os.path.expanduser('~/lib/libXSystem_debug.dylib'),
89 os.path.expanduser('~/lib/libXSystem.dylib'),
107 os.path.expanduser('~/lib/libXSystem.dylib'),
147 os.path.exists = orig
160 orig = os.path.exists
162 os.path.exists = lambda fn: l.append(fn)
170 os.path
[all...]
/macosx-10.10/security_ocspd-55124/server/
H A DtrustSettings.cpp101 * Given the audit_token from an incoming message, cook up the path to the
118 char *path) /* caller allocated, (MAXPATHLEN + 1) bytes */
132 snprintf(path, MAXPATHLEN + 1, "%s/%s.plist", TRUST_SETTINGS_PATH, uuidStr);
136 snprintf(path, MAXPATHLEN + 1, "%s/%lu.plist", TRUST_SETTINGS_PATH,
142 snprintf(path, MAXPATHLEN + 1, "%s/%s", TRUST_SETTINGS_PATH, ADMIN_TRUST_SETTINGS);
149 strcpy(path, SYSTEM_TRUST_SETTINGS_PATH);
220 char path[MAXPATHLEN + 1]; local
222 trustSettingsPath(auditToken, domain, path);
225 if(readFile(path, &fileData, &fileDataLen)) {
226 ocspdTrustDebug("trustSettingsRead: no file at %s", path);
115 trustSettingsPath( audit_token_t auditToken, SecTrustSettingsDomain domain, char *path) argument
353 char path[MAXPATHLEN + 1]; local
[all...]
/macosx-10.10/DiskArbitration-268/DiskArbitrationAgent/
H A DDADialog.m112 CFURLRef path;
114 path = CFURLCreateWithFileSystemPath( kCFAllocatorDefault, ( CFStringRef ) __kDADialogLocalizedStringBundlePath, kCFURLPOSIXPathStyle, TRUE );
116 if ( path )
122 CFDictionarySetValue( dictionary, kCFUserNotificationLocalizationURLKey, path );
156 CFURLRef path;
158 path = CFURLCreateWithFileSystemPath( kCFAllocatorDefault, CFSTR( "/Applications/Utilities/Disk Utility.app" ), kCFURLPOSIXPathStyle, FALSE );
160 if ( path )
162 LSOpenCFURLRef( path, NULL );
164 CFRelease( path );
189 CFRelease( path );
[all...]
/macosx-10.10/DiskArbitration-268/diskarbitrationd/
H A DDAPrivate.c54 char * path = NULL; local
57 path = ___CFURLCopyFileSystemRepresentation( mountpoint );
58 if ( path == NULL ) { status = EINVAL; goto __DAFileSystemSetAdoptionErr; }
68 path,
82 if ( path ) free( path );
90 char * path = NULL; local
93 path = ___CFURLCopyFileSystemRepresentation( mountpoint );
94 if ( path == NULL ) { status = EINVAL; goto __DAFileSystemSetEncodingErr; }
96 status = ___statfs( path,
217 CFURLRef path; local
246 CFURLRef path; local
[all...]
/macosx-10.10/emacs-93/emacs/lisp/url/
H A Durl-auth.el70 (path (url-filename href))
73 path (cond
75 ((string-match "/$" path) path)
76 (t (url-basepath path)))
86 (cons path
92 (setq retval (cdr-safe (assoc path byserv)))
94 (string-match "/" path))
99 (>= (length path) (length data))
100 (string= data (substring path
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dspawnveg.c48 spawnveg(const char* path, char* const argv[], char* const envv[], pid_t pgid)
65 if (err = posix_spawn(&pid, path, NiL, &attr, argv, envv ? envv : environ))
72 if (!access(path, X_OK))
99 spawnveg(const char* path, char* const argv[], char* const envv[], pid_t pgid)
101 return spawnve(pgid ? P_DETACH : P_NOWAIT, path, argv, envv ? envv : environ);
115 spawnveg(const char* path, char* const argv[], char* const envv[], pid_t pgid)
125 return spawn(path, 0, (int*)0, &inherit, (const char**)argv, (const char**)envv);
156 spawnveg(const char* path, char* const argv[], char* const envv[], pid_t pgid)
172 if (access(path, X_OK))
181 return spawnve(path, arg
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-sh/
H A Datf-check.cpp109 std::auto_ptr< atf::fs::path > m_path;
113 temp_file(const atf::fs::path& p) :
126 m_path.reset(new atf::fs::path(buf.get()));
139 const atf::fs::path&
356 cat_file(const atf::fs::path& path) argument
358 std::ifstream stream(path.c_str());
360 throw std::runtime_error("Failed to open " + path.str());
372 grep_file(const atf::fs::path& path, cons argument
590 run_output_check(const output_check oc, const atf::fs::path& path, const std::string& stdxxx) argument
611 print_diff(atf::fs::path(oc.value), path); local
676 run_output_checks(const std::vector< output_check >& checks, const atf::fs::path& path, const std::string& stdxxx) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWKInspectorHighlightView.mm177 layer.path = NULL;
191 CGMutablePathRef path = CGPathCreateMutable();
192 CGPathMoveToPoint(path, 0, innerHole.p1().x(), innerHole.p1().y());
193 CGPathAddLineToPoint(path, 0, innerHole.p2().x(), innerHole.p2().y());
194 CGPathAddLineToPoint(path, 0, innerHole.p3().x(), innerHole.p3().y());
195 CGPathAddLineToPoint(path, 0, innerHole.p4().x(), innerHole.p4().y());
196 CGPathMoveToPoint(path, 0, outerQuad.p1().x(), outerQuad.p1().y());
197 CGPathAddLineToPoint(path, 0, outerQuad.p4().x(), outerQuad.p4().y());
198 CGPathAddLineToPoint(path, 0, outerQuad.p3().x(), outerQuad.p3().y());
199 CGPathAddLineToPoint(path,
[all...]
/macosx-10.10/postfix-255/postfix/conf/
H A Dpost-install144 # should not be in the command search path of any users.
147 # directory should be in the command search path of adminstrative users.
363 for path in "$daemon_directory" "$command_directory" "$queue_directory" \
366 case "$path" in
368 *) echo $0: Error: \"$path\" should be an absolute path name. 1>&2; exit 1;;
372 for path in "$html_directory" "$readme_directory"
374 case "$path" in
377 *) echo $0: Error: \"$path\" should be \"no\" or an absolute path nam
[all...]

Completed in 600 milliseconds

<<31323334353637383940>>