Searched refs:infoPlistURL (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/CodeSigningHelper/
H A Dmain.c121 CFURLRef infoPlistURL = _CFBundleCopyInfoPlistURL(bundle); local
122 if (infoPlistURL == NULL) {
127 CFDataRef data = CopyDataFromURL(infoPlistURL);
128 CFRelease(infoPlistURL);
/macosx-10.9.5/CF-855.17/
H A DCFBundle_InfoPlist.c478 __block CFURLRef infoPlistURL = NULL; local
495 if (!infoPlistURL && CFStringGetLength(fileName) == infoPlistLength && CFStringCompareWithOptions(fileName, _CFBundleInfoPlistName, CFRangeMake(0, infoPlistLength), kCFCompareCaseInsensitive | kCFCompareAnchored) == kCFCompareEqualTo) {
497 infoPlistURL = CFURLCreateWithString(kCFAllocatorSystemDefault, infoURLFromBase, url);
500 // If by some chance we have both URLs, just bail early (or just the infoPlistURL on platforms that have no platform-specific name)
502 if (infoPlistURL && platformInfoPlistURL) return false;
504 if (infoPlistURL) return false;
524 if (!infoData && infoPlistURL) {
527 CFURLCreateDataAndPropertiesFromResource(kCFAllocatorSystemDefault, infoPlistURL, &infoData, NULL, NULL, NULL);
529 if (infoData) finalInfoPlistURL = infoPlistURL;
544 CFLog(kCFLogLevelError, CFSTR("There was an error parsing the Info.plist for the bundle at URL %@\n %@\n %@"), infoPlistURL, erro
[all...]
H A DCFBundle.c3722 static CFPropertyListRef _CFBundleCreateFilteredInfoPlistWithURL(CFURLRef infoPlistURL, CFSetRef keyPaths, _CFBundleFilteredPlistOptions options) { argument
3725 if (!infoPlistURL) return CFDictionaryCreate(kCFAllocatorSystemDefault, NULL, NULL, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
3727 CFURLRef absoluteURL = CFURLCopyAbsoluteURL(infoPlistURL);
3772 CFURLRef infoPlistURL = _CFBundleCopyInfoPlistURL(bundle); local
3773 CFPropertyListRef result = _CFBundleCreateFilteredInfoPlistWithURL(infoPlistURL, keyPaths, options);
3774 if (infoPlistURL) CFRelease(infoPlistURL);
3779 CFURLRef infoPlistURL = CFBundleCopyResourceURLForLocalization(bundle, _CFBundleLocalInfoName, _CFBundleStringTableType, NULL, localizationName); local
3780 CFPropertyListRef result = _CFBundleCreateFilteredInfoPlistWithURL(infoPlistURL, keyPaths, options);
3781 if (infoPlistURL) CFReleas
[all...]
H A DCFBundle_Resources.c1284 CFURLRef infoPlistURL = infoDict ? (CFURLRef)CFDictionaryGetValue(infoDict, _kCFBundleInfoPlistURLKey) : NULL, absoluteURL; local
1288 if (infoPlistURL) {
1290 absoluteURL = CFURLCopyAbsoluteURL(infoPlistURL);

Completed in 103 milliseconds