Searched refs:path (Results 276 - 300 of 4335) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dextfileselectiondialog.rb22 window(tk_call(@path, 'childsite'))
26 tk_call(@path, 'filter')
31 tk_call(@path, 'get')
H A Dfileselectiondialog.rb22 window(tk_call(@path, 'childsite'))
26 tk_call(@path, 'filter')
31 tk_call(@path, 'get')
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/vu/
H A Ddial.rb43 num_or_str(tk_call(@path, 'constrain', val))
47 num_or_str(tk_call(@path, 'get', *args))
51 tk_call(@path, 'identify', x, y)
56 tk_call(@path, 'label', val)
59 lst = simplelist(tk_call(@path, 'label'))
67 tk_call(@path, 'label', val, str, *args)
72 tk_call(@path, 'label', '-constrain', val, str, *args)
78 tk_call(@path, 'tag', val)
81 lst = simplelist(tk_call(@path, 'tag'))
89 tk_call(@path, 'ta
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rexml/
H A Dxpath.rb16 # path::
30 def XPath::first element, path=nil, namespaces=nil, variables={}
36 path = "*" unless path
38 parser.parse(path, element).flatten[0]
41 # Iterates over nodes that match the given path, calling the supplied
45 # path::
59 def XPath::each element, path=nil, namespaces=nil, variables={}, &block
65 path = "*" unless path
[all...]
/macosx-10.9.5/sudo-72/src/
H A Dsecure_path.h27 int sudo_secure_dir __P((const char *path, uid_t uid, gid_t gid, struct stat *sbp));
28 int sudo_secure_file __P((const char *path, uid_t uid, gid_t gid, struct stat *sbp));
29 int sudo_secure_path __P((const char *path, int type, uid_t uid, gid_t gid, struct stat *sbp));
/macosx-10.9.5/xnu-2422.115.4/libsyscall/wrappers/legacy/
H A Dopen.c33 int __open_nocancel(const char *path, int flags, mode_t mode);
40 open(const char *path, int flags, ...) argument
51 return(__open_nocancel(path, flags | O_NOCTTY, mode));
/macosx-10.9.5/xnu-2422.115.4/libsyscall/wrappers/
H A Dopen_dprotected_np.c28 int __open_dprotected_np(const char* path, int flags, int class, int dpflags, int mode);
30 int open_dprotected_np(const char *path, int flags, int class, int dpflags, ...) { argument
39 return (__open_dprotected_np(path, flags, class, dpflags, mode));
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DPathV2.cpp24 using llvm::sys::path::is_separator;
34 StringRef find_first_component(StringRef path) { argument
42 if (path.empty())
43 return path;
47 if (path.size() >= 2 && std::isalpha(path[0]) && path[1] == ':')
48 return path.substr(0, 2);
52 if ((path.size() > 2) &&
53 is_separator(path[
129 parent_path_end(StringRef path) argument
151 namespace path { namespace in namespace:llvm::sys
153 begin(StringRef path) argument
161 end(StringRef path) argument
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/os_brew/
H A Dos_stat.c18 __os_exists(env, path, isdirp)
20 const char *path;
32 if (IFILEMGR_Test(pIFileMgr, path) == EFAILED) {
34 env, pIFileMgr, path, "IFILEMGR_Test", ret);
39 if (IFILEMGR_GetInfo(pIFileMgr, path, &fInfo) == EFAILED) {
41 env, pIFileMgr, path, "IFILEMGR_GetInfo", ret);
58 __os_ioinfo(env, path, fhp, mbytesp, bytesp, iosizep)
60 const char *path;
73 FILE_MANAGER_ERR(env, pIFileMgr, path, "IFILE_GetInfo", ret);
/macosx-10.9.5/Libc-997.90.3/emulated/
H A Dlchflags.c31 lchflags(const char *path, unsigned int flags) argument
36 if(lstat(path, &s) < 0)
39 return chflags(path, flags);
43 return setattrlist(path, &a, &flags, sizeof(unsigned int), FSOPT_NOFOLLOW);
H A Dlchmod.c31 lchmod(const char *path, mode_t mode) argument
37 if(lstat(path, &s) < 0)
40 return chmod(path, mode);
45 return setattrlist(path, &a, &m, sizeof(int), FSOPT_NOFOLLOW);
/macosx-10.9.5/OpenPAM-20/openpam/lib/
H A Dopenpam_load.c69 openpam_load_module(const char *path) argument
73 module = openpam_dynamic(path);
75 (module == NULL) ? "no" : "using", path);
79 if (module == NULL && strchr(path, '/') == NULL) {
80 module = openpam_static(path);
82 (module == NULL) ? "no" : "using", path);
86 openpam_log(PAM_LOG_ERROR, "no %s found", path);
107 openpam_log(PAM_LOG_LIBDEBUG, "releasing %s", module->path);
108 FREE(module->path);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Scripts/
H A Dsndplay.rb10 snd_files.each do |path|
11 snd = OSX::NSSound.alloc.initWithContentsOfFile_byReference(path, true)
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DTrustedApplication.h55 TrustedApplication(const std::string &path); // from code on disk
57 TrustedApplication(const std::string &path, SecRequirementRef requirement); // with requirement and aux. path
61 const char *path() const { return mForm->path().c_str(); } function in class:Security::KeychainCore::TrustedApplication
70 bool verifyToDisk(const char *path); // verify against on-disk image
78 // A simple implementation of a caching path database in the system.
82 PathDatabase(const char *path = "/var/db/CodeEquivalenceCandidates");
84 bool operator [] (const std::string &path) argument
85 { return mQualifyAll || lookup(path); }
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DTrustedApplication.h55 TrustedApplication(const std::string &path); // from code on disk
57 TrustedApplication(const std::string &path, SecRequirementRef requirement); // with requirement and aux. path
61 const char *path() const { return mForm->path().c_str(); } function in class:Security::KeychainCore::TrustedApplication
70 bool verifyToDisk(const char *path); // verify against on-disk image
78 // A simple implementation of a caching path database in the system.
82 PathDatabase(const char *path = "/var/db/CodeEquivalenceCandidates");
84 bool operator [] (const std::string &path) argument
85 { return mQualifyAll || lookup(path); }
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DTrustedApplication.h55 TrustedApplication(const std::string &path); // from code on disk
57 TrustedApplication(const std::string &path, SecRequirementRef requirement); // with requirement and aux. path
61 const char *path() const { return mForm->path().c_str(); } function in class:Security::KeychainCore::TrustedApplication
70 bool verifyToDisk(const char *path); // verify against on-disk image
78 // A simple implementation of a caching path database in the system.
82 PathDatabase(const char *path = "/var/db/CodeEquivalenceCandidates");
84 bool operator [] (const std::string &path) argument
85 { return mQualifyAll || lookup(path); }
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DAsyncFileSystemGtk.h39 virtual void remove(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
40 virtual void removeRecursively(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
41 virtual void readMetadata(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
42 virtual void createFile(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
43 virtual void createDirectory(const KURL& path, bool exclusive, PassOwnPtr<AsyncFileSystemCallbacks>);
44 virtual void fileExists(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
45 virtual void directoryExists(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
46 virtual void readDirectory(const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
47 virtual void createWriter(AsyncFileWriterClient*, const KURL& path, PassOwnPtr<AsyncFileSystemCallbacks>);
/macosx-10.9.5/WebCore-7537.78.1/platform/sql/
H A DSQLiteFileSystem.cpp50 String path = fileName; local
51 return sqlite3_open16(path.charactersWithNullTermination(), database);
80 String SQLiteFileSystem::appendDatabaseFileNameToPath(const String& path, const String& fileName) argument
82 return pathByAppendingComponent(path, fileName);
85 bool SQLiteFileSystem::ensureDatabaseDirectoryExists(const String& path) argument
87 if (path.isEmpty())
89 return makeAllDirectories(path);
105 bool SQLiteFileSystem::deleteEmptyDatabaseDirectory(const String& path) argument
107 return deleteEmptyDirectory(path);
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSFileManagerExtras.h32 - (void)_webkit_setMetadataURL:(NSString *)URLString referrer:(NSString *)referrer atPath:(NSString *)path;
34 - (NSString *)_webkit_pathWithUniqueFilenameForPath:(NSString *)path;
/macosx-10.9.5/autofs-234/automountd/
H A Dreplica.h43 char *path; member in struct:replica
/macosx-10.9.5/cctools-845/ar/
H A Dmisc.c93 char path[MAXPATHLEN]; local
101 (void)sprintf(path, "%s/%s", envtmp, _NAME_ARTMP);
103 strcpy(path, _PATH_ARTMP);
107 if ((fd = mkstemp(path)) == -1)
109 (void)unlink(path);
145 rname(path)
146 char *path;
150 return ((ind = strrchr(path, '/')) ? ind + 1 : path);
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/bundle-v-dylib/
H A Dmain.c42 void loadAsBundleFromMemory(const char* path) argument
44 int fd = open(path, O_RDONLY, 0);
66 FAIL("bundle-v-dylib: NSCreateObjectFileImageFromMemory() incorrectly allowed %s to be loaded", path);
71 void loadAsBundle(const char* path) argument
74 if ( NSCreateObjectFileImageFromFile(path, &ofi) == NSObjectFileImageSuccess ) {
75 FAIL("bundle-v-dylib: NSCreateObjectFileImageFromFile() incorrectly allowed %s to be loaded", path);
80 void loadAsDylib(const char* path) argument
82 if ( NSAddImage(path, NSADDIMAGE_OPTION_RETURN_ON_ERROR) != NULL ) {
83 FAIL("bundle-v-dylib: NSAddImage() incorrectly allowed %s to be loaded", path);
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-RTLD_NODELETE/
H A Dmain.c35 static int trySO(const char* path) argument
37 void* handle = dlopen(path, RTLD_NODELETE);
40 FAIL("dlopen(\"%s\" RTLD_NODELETE) failed but it should have worked: %s", path, msg);
54 XFAIL("dlclose(handle[%s]) returned %d", path, result);
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dyld-func-lookup/
H A Dmain.c38 static void trySO(const char* path) argument
40 void* handle = dlopen(path, RTLD_LAZY);
42 FAIL("dlopen(\"%s\") failed with: %s", path, dlerror());
56 FAIL("check_dyld_func_lookup failed for %s", path);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dmkfifo.c40 mkfifo(const char* path, mode_t mode)
43 return mknod(path, S_IFIFO|(mode & ~S_IFMT), 0);

Completed in 1010 milliseconds

<<11121314151617181920>>