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

12

/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A DiOSforOSX.c49 CFURLRef fileURL = NULL; local
59 fileURL = CFURLCreateCopyAppendingPathComponent(kCFAllocatorDefault, pathURL, filePath, false);
65 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.10.1/Security-57031.1.35/Security/utilities/utilities/
H A DiOSforOSX.c49 CFURLRef fileURL = NULL; local
59 fileURL = CFURLCreateCopyAppendingPathComponent(kCFAllocatorDefault, pathURL, filePath, false);
65 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.10.1/pyobjc-45/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.10.1/pyobjc-45/2.6/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.10.1/pyobjc-45/pyobjc/pyobjc-framework-SearchKit-2.5.1/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.10.1/WebKit2-7600.1.25/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.10.1/Security-57031.1.35/SecurityTool/
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.10.1/WebKit2-7600.1.25/UIProcess/ios/forms/
H A DWKFileUploadPanel.mm117 @property (nonatomic, readonly) NSURL *fileURL;
129 - (NSURL *)fileURL
167 - (NSURL *)fileURL
203 - (NSURL *)fileURL
285 for (NSURL *fileURL in fileURLs)
286 urls.uncheckedAppend(adoptRef(toImpl(WKURLCreateWithCFURL((CFURLRef)fileURL))));
493 [self _chooseFiles:[NSArray arrayWithObject:result.fileURL] displayString:displayString iconImage:result.displayImage];
513 NSURL *fileURL = result.fileURL;
514 if (!fileURL)
[all...]
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DMarshallingHelpers.h43 static WTF::String FileCFURLRefToPathString(CFURLRef fileURL);
H A DMarshallingHelpers.cpp57 String MarshallingHelpers::FileCFURLRefToPathString(CFURLRef fileURL) argument
59 CFStringRef string = CFURLCopyFileSystemPath(fileURL, kCFURLWindowsPathStyle);
/macosx-10.10.1/system_cmds-643.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.10.1/Security-57031.1.35/Security/regressions/test/
H A Dtestpolicy.m192 for (NSURL* fileURL in [[NSFileManager defaultManager] contentsOfDirectoryAtURL:filesDirectory includingPropertiesForKeys:[NSArray array] options:NSDirectoryEnumerationSkipsSubdirectoryDescendants error:nil]) {
193 NSString* path = [fileURL path];
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DSecTrustStoreServer.c191 CFURLRef fileURL = SecCopyURLForFileInKeychainDirectory(file); local
193 if (fileURL && CFURLGetFileSystemRepresentation(fileURL, false, buffer, maxBufLen))
195 CFReleaseSafe(fileURL);
/macosx-10.10.1/IOKitUser-1050.1.21/
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.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKPage.h64 WK_EXPORT void WKPageLoadFile(WKPageRef page, WKURLRef fileURL, WKURLRef resourceDirectoryURL);
65 WK_EXPORT void WKPageLoadFileWithUserData(WKPageRef page, WKURLRef fileURL, WKURLRef resourceDirectoryURL, WKTypeRef userData);
/macosx-10.10.1/OpenAL-54/Source/OpenAL/
H A DoalContext.cpp1489 CFURLRef fileURL = CFURLCreateFromFSRef (kCFAllocatorDefault, inRef); local
1490 if (fileURL)
1495 status = CFURLCreateDataAndPropertiesFromResource (kCFAllocatorDefault, fileURL, &resourceData, NULL, NULL, &result);
1496 CFRelease (fileURL); // no longer needed
H A DoalSource.cpp4365 CFURLRef fileURL = CFURLCreateFromFSRef (kCFAllocatorDefault, inRef); local
4366 if (fileURL)
4371 status = CFURLCreateDataAndPropertiesFromResource (kCFAllocatorDefault, fileURL, &resourceData, NULL, NULL, &result);
4372 CFRelease (fileURL); // no longer needed
4553 CFURLRef fileURL = CFURLCreateFromFSRef (kCFAllocatorDefault, inRef); local
4554 if (fileURL)
4559 status = CFURLCreateDataAndPropertiesFromResource (kCFAllocatorDefault, fileURL, &resourceData, NULL, NULL, &result);
4560 CFRelease (fileURL); // no longer needed
/macosx-10.10.1/IOKitUser-1050.1.21/pwr_mgt.subproj/
H A DIOPMLibPrivate.c517 CFURLRef fileURL = NULL; local
552 fileURL = CFURLCreateWithFileSystemPath(
564 if(!fileURL) {
571 fileURL,
588 CFRelease(fileURL);
/macosx-10.10.1/Chess-310.6/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];
/macosx-10.10.1/kext_tools-384.1.4/
H A Dkextcache_main.h337 CFURLRef fileURL,
/macosx-10.10.1/dtrace-147/cmd/
H A Ddtrace_1.c732 CFURLRef fileURL; local
741 fileURL = CFURLCreateWithFileSystemPath( kCFAllocatorDefault,
746 if (NULL == fileURL)
752 fileURL,
794 fileURL, // URL to use
/macosx-10.10.1/WebKit-7600.1.25/mac/Misc/
H A DWebIconDatabase.mm80 - (NSImage *)_iconForFileURL:(NSString *)fileURL withSize:(NSSize)size;

Completed in 177 milliseconds

12