Searched refs:path (Results 376 - 400 of 4145) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/Libc-1044.1.2/util/
H A Dopendev.c51 opendev(path, oflags, dflags, realpath)
52 char *path;
62 *realpath = path;
78 if ((slash = strchr(path, '/')))
79 fd = open(path, oflags);
82 _PATH_DEV, prefix, path) < PATH_MAX) {
94 _PATH_DEV, prefix, path) < PATH_MAX) {
H A Dmkpath_np.c32 * set to the path of the first created directory, and it is the caller's
41 _mkpath_np(const char *path, mode_t omode, const char ** firstdir) argument
51 if (0 == mkdir(path, omode)) {
53 *firstdir = strdup(path);
66 if (stat(path, &sbuf) == 0) {
84 apath = strdup(path);
102 path = opath = strdup(apath);
110 if (0 == mkdir(path, omode)) {
112 *firstdir = strdup(path);
191 /* This handles "." and ".." added to the new section of path */
224 mkpath_np(const char *path, mode_t omode) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cssm/lib/
H A Dmodload_plugin.cpp38 LoadablePlugin::LoadablePlugin(const char *path) : LoadableBundle(path) argument
40 secdebug("cssm", "LoadablePlugin(%s)", path);
50 secdebug("cssm", "LoadablePlugin::load() path %s", path().c_str());
60 secdebug("cssm", "LoadablePlugin::unload() path %s", path().c_str());
79 secdebug("cssm", "LoadablePlugin::load(guid,...) path %s", path().c_str());
89 secdebug("cssm", "LoadablePlugin::unload(guid,...) path
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/
H A DCookie.h41 const String& path, double expires, bool httpOnly, bool secure,
46 , path(path)
57 String path; member in struct:WebCore::Cookie
67 return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure;
72 return a.name == b.name && a.domain == b.domain && a.path == b.path && a.secure == b.secure;
40 Cookie(const String& name, const String& value, const String& domain, const String& path, double expires, bool httpOnly, bool secure, bool session) argument
/macosx-10.10/WebCore-7600.1.25/platform/efl/
H A DFileSystemEfl.cpp52 CString fileSystemRepresentation(const String& path) argument
57 char* filename = g_uri_unescape_string(path.utf8().data(), 0);
62 return path.utf8();
85 Vector<String> listDirectory(const String& path, const String& filter) argument
91 Eina_Iterator* it = eina_file_ls(path.utf8().data());
102 uint64_t getVolumeFreeSizeForPath(const char* path) argument
105 if (statvfs(path, &buf) < 0)
/macosx-10.10/diskdev_cmds-576/fdisk.tproj/
H A Dopendev.c65 opendev(path, oflags, dflags, realpath)
66 char *path;
77 *realpath = path;
86 if ((slash = strchr(path, '/')))
87 fd = open(path, oflags);
93 _PATH_DEV, prefix, path, 'a' + getrawpartition())
103 _PATH_DEV, prefix, path) < sizeof(namebuf)) {
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_connect.c80 char *path; local
85 path = mail_pathname(class, name);
86 if ((fd = LOCAL_CONNECT(path, block_mode, 0)) < 0) {
88 msg_info("connect to subsystem %s: %m", path);
92 msg_info("connect to subsystem %s", path);
95 sock_name = concatenate(path, " socket", (char *) 0);
101 myfree(path);
H A Dmbox_open.c16 /* MBOX *mbox_open(path, flags, mode, st, user, group, lock_style,
18 /* const char *path;
105 MBOX *mbox_open(const char *path, int flags, mode_t mode, struct stat * st, argument
140 && (stat(path, st) < 0 || S_ISREG(st->st_mode))) {
141 if (dot_lockfile(path, why->reason) == 0) {
158 * system may be attacked by a malicious user-specified path, or the
163 if ((fp = safe_open(path, flags | O_NONBLOCK, mode, st,
167 dot_unlockfile(path);
188 dot_unlockfile(path);
209 msg_warn("%s: file status changed unexpectedly", path);
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/objc/
H A D_compat.py40 path = os.path.dirname(os.path.dirname(os.environ['RESOURCEPATH']))
41 if sys.version_info[0] == 2 and not isinstance(path, unicode):
42 path = unicode(path, sys.getfilesystemencoding())
43 _PLUGINS[pluginName] = path
/macosx-10.10/ruby-106/ruby/test/win32ole/
H A Dtest_folderitem2_invokeverb.rb20 @dummy_path = @cfolder.path + "\\" + dummy_file
23 @nsp = shell.NameSpace(@cfolder.path)
27 def find_link(path)
30 if /\.lnk$/ =~ f.path
32 arlink.push f if linkinfo.path == path
52 @lpath = links[0].path
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/kc/
H A Dkc-24-login.c38 // get the path for the default keychain
39 char path[1024]; local
40 UInt32 path_len = sizeof(path) - 1;
41 ok_status(SecKeychainGetPath(default_keychain, &path_len, path),
42 "get path");
43 fprintf(stdout, "Default keychain path is %s\n", path);
44 path[path_len] = 0;
46 cmp_ok(path_len, >, strlen(login_path), "path len is enough");
47 eq_string(path
[all...]
/macosx-10.10/ruby-106/ruby/lib/webrick/httpauth/
H A Dhtdigest.rb19 # matched to a realm where they are valid. For security, the path for a
34 # Open a digest password database at +path+
36 def initialize(path)
37 @path = path
42 open(@path,"a").close unless File::exist?(@path)
50 mtime = File::mtime(@path)
53 open(@path){|io|
69 # be written there instead of to the original path
[all...]
H A Dhtpasswd.rb19 # matched to a realm where they are valid. For security, the path for a
35 # Open a password database at +path+
37 def initialize(path)
38 @path = path
42 open(@path,"a").close unless File::exist?(@path)
50 mtime = File::mtime(@path)
53 open(@path){|io|
74 # be written there instead of to the original path
[all...]
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/dlsym-RTLD_DEFAULT/
H A Dmain.c40 static void trySO(const char* path) argument
42 void* handle = dlopen(path, RTLD_LAZY);
44 FAIL("dlopen(\"%s\") failed", path);
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dfop005.tcl22 # Determine full path
48 foreach path $paths {
63 set file $path/$filename
64 set extentfile $path/$extentname
75 -home $path} $largs]
82 in path $path"
96 check_file_exist $file $env $path 1
99 $extentfile $env $path 1
126 check_file_exist $file $env $path
[all...]
/macosx-10.10/Security-57031.1.35/Security/sectests/test/
H A Dtestenv.c49 rmdir_recursive(const char *path) argument
52 if (strlen(path) + 10 > sizeof(command_buf) || strchr(path, '\''))
54 fprintf(stderr, "# rmdir_recursive: invalid path: %s", path);
58 sprintf(command_buf, "rm -rf '%s'", path);
68 char *path = getenv("TESTHOME"); local
69 if (path)
70 setenv("TESTHOME", path, 1);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DTreeElementStatusButton.css32 .item > .status > .status-button > svg path.filled {
36 body.mac-platform.legacy .item > .status > .status-button > svg path.filled {
40 :focus .item.selected > .status > .status-button > svg path.filled {
44 .item > .status > .status-button > svg path.stroked {
48 body.mac-platform.legacy .item > .status > .status-button > svg path.stroked {
52 :focus .item.selected > .status > .status-button > svg path.stroked {
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DBlobDataFileReferenceWithSandboxExtension.h37 static PassRefPtr<BlobDataFileReference> create(const String& path, PassRefPtr<SandboxExtension> sandboxExtension) argument
39 return adoptRef(new BlobDataFileReferenceWithSandboxExtension(path, sandboxExtension));
43 BlobDataFileReferenceWithSandboxExtension(const String& path, PassRefPtr<SandboxExtension>);
/macosx-10.10/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DSyscallPolicy.h48 bool hasPermissionForPath(const char* path, Permission) const;
50 void addFilePermission(const String& path, Permission);
51 void addDirectoryPermission(const String& path, Permission);
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dhashcmd.c54 free (((PATH_DATA *)data)->path);
87 /* Place FILENAME (key) and FULL_PATH (data->path) into the
107 free (pathdata(item)->path);
113 pathdata(item)->path = savestring (full_path);
132 char *path, *dotted_filename, *tail; local
143 /* If this filename is hashed, but `.' comes before it in the path,
146 path = pathdata(item)->path;
149 tail = (pathdata(item)->flags & HASH_RELPATH) ? path : (char *)filename; /* XXX - fix const later */
174 we're really interested in is whether or not the `path'
[all...]
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCPreferencesPathKey.c72 CFStringRef path; local
78 path = CFStringCreateWithFormat(allocator,
87 path = CFStringCreateWithFormat(allocator,
95 return path;
172 CFStringRef path; local
178 path = CFStringCreateWithFormat(allocator,
189 path = CFStringCreateWithFormat(allocator,
199 return path;
209 CFStringRef path; local
215 path
[all...]
/macosx-10.10/diskdev_cmds-576/disklib/
H A Ddkopen.c31 int dkopen (const char *path, int flags, int mode) argument
34 return (open64 (path, flags, mode));
36 return (open (path, flags, mode));
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dftw.c41 return (*ftw_userf)(ftw->path, &ftw->statb, n);
45 ftw(const char* path, int(*userf)(const char*, const struct stat*, int), int depth) argument
49 return ftwalk(path, ftw_user, FTW_DOT, NiL);
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/
H A Dsetup.py42 os.path.join('Modules', fn)
54 os.path.join('Modules', fn)
66 os.path.join('Modules', fn)
/macosx-10.10/ruby-106/ruby/ext/psych/
H A Dpsych_to_ruby.c18 /* call-seq: vis.path2class(path)
20 * Convert +path+ string to a class
22 static VALUE path2class(VALUE self, VALUE path) argument
25 return rb_path_to_class(path);
27 return rb_path2class(StringValuePtr(path));

Completed in 371 milliseconds

<<11121314151617181920>>