Searched refs:fileURL (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A DiOSforOSX.c33 CFURLRef fileURL = NULL; local
43 fileURL = CFURLCreateCopyAppendingPathComponent(kCFAllocatorDefault, pathURL, filePath, false);
49 return fileURL;
H A DSecFileLocations.c153 CFURLRef fileURL = NULL; local
164 fileURL = CFURLCreateCopyAppendingPathComponent(kCFAllocatorDefault, homeURL, suffix, false);
167 return fileURL;
211 CFURLRef fileURL = SecCopyURLForFileInKeychainDirectory(fileName); local
213 CFURLGetFileSystemRepresentation(fileURL, false, buffer, sizeof(buffer));
216 CFRelease(fileURL);
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A DiOSforOSX.c33 CFURLRef fileURL = NULL; local
43 fileURL = CFURLCreateCopyAppendingPathComponent(kCFAllocatorDefault, pathURL, filePath, false);
49 return fileURL;
H A DSecFileLocations.c153 CFURLRef fileURL = NULL; local
164 fileURL = CFURLCreateCopyAppendingPathComponent(kCFAllocatorDefault, homeURL, suffix, false);
167 return fileURL;
211 CFURLRef fileURL = SecCopyURLForFileInKeychainDirectory(fileName); local
213 CFURLGetFileSystemRepresentation(fileURL, false, buffer, sizeof(buffer));
216 CFRelease(fileURL);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-SearchKit/Examples/SearchKitExample1/
H A DAppController.py140 fileURL = NSURL.fileURLWithPath_(
144 self.addDocumentToIndex_(fileURL)
227 def addDocumentToIndex_(self, fileURL):
233 fileURL)
236 NSLog("Processing %@", fileURL.absoluteString())
239 aDocument = SKDocumentCreateWithURL(fileURL)
253 NSLog("There was a problem adding %@", fileURL)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-SearchKit/Examples/SearchKitExample1/
H A DAppController.py140 fileURL = NSURL.fileURLWithPath_(
144 self.addDocumentToIndex_(fileURL)
227 def addDocumentToIndex_(self, fileURL):
233 fileURL)
236 NSLog("Processing %@", fileURL.absoluteString())
239 aDocument = SKDocumentCreateWithURL(fileURL)
253 NSLog("There was a problem adding %@", fileURL)
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_file_chooser_request.cpp128 String fileURL = ASCIILiteral("file://") + String::fromUTF8(url); local
129 filesURLs[i] = toCopiedURLAPI(fileURL);
144 String fileURL = ASCIILiteral("file://") + String::fromUTF8(chosenFile); local
145 WKRetainPtr<WKURLRef> wkURL(AdoptWK, toCopiedURLAPI(fileURL));
/macosx-10.9.5/SecurityTool-55115/
H A Dkeychain_import.c97 CFURLRef fileURL = CFURLCreateWithFileSystemPath(NULL, fileStr, kCFURLPOSIXPathStyle, FALSE); local
98 if (fileURL) {
99 CFStringRef nameStr = CFURLCopyLastPathComponent(fileURL);
104 safe_CFRelease(&fileURL);
438 CFURLRef fileURL = CFURLCreateWithFileSystemPath(NULL, fileStr, kCFURLPOSIXPathStyle, FALSE); local
439 if (fileURL) {
440 CFStringRef nameStr = CFURLCopyLastPathComponent(fileURL);
458 safe_CFRelease(&fileURL);
H A Dauthz.c135 CFURLRef fileURL = NULL; local
142 fileURL = CFURLCreateWithFileSystemPath(kCFAllocatorDefault, filePath, kCFURLPOSIXPathStyle, false);
143 if (NULL == fileURL) {
146 property = CFURLCreatePropertyFromResource(kCFAllocatorDefault, fileURL, kCFURLFileExists, NULL);
157 status = CFURLCreateDataAndPropertiesFromResource(kCFAllocatorDefault, fileURL, &resourceData, NULL, NULL, &errorCode);
179 if (NULL != fileURL)
180 CFRelease(fileURL);
193 CFURLRef fileURL = NULL; local
200 fileURL = CFURLCreateWithFileSystemPath(kCFAllocatorDefault, filePath, kCFURLPOSIXPathStyle, false);
201 if (NULL == fileURL) {
[all...]
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DMarshallingHelpers.h43 static WTF::String FileCFURLRefToPathString(CFURLRef fileURL);
H A DMarshallingHelpers.cpp61 String MarshallingHelpers::FileCFURLRefToPathString(CFURLRef fileURL) argument
63 CFStringRef string = CFURLCopyFileSystemPath(fileURL, kCFURLWindowsPathStyle);
/macosx-10.9.5/system_cmds-597.90.1/nvram.tproj/
H A Dnvram.c300 CFURLRef fileURL = NULL; local
313 fileURL = CFURLCreateWithFileSystemPath( kCFAllocatorDefault,
317 if (fileURL == NULL) {
325 fileURL,
333 CFRelease(fileURL);
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/nvram.tproj/
H A Dnvram.c300 CFURLRef fileURL = NULL; local
313 fileURL = CFURLCreateWithFileSystemPath( kCFAllocatorDefault,
317 if (fileURL == NULL) {
325 fileURL,
333 CFRelease(fileURL);
/macosx-10.9.5/CF-855.17/
H A DCFFileUtilities.c296 CFURLRef fileURL; local
348 fileURL = CFURLCreateWithFileSystemPathRelativeToBase(alloc, fileURLStr, kCFURLWindowsPathStyle, (file.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ? true : false, dirURL);
349 CFArrayAppendValue(files, fileURL);
350 CFRelease(fileURL);
404 CFURLRef fileURL; local
467 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase(alloc, (uint8_t *)dp->d_name, namelen, isDir, dirURL);
469 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase(alloc, (uint8_t *)dp->d_name, dp->d_namlen, isDir, dirURL);
473 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase (alloc, (uint8_t *)dp->d_name, namelen, false, dirURL);
475 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase (alloc, (uint8_t *)dp->d_name, dp->d_namlen, false, dirURL);
478 CFArrayAppendValue(files, fileURL);
[all...]
H A DCFStream.h102 CFReadStreamRef CFReadStreamCreateWithFile(CFAllocatorRef alloc, CFURLRef fileURL);
104 CFWriteStreamRef CFWriteStreamCreateWithFile(CFAllocatorRef alloc, CFURLRef fileURL);
H A DCFConcreteStreams.c799 static struct _CFStream *_CFStreamCreateWithFile(CFAllocatorRef alloc, CFURLRef fileURL, Boolean forReading) { argument
801 CFStringRef scheme = fileURL ? CFURLCopyScheme(fileURL) : NULL;
807 fileContext.url = fileURL;
812 CF_EXPORT CFReadStreamRef CFReadStreamCreateWithFile(CFAllocatorRef alloc, CFURLRef fileURL) { argument
813 return (CFReadStreamRef)_CFStreamCreateWithFile(alloc, fileURL, TRUE);
816 CF_EXPORT CFWriteStreamRef CFWriteStreamCreateWithFile(CFAllocatorRef alloc, CFURLRef fileURL) { argument
817 return (CFWriteStreamRef)_CFStreamCreateWithFile(alloc, fileURL, FALSE);
/macosx-10.9.5/system_cmds-597.90.1/dynamic_pager.tproj/
H A Ddynamic_pager.c521 CFURLRef fileURL; local
526 fileURL = CFURLCreateFromFileSystemRepresentation(kCFAllocatorDefault, (const UInt8 *)VM_PREFS_PLIST, strlen(VM_PREFS_PLIST), false);
527 if (fileURL == NULL) {
532 if (!CFURLCreateDataAndPropertiesFromResource(kCFAllocatorDefault, fileURL, &resourceData, NULL, NULL, &errorCode)) {
534 CFRelease(fileURL);
538 CFRelease(fileURL);
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/dynamic_pager.tproj/
H A Ddynamic_pager.c521 CFURLRef fileURL; local
526 fileURL = CFURLCreateFromFileSystemRepresentation(kCFAllocatorDefault, (const UInt8 *)VM_PREFS_PLIST, strlen(VM_PREFS_PLIST), false);
527 if (fileURL == NULL) {
532 if (!CFURLCreateDataAndPropertiesFromResource(kCFAllocatorDefault, fileURL, &resourceData, NULL, NULL, &errorCode)) {
534 CFRelease(fileURL);
538 CFRelease(fileURL);
/macosx-10.9.5/Security-55471.14.18/sec/securityd/
H A DSecTrustStoreServer.c191 CFURLRef fileURL = SecCopyURLForFileInKeychainDirectory(file); local
193 if (fileURL && CFURLGetFileSystemRepresentation(fileURL, false, buffer, maxBufLen))
195 CFReleaseSafe(fileURL);
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOCFURLAccess.c410 CFURLRef fileURL; local
443 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase(alloc, dent->d_name, nameLen, isDir, base);
445 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase (alloc, dent->d_name, nameLen, FALSE, base);
447 CFArrayAppendValue(files, fileURL);
448 CFRelease(fileURL);
/macosx-10.9.5/IOKitUser-907.100.13/pwr_mgt.subproj/
H A DIOPMLibPrivate.c391 CFURLRef fileURL = NULL; local
426 fileURL = CFURLCreateWithFileSystemPath(
438 if(!fileURL) {
445 fileURL,
462 CFRelease(fileURL);
/macosx-10.9.5/OpenAL-52.1/Source/OpenAL/
H A DoalContext.cpp1367 CFURLRef fileURL = CFURLCreateFromFSRef (kCFAllocatorDefault, inRef); local
1368 if (fileURL)
1373 status = CFURLCreateDataAndPropertiesFromResource (kCFAllocatorDefault, fileURL, &resourceData, NULL, NULL, &result);
1374 CFRelease (fileURL); // no longer needed
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKPage.cpp85 void WKPageLoadFile(WKPageRef pageRef, WKURLRef fileURL, WKURLRef resourceDirectoryURL) argument
87 toImpl(pageRef)->loadFile(toWTFString(fileURL), toWTFString(resourceDirectoryURL));
90 void WKPageLoadFileWithUserData(WKPageRef pageRef, WKURLRef fileURL, WKURLRef resourceDirectoryURL, WKTypeRef userDataRef) argument
92 toImpl(pageRef)->loadFile(toWTFString(fileURL), toWTFString(resourceDirectoryURL), toImpl(userDataRef));
/macosx-10.9.5/kext_tools-326.95.1/
H A Dkextcache_main.h331 CFURLRef fileURL,
/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCDocument.mm755 - (BOOL)writeToURL:(NSURL *)fileURL ofType:(NSString *)docType error:(NSError **)outError
760 res = [self saveMovesTo:[fileURL path]];
762 res = [super writeToURL:fileURL ofType:docType error:outError];

Completed in 192 milliseconds

12