CFLite - heldersrvio/PureDarwin GitHub Wiki

CFLite

This page covers the differences between CoreFoundation as found on Mac OS X ("CF") and CoreFoundation as found on Darwin ("CFLite"). 

Versions discussed

At the time of this writing, the latest CF on Mac OS X is version 6.5.4 (CFBundleVersion 476.15, CFBundleShortVersionString 6.5.4, SourceVersion 4761500).

The latest published CFLite source is CF-476.15.tar.gz (CFBundleVersion 476, CFBundleShortVersionString 6.5). A binary root compiled through DarwinBuild is available from http://src.macosforge.org/Roots/9C31/CF.root.tar.gz

An experimental binary root of CFLite also compiled through DarwinBuild (but includes patches from 9F33pd1.plist) can be found here.

The PureFoundation project also provides patched binaries of CFLite. These combine patches necessary to fix some short-comings with CFLite with those needed by the cloned Foundation.framework, and as a result require the presence of that framework.

Notes: Please, read Apple CFLite page for more information.

There is also OpenCFLite, a version of CFLite maintained by an couple of independent developers (blog) which aims to port it to Windows and Linux. As well as the platform-specific changes, this also includes a number of bug-fixes and feature enhancements. There is a good chance that in the near future the version of CFLite bundled for use with PureFoundation will be based on OpenCFLite rather than directly on Apple's CFLite.

Exported symbols

Let's compare the number of symbols exported by CF and CF-Lite with `nm'.

Number of exported symbols

nm -g CoreFoundation | grep -v  "U " | cut -d " " -f 3 > CF.symbols
nm -g CoreFoundation | grep -v  "U " | cut -d " " -f 3 > CF-Lite.symbols

wc -l CF*.symbols 
    1287 CF-Lite.symbols
    1654 CF.symbols

diff CF.symbols CF-Lite.symbols | grep "^< " |  wc -l
     394

This shows that CF exports 1654 symbols.

The same test with CF-Lite shows that CF-Lite exports 1287 symbols.

Hence, CF-Lite contains about 78% of the symbols of the full CF, and about 22% were stripped away.

It is probably fair to assume that the Darwin sources should either not make use of the 28% of symbols that are missing from CF-Lite, or Apple should release the source for the missing symbols. See Current Blockers for a short list of some of the projects where these missing symbols (and the functions they represent) are causing us problems.

Symbols

In this example, _NSInvalidArgumentException should be exported by CF. (Please note: using the latest PureDarwin darwinbuild patch will automatically build a version of CFLite which now exports this and other NS-domain exceptions.) nm -an /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation | grep _NSInvalidArgumentException 0010111b S $ld$hide$os10.4$_NSInvalidArgumentException 0013b444 S _NSInvalidArgumentException nm -an /System/Library/Frameworks/Foundation.framework/Foundation | grep _NSInvalidArgumentException           U _NSInvalidArgumentException 00272c70 S $ld$add$os10.4$_NSInvalidArgumentException

  • U means "it is somewhere else"
  • S means "it exports it"

Missing exported symbols

Here is a list of the 22% exported symbols that are missing from CF-Lite when compared to the full CF:

diff CF.symbols CF-Lite.symbols | grep "^< " 

Whenever you encounter a message that includes one of the follwing symbol names, then it might well be due to the difference between CF and CF-Lite.

  1. $ld$hide$os10.4$.objc_class_name_NSArray
  2. $ld$hide$os10.4$.objc_class_name_NSCalendar
  3. $ld$hide$os10.4$.objc_class_name_NSData
  4. $ld$hide$os10.4$.objc_class_name_NSDate
  5. $ld$hide$os10.4$.objc_class_name_NSDateComponents
  6. $ld$hide$os10.4$.objc_class_name_NSDictionary
  7. $ld$hide$os10.4$.objc_class_name_NSEnumerator
  8. $ld$hide$os10.4$.objc_class_name_NSException
  9. $ld$hide$os10.4$.objc_class_name_NSInputStream
  10. $ld$hide$os10.4$.objc_class_name_NSInvocation
  11. $ld$hide$os10.4$.objc_class_name_NSLocale
  12. $ld$hide$os10.4$.objc_class_name_NSMethodSignature
  13. $ld$hide$os10.4$.objc_class_name_NSMutableArray
  14. $ld$hide$os10.4$.objc_class_name_NSMutableData
  15. $ld$hide$os10.4$.objc_class_name_NSMutableDictionary
  16. $ld$hide$os10.4$.objc_class_name_NSMutableSet
  17. $ld$hide$os10.4$.objc_class_name_NSNull
  18. $ld$hide$os10.4$.objc_class_name_NSObject
  19. $ld$hide$os10.4$.objc_class_name_NSOutputStream
  20. $ld$hide$os10.4$.objc_class_name_NSRunLoop
  21. $ld$hide$os10.4$.objc_class_name_NSSet
  22. $ld$hide$os10.4$.objc_class_name_NSStream
  23. $ld$hide$os10.4$.objc_class_name_NSTimeZone
  24. $ld$hide$os10.4$.objc_class_name_NSTimer
  25. $ld$hide$os10.4$.objc_class_name_NSUserDefaults
  26. $ld$hide$os10.4$_NSBuddhistCalendar
  27. $ld$hide$os10.4$_NSChineseCalendar
  28. $ld$hide$os10.4$_NSCurrentLocaleDidChangeNotification
  29. $ld$hide$os10.4$_NSDefaultRunLoopMode
  30. $ld$hide$os10.4$_NSGenericException
  31. $ld$hide$os10.4$_NSGetSizeAndAlignment
  32. $ld$hide$os10.4$_NSGregorianCalendar
  33. $ld$hide$os10.4$_NSHebrewCalendar
  34. $ld$hide$os10.4$_NSInternalInconsistencyException
  35. $ld$hide$os10.4$_NSInvalidArgumentException
  36. $ld$hide$os10.4$_NSIslamicCalendar
  37. $ld$hide$os10.4$_NSIslamicCivilCalendar
  38. $ld$hide$os10.4$_NSJapaneseCalendar
  39. $ld$hide$os10.4$_NSLocaleCalendar
  40. $ld$hide$os10.4$_NSLocaleCollationIdentifier
  41. $ld$hide$os10.4$_NSLocaleCountryCode
  42. $ld$hide$os10.4$_NSLocaleCurrencyCode
  43. $ld$hide$os10.4$_NSLocaleCurrencySymbol
  44. $ld$hide$os10.4$_NSLocaleDecimalSeparator
  45. $ld$hide$os10.4$_NSLocaleExemplarCharacterSet
  46. $ld$hide$os10.4$_NSLocaleGroupingSeparator
  47. $ld$hide$os10.4$_NSLocaleIdentifier
  48. $ld$hide$os10.4$_NSLocaleLanguageCode
  49. $ld$hide$os10.4$_NSLocaleMeasurementSystem
  50. $ld$hide$os10.4$_NSLocaleScriptCode
  51. $ld$hide$os10.4$_NSLocaleUsesMetricSystem
  52. $ld$hide$os10.4$_NSLocaleVariantCode
  53. $ld$hide$os10.4$_NSMallocException
  54. $ld$hide$os10.4$_NSRangeException
  55. $ld$hide$os10.4$_NSRunLoopCommonModes
  56. $ld$hide$os10.4$_NSStreamDataWrittenToMemoryStreamKey
  57. $ld$hide$os10.4$_NSStreamFileCurrentOffsetKey
  58. $ld$hide$os10.4$_NSStreamSOCKSProxyConfigurationKey
  59. $ld$hide$os10.4$_NSStreamSOCKSProxyHostKey
  60. $ld$hide$os10.4$_NSStreamSOCKSProxyPasswordKey
  61. $ld$hide$os10.4$_NSStreamSOCKSProxyPortKey
  62. $ld$hide$os10.4$_NSStreamSOCKSProxyUserKey
  63. $ld$hide$os10.4$_NSStreamSOCKSProxyVersion4
  64. $ld$hide$os10.4$_NSStreamSOCKSProxyVersion5
  65. $ld$hide$os10.4$_NSStreamSOCKSProxyVersionKey
  66. $ld$hide$os10.4$_NSStreamSocketSecurityLevelKey
  67. $ld$hide$os10.4$_NSStreamSocketSecurityLevelNegotiatedSSL
  68. $ld$hide$os10.4$_NSStreamSocketSecurityLevelNone
  69. $ld$hide$os10.4$_NSStreamSocketSecurityLevelSSLv2
  70. $ld$hide$os10.4$_NSStreamSocketSecurityLevelSSLv3
  71. $ld$hide$os10.4$_NSStreamSocketSecurityLevelTLSv1
  72. $ld$hide$os10.4$_NSSystemTimeZoneDidChangeNotification
  73. .objc_category_name_CFXPreferencesPropertyListSource_CFXPreferencesSPIAdditions
  74. .objc_class_name_CFXPreferencesCompatibilitySource
  75. .objc_class_name_CFXPreferencesManagedSource
  76. .objc_class_name_CFXPreferencesPropertyListSource
  77. .objc_class_name_CFXPreferencesSearchListSource
  78. .objc_class_name_CFXPreferencesSource
  79. .objc_class_name_NSArray
  80. .objc_class_name_NSCalendar
  81. .objc_class_name_NSData
  82. .objc_class_name_NSDate
  83. .objc_class_name_NSDateComponents
  84. .objc_class_name_NSDictionary
  85. .objc_class_name_NSEnumerator
  86. .objc_class_name_NSException
  87. .objc_class_name_NSInputStream
  88. .objc_class_name_NSInvocation
  89. .objc_class_name_NSLocale
  90. .objc_class_name_NSMessageBuilder
  91. .objc_class_name_NSMethodSignature
  92. .objc_class_name_NSMutableArray
  93. .objc_class_name_NSMutableData
  94. .objc_class_name_NSMutableDictionary
  95. .objc_class_name_NSMutableOrderedSet
  96. .objc_class_name_NSMutableSet
  97. .objc_class_name_NSNull
  98. .objc_class_name_NSObject
  99. .objc_class_name_NSOrderedSet
  100. .objc_class_name_NSOutputStream
  101. .objc_class_name_NSRunLoop
  102. .objc_class_name_NSSet
  103. .objc_class_name_NSStream
  104. .objc_class_name_NSTimeZone
  105. .objc_class_name_NSTimer
  106. .objc_class_name_NSUserDefaults
  107. .objc_class_name__NSZombie_
  108. .objc_class_name___NSArrayReverseEnumerator
  109. .objc_class_name___NSCFArray
  110. .objc_class_name___NSCFDate
  111. .objc_class_name___NSCFDictionary
  112. .objc_class_name___NSCFOrderedSet
  113. .objc_class_name___NSCFSet
  114. .objc_class_name___NSDictionaryObjectEnumerator
  115. .objc_class_name___NSFastEnumerationEnumerator
  116. .objc_class_name___NSOrderedSetReverseEnumerator
  117. .objc_class_name___NSPlaceholderArray
  118. .objc_class_name___NSPlaceholderDate
  119. .objc_class_name___NSPlaceholderDictionary
  120. .objc_class_name___NSPlaceholderOrderedSet
  121. .objc_class_name___NSPlaceholderSet
  122. _CFAttributedStringBeginEditing
  123. _CFAttributedStringCreate
  124. _CFAttributedStringCreateCopy
  125. _CFAttributedStringCreateMutable
  126. _CFAttributedStringCreateMutableCopy
  127. _CFAttributedStringCreateWithSubstring
  128. _CFAttributedStringEndEditing
  129. _CFAttributedStringGetAttribute
  130. _CFAttributedStringGetAttributeAndLongestEffectiveRange
  131. _CFAttributedStringGetAttributes
  132. _CFAttributedStringGetAttributesAndLongestEffectiveRange
  133. _CFAttributedStringGetLength
  134. _CFAttributedStringGetMutableString
  135. _CFAttributedStringGetString
  136. _CFAttributedStringGetTypeID
  137. _CFAttributedStringOpenUText
  138. _CFAttributedStringRemoveAttribute
  139. _CFAttributedStringReplaceAttributedString
  140. _CFAttributedStringReplaceString
  141. _CFAttributedStringSetAttribute
  142. _CFAttributedStringSetAttributes
  143. _CFBundleCloseBundleResourceMap
  144. _CFBundleOpenBundleResourceFiles
  145. _CFBundleOpenBundleResourceMap
  146. _CFFileDescriptorCreate
  147. _CFFileDescriptorCreateRunLoopSource
  148. _CFFileDescriptorDisableCallBacks
  149. _CFFileDescriptorEnableCallBacks
  150. _CFFileDescriptorGetContext
  151. _CFFileDescriptorGetNativeDescriptor
  152. _CFFileDescriptorGetTypeID
  153. _CFFileDescriptorInvalidate
  154. _CFFileDescriptorIsValid
  155. _CFGetExecutableLinkedLibraryVersion
  156. _CFGetExecutingLibraryVersion
  157. _CFLocaleGetLanguageRegionEncodingForLocaleIdentifier
  158. _CFLogTest
  159. _CFMutableAttributedStringOpenUText
  160. _CFMutableStringOpenUText
  161. _CFNotificationCenterAddObserver
  162. _CFNotificationCenterGetDarwinNotifyCenter
  163. _CFNotificationCenterGetDistributedCenter
  164. _CFNotificationCenterGetLocalCenter
  165. _CFNotificationCenterGetTypeID
  166. _CFNotificationCenterIsSuspended
  167. _CFNotificationCenterPostNotification
  168. _CFNotificationCenterPostNotificationWithOptions
  169. _CFNotificationCenterRemoveEveryObserver
  170. _CFNotificationCenterRemoveObserver
  171. _CFNotificationCenterSetSuspended
  172. _CFPasteboardApplyFunction
  173. _CFPasteboardBeginGeneration
  174. _CFPasteboardCopyData
  175. _CFPasteboardCopyFlavorsForItem
  176. _CFPasteboardCopyItemsAndFlavors
  177. _CFPasteboardCopyName
  178. _CFPasteboardCreate
  179. _CFPasteboardCreateDataForString
  180. _CFPasteboardCreateStringFromData
  181. _CFPasteboardCreateUnique
  182. _CFPasteboardGetChangeCount
  183. _CFPasteboardGetDataFlags
  184. _CFPasteboardGetFlavorCount
  185. _CFPasteboardGetGenerationCount
  186. _CFPasteboardGetItemAtIndex
  187. _CFPasteboardGetItemCount
  188. _CFPasteboardGetTypeID
  189. _CFPasteboardIsDataPromised
  190. _CFPasteboardPromiseData
  191. _CFPasteboardResolveAllPromisedData
  192. _CFPasteboardResolvePromisedData
  193. _CFPasteboardSetData
  194. _CFPasteboardSetDataFlags
  195. _CFPasteboardSetPasteLocation
  196. _CFPreferencesAppValueIsForced
  197. _CFRunArrayCreate
  198. _CFRunArrayDelete
  199. _CFRunArrayGetCount
  200. _CFRunArrayGetTypeID
  201. _CFRunArrayGetValueAtIndex
  202. _CFRunArrayGetValueAtRunArrayIndex
  203. _CFRunArrayInsert
  204. _CFRunArrayReplace
  205. _CFServiceControllerCanConnect
  206. _CFServiceControllerCopyServicesEntries
  207. _CFServiceControllerGetRegisteredProvider
  208. _CFServiceControllerPerformService
  209. _CFServiceControllerPromiseServiceEntries
  210. _CFServiceControllerRegisterProvider
  211. _CFServiceControllerSetServicesEntries
  212. _CFStreamCreateBoundPair
  213. _CFStringOpenUText
  214. _CFStringTokenizerAdvanceToNextToken
  215. _CFStringTokenizerCopyBestStringLanguage
  216. _CFStringTokenizerCopyCurrentTokenAttribute
  217. _CFStringTokenizerCreate
  218. _CFStringTokenizerGetCurrentSubTokens
  219. _CFStringTokenizerGetCurrentTokenRange
  220. _CFStringTokenizerGetTypeID
  221. _CFStringTokenizerGoToTokenAtIndex
  222. _CFStringTokenizerSetString
  223. _CFStringTransform
  224. _CFURLCreateFromFSRef
  225. _CFURLGetFSRef
  226. _CFUniCharApplyUnicodeBidiAlgorithm
  227. _CFUniCharGetBidiCategory
  228. _CFUniCharGetFirstBidiParagraphLength
  229. _NSBuddhistCalendar
  230. _NSChineseCalendar
  231. _NSCurrentLocaleDidChangeNotification
  232. _NSDefaultRunLoopMode
  233. _NSGenericException
  234. _NSGetSizeAndAlignment
  235. _NSGregorianCalendar
  236. _NSHebrewCalendar
  237. _NSInternalInconsistencyException
  238. _NSInvalidArgumentException
  239. _NSIslamicCalendar
  240. _NSIslamicCivilCalendar
  241. _NSJapaneseCalendar
  242. _NSLocaleCalendar
  243. _NSLocaleCollationIdentifier
  244. _NSLocaleCountryCode
  245. _NSLocaleCurrencyCode
  246. _NSLocaleCurrencySymbol
  247. _NSLocaleDecimalSeparator
  248. _NSLocaleExemplarCharacterSet
  249. _NSLocaleGroupingSeparator
  250. _NSLocaleIdentifier
  251. _NSLocaleLanguageCode
  252. _NSLocaleMeasurementSystem
  253. _NSLocaleScriptCode
  254. _NSLocaleUsesMetricSystem
  255. _NSLocaleVariantCode
  256. _NSMallocException
  257. _NSRangeException
  258. _NSRunLoopCommonModes
  259. _NSStreamDataWrittenToMemoryStreamKey
  260. _NSStreamFileCurrentOffsetKey
  261. _NSStreamSOCKSProxyConfigurationKey
  262. _NSStreamSOCKSProxyHostKey
  263. _NSStreamSOCKSProxyPasswordKey
  264. _NSStreamSOCKSProxyPortKey
  265. _NSStreamSOCKSProxyUserKey
  266. _NSStreamSOCKSProxyVersion4
  267. _NSStreamSOCKSProxyVersion5
  268. _NSStreamSOCKSProxyVersionKey
  269. _NSStreamSocketSecurityLevelKey
  270. _NSStreamSocketSecurityLevelNegotiatedSSL
  271. _NSStreamSocketSecurityLevelNone
  272. _NSStreamSocketSecurityLevelSSLv2
  273. _NSStreamSocketSecurityLevelSSLv3
  274. _NSStreamSocketSecurityLevelTLSv1
  275. _NSSystemTimeZoneDidChangeNotification
  276. __CFAppVersionCheck
  277. __CFAppVersionCheckLessThan
  278. __CFArrayIsMutable
  279. __CFAttributedStringCheckAndReplace
  280. __CFAttributedStringCheckAndReplaceAttributed
  281. __CFAttributedStringCheckAndSetAttribute
  282. __CFAttributedStringCheckAndSetAttributes
  283. __CFAttributedStringCreateWithRuns
  284. __CFAttributedStringGetLength
  285. __CFAttributedStringGetNumberOfRuns
  286. __CFAttributedStringGetRuns
  287. __CFAttributedStringIsMutable
  288. __CFBagIsMutable
  289. __CFBundleCloseBundleResourceFork
  290. __CFBundleCopyInfoDictionaryInResourceFork
  291. __CFBundleCreateIfMightBeBundle
  292. __CFBundleCreateWithExecutableURLIfMightBeBundle
  293. __CFBundleOpenBundleResourceFork
  294. __CFCharacterSetIsMutable
  295. __CFCreateURLFromFSSpec
  296. __CFDNStart
  297. __CFDictionaryIsMutable
  298. __CFDoExceptionOperation
  299. __CFGetFSSpecFromURL
  300. __CFLocaleGetNoteCount
  301. __CFLogvEx
  302. __CFNotificationCenterForLocalNotifications
  303. __CFPreferencesCopyValueNoCache
  304. __CFPreferencesCreatePathToUsersManagedPrefsDirectory
  305. __CFPreferencesIsManaged
  306. __CFPreferencesManagementStatusChangedForDomains
  307. __CFPreferencesPostValuesChangedInDomains
  308. __CFPreferencesWriteDomainDictionaryToPath
  309. __CFPreferencesWriteManagedDomainForUser
  310. __CFPropertListCreateFromFrozen
  311. __CFPropertyListCopyShared
  312. __CFPropertyListCreateFrozen
  313. __CFPropertyListShare
  314. __CFRunArrayCreateWithGuts
  315. __CFSetIsMutable
  316. __CFStringTokenizerGetDerivedTokens
  317. __CFStringTokenizerTokenize
  318. __CFStringTokenizerTokenizeCompoundWord
  319. __CFURLCopyAliasFromPropertyListRepresentation
  320. __CFURLCopyExtendedPropertyListPrimitive
  321. __CFURLCopyExtendedPropertyListRepresentation
  322. __CFUserNotificationSetWarningThread
  323. __CFXNotificationCenterCreate
  324. __CFXNotificationCenterIsEmpty
  325. __CFXNotificationGetHostCenter
  326. __CFXNotificationGetSuspended
  327. __CFXNotificationGetTaskCenter
  328. __CFXNotificationPost
  329. __CFXNotificationPostNotification
  330. __CFXNotificationRegister
  331. __CFXNotificationResetSessionForTask
  332. __CFXNotificationSetSuspended
  333. __CFXNotificationUnregister
  334. __CFXPreferencesCopyDictionaryForApplicationPreferences
  335. __CFXPreferencesCopyDictionaryForNamedVolatileSource
  336. __CFXPreferencesCopyDictionaryForSourceWithBundleID
  337. __CFXPreferencesCopyLanguageList
  338. __CFXPreferencesCopyVolatileSourceNames
  339. __CFXPreferencesRegisterDefaultValues
  340. __CFXPreferencesRemoveNamedVolatileSource
  341. __CFXPreferencesReplaceValuesInNamedVolatileSource
  342. __CFXPreferencesReplaceValuesInSourceWithBundleID
  343. __CFXPreferencesSetUserDefaultsPointer
  344. __CF_forwarding_prep_0
  345. __NSExceptionGetRubyToken
  346. __NSExceptionSetRubyToken
  347. __NSMessageBuilder
  348. ___CFAttributedStringCreateMutableWithSubstring
  349. ___CFAttributedStringMtbl
  350. ___CFDoExternRefOperation
  351. ___CFOAInitialize
  352. ___CFOASafe
  353. ___CFPBStart
  354. ___CFRecordAllocationEvent
  355. ___CFRuntimeObjCClassTable
  356. ___CFSetLastAllocationEventName
  357. ___CFStringIsMutable
  358. ___CFStringMtbl
  359. ____CFA2UC
  360. _crashreporter_info
  361. __kCFBundleResourceSpecificationKey
  362. _kCFErrorDomainCoreFoundation
  363. _kCFManagedPreferencesMCXNotificationName
  364. _kCFManagedPreferencesMCXObjectName
  365. _kCFNotificationAnyName
  366. _kCFNotificationAnyObject
  367. _kCFPasteboardFind
  368. _kCFPasteboardGeneral
  369. _kCFPreferencesDidChangeNotificationName
  370. _kCFPreferencesDidChangeObject
  371. _kCFServiceControllerActivateKey
  372. _kCFServiceControllerErrorKey
  373. _kCFServiceControllerMessageKey
  374. _kCFServiceControllerPasteboardKey
  375. _kCFServiceControllerProviderKey
  376. _kCFServiceControllerResultKey
  377. _kCFServiceControllerServicesChangedNotification
  378. _kCFServiceControllerUserDataKey
  379. _kCFStringTransformFullwidthHalfwidth
  380. _kCFStringTransformHiraganaKatakana
  381. _kCFStringTransformLatinArabic
  382. _kCFStringTransformLatinCyrillic
  383. _kCFStringTransformLatinGreek
  384. _kCFStringTransformLatinHangul
  385. _kCFStringTransformLatinHebrew
  386. _kCFStringTransformLatinHiragana
  387. _kCFStringTransformLatinKatakana
  388. _kCFStringTransformLatinThai
  389. _kCFStringTransformMandarinLatin
  390. _kCFStringTransformStripCombiningMarks
  391. _kCFStringTransformStripDiacritics
  392. _kCFStringTransformToLatin
  393. _kCFStringTransformToUnicodeName
  394. _kCFStringTransformToXMLHex

Symbols vanished from CF-Lite

An old CF-Lite, CoreFoundation-262.tar.gz (source CoreFoundation-262-src.tar.gz) from 2002, exported the following symbols which the recent version of CF-Lite does no longer appear to export:

  1. _CFArrayGetTypeID
  2. _CFArrayCreateMutable
  3. __CFArrayCreate_ex
  4. _CFArrayContainsValue
  5. _CFArrayGetValueAtIndex
  6. _CFArrayGetValues
  7. _CFArrayApplyFunction
  8. _CFArrayAppendValue
  9. _CFArraySetValueAtIndex
  10. _CFArrayExchangeValuesAtIndices
  11. _CFArrayRemoveValueAtIndex
  12. __CFArraySetCapacity
  13. __CFArrayIsMutable
  14. _CFArrayBSearchValues
  15. _CFArrayAppendArray
  16. _CFBagGetTypeID
  17. _CFBagCreateMutable
  18. __CFBagSetContext
  19. _CFBagContainsValue
  20. _CFBagApplyFunction
  21. __CFBagSetCapacity
  22. _CFBagAddValue
  23. _CFBagRemoveValue
  24. _CFBagRemoveAllValues
  25. ___CFRangeMake
  26. _CFNullGetTypeID
  27. _CFAllocatorGetTypeID
  28. _CFAllocatorGetDefault
  29. _CFAllocatorSetDefault
  30. _CFAllocatorCreate
  31. _CFAllocatorAllocate
  32. _CFAllocatorReallocate
  33. _CFAllocatorDeallocate
  34. _CFAllocatorGetPreferredSizeForSize
  35. _CFAllocatorGetContext
  36. __CFRuntimeSetCFMPresent
  37. _CFBinaryHeapGetTypeID
  38. _CFBinaryHeapContainsValue
  39. _CFBinaryHeapApplyFunction
  40. _CFBinaryHeapAddValue
  41. _CFBinaryHeapRemoveMinimumValue
  42. __CFKeyedArchiverUIDGetTypeID
  43. __CFKeyedArchiverUIDCreate
  44. __CFKeyedArchiverUIDGetValue
  45. ___CFBinaryPlistWriteToStream
  46. ___CFBinaryPlistGetTopLevelInfo
  47. ___CFBinaryPlistGetOffsetForValueFromArray
  48. ___CFBinaryPlistGetOffsetForValueFromDictionary
  49. ___CFBinaryPlistCreateObject
  50. _CFBitVectorGetTypeID
  51. _CFBitVectorCreateMutable
  52. _CFBitVectorGetCount
  53. _CFBitVectorGetCountOfBit
  54. _CFBitVectorContainsBit
  55. _CFBitVectorSetCount
  56. _CFBitVectorFlipBitAtIndex
  57. _CFBitVectorFlipBits
  58. _CFBitVectorSetAllBits
  59. _CFStringEncodingIsValidCombiningCharacterForLatin1
  60. _CFStringEncodingPrecomposeLatinCharacter
  61. __CFBundleCopyBundleURLForExecutableURL
  62. __CFBundleCreateIfLooksLikeBundle
  63. __CFBundleGetMainBundleIfLooksLikeBundle
  64. __CFBundleCreateWithExecutableURLIfLooksLikeBundle
  65. _CFBundleGetMainBundle
  66. _CFBundleGetBundleWithIdentifier
  67. _CFBundleGetTypeID
  68. _CFBundleCreate
  69. _CFBundleCreateBundlesFromDirectory
  70. __CFBundleSetDefaultLocalization
  71. _CFBundleCopyInfoDictionaryInDirectory
  72. _CFBundleGetInfoDictionary
  73. __CFBundleGetLocalInfoDictionary
  74. _CFBundleGetLocalInfoDictionary
  75. __CFBundleGetValueForInfoKey
  76. _CFBundleGetValueForInfoDictionaryKey
  77. _CFBundleGetIdentifier
  78. _CFBundleGetVersionNumber
  79. _CFBundleGetDevelopmentRegion
  80. __CFBundleGetHasChanged
  81. _CFBundleCopySupportFilesDirectoryURL
  82. _CFBundleCopyResourcesDirectoryURL
  83. __CFBundleCopyResourceForkURL
  84. __CFBundleCopyExecutableURLInDirectory
  85. __CFBundleCopyOtherExecutableURLInDirectory
  86. _CFBundleCopyAuxiliaryExecutableURL
  87. _CFBundleIsExecutableLoaded
  88. __CFBundleCopyFileTypeForFileURL
  89. __CFBundleSetCFMConnectionID
  90. _CFBundleLoadExecutable
  91. _CFBundleUnloadExecutable
  92. _CFBundleGetFunctionPointerForName
  93. __CFBundleGetCFMFunctionPointerForName
  94. _CFBundleGetFunctionPointersForNames
  95. __CFBundleGetCFMFunctionPointersForNames
  96. _CFBundleGetDataPointerForName
  97. _CFBundleGetDataPointersForNames
  98. _CFBundleGetPlugIn
  99. _CFBundleGetAllBundles
  100. __CFBundleLayoutVersion
  101. __CFBundleCopyInfoPlistURL
  102. __CFBundleCopyPrivateFrameworksURL
  103. __CFBundleCopySharedFrameworksURL
  104. _CFBundleCopySharedFrameworksURL
  105. __CFBundleCopySharedSupportURL
  106. _CFBundleCopySharedSupportURL
  107. _CFBundleCopyBuiltInPlugInsURL
  108. __CFBundleFlushCaches
  109. __CFFindBundleResources
  110. _CFBundleCopyResourceURLsOfType
  111. __CFBundleCopyResourceURLForLanguage
  112. __CFBundleCopyResourceURLsOfTypeForLanguage
  113. _CFBundleCopyResourceURLsOfTypeForLocalization
  114. _CFBundleCopyLocalizedString
  115. _CFBundleCopyLocalizationForLocalizationInfo
  116. __CFBundleGetLanguageAndRegionCodes
  117. _CFBundleCopyLocalizationsForPreferences
  118. _CFBundleCopyPreferredLocalizationsFromArray
  119. __CFBundleURLLooksLikeBundle
  120. __CFBundleGetPackageInfoInDirectory
  121. _CFBundleCopyBundleLocalizations
  122. _CFBundleCopyInfoDictionaryForURL
  123. _CFBundleCopyLocalizationsForURL
  124. _CFCharacterSetGetTypeID
  125. _CFCharacterSetGetPredefined
  126. _CFCharacterSetCreateWithCharactersInRange
  127. _CFCharacterSetCreateWithCharactersInString
  128. _CFCharacterSetCreateWithBitmapRepresentation
  129. _CFCharacterSetIsSurrogatePairMember
  130. _CFCharacterSetHasMemberInPlane
  131. _CFCharacterSetCreateBitmapRepresentation
  132. _CFCharacterSetAddCharactersInRange
  133. _CFCharacterSetAddCharactersInString
  134. _CFCharacterSetIntersect
  135. _CFCharacterSetInvert
  136. _CFCharacterSetCompact
  137. _CFCharacterSetFast
  138. __CFCharacterSetGetKeyedCodingType
  139. __CFCharacterSetIsMutable
  140. __CFCharacterSetGetKeyedCodingBuiltinType
  141. __CFCharacterSetGetKeyedCodingRange
  142. __CFCharacterSetCreateKeyedCodingString
  143. __CFCharacterSetIsInverted
  144. __CFCharacterSetSetIsInverted
  145. _CFDataGetTypeID
  146. _CFDataCreateWithBytesNoCopy
  147. _CFDataGetLength
  148. _CFDataGetMutableBytePtr
  149. _CFDataSetLength
  150. _CFDataAppendBytes
  151. _CFDataDeleteBytes
  152. _CFAbsoluteTimeGetCurrent
  153. _CFDateGetTypeID
  154. _CFDateCompare
  155. _CFGregorianDateIsValid
  156. _CFGregorianDateGetAbsoluteTime
  157. _CFAbsoluteTimeGetGregorianDate
  158. _CFAbsoluteTimeAddGregorianUnits
  159. _CFAbsoluteTimeGetDifferenceAsGregorianUnits
  160. _CFAbsoluteTimeGetDayOfWeek
  161. _CFAbsoluteTimeGetDayOfYear
  162. _CFAbsoluteTimeGetWeekOfYear
  163. _CFDictionaryGetTypeID
  164. _CFDictionaryCreateMutable
  165. __CFDictionaryCreate_ex
  166. __CFDictionarySetContext
  167. _CFDictionaryContainsKey
  168. _CFDictionaryContainsValue
  169. _CFDictionaryGetValue
  170. _CFDictionaryGetValueIfPresent
  171. _CFDictionaryApplyFunction
  172. __CFDictionarySetCapacity
  173. __CFDictionaryIsMutable
  174. _CFDictionaryAddValue
  175. _CFDictionaryRemoveValue
  176. _CFDictionaryRemoveAllValues
  177. __CFMachPortInstallNotifyPort
  178. _CFMachPortGetTypeID
  179. _CFMachPortGetPort
  180. _CFMachPortGetInvalidationCallBack
  181. _CFMachPortGetQueuedMessageCount
  182. _CFMachPortInvalidateAll
  183. _CFMachPortCreateRunLoopSource
  184. _CFMessagePortGetTypeID
  185. _CFMessagePortIsRemote
  186. _CFMessagePortGetName
  187. _CFMessagePortSetName
  188. _CFMessagePortGetInvalidationCallBack
  189. _CFMessagePortSetInvalidationCallBack
  190. _CFMessagePortCreateRunLoopSource
  191. _CFNotificationCenterGetTypeID
  192. _CFNotificationCenterGetDistributedCenter
  193. _CFNotificationCenterAddObserver
  194. _CFNotificationCenterRemoveObserver
  195. _CFNotificationCenterRemoveEveryObserver
  196. _CFNotificationCenterPostNotification
  197. _CFBooleanGetTypeID
  198. _CFBooleanGetValue
  199. _CFNumberGetTypeID
  200. _CFNumberGetType
  201. _CFNumberIsFloatType
  202. _CFNumberCompare
  203. __CFArgv
  204. __CFArgc
  205. __CFGetProgname
  206. __CFProcessPath
  207. __CFCreateHomeDirectoryURLForUser
  208. _CFGetUserName
  209. _CFCopyHomeDirectoryURLForUser
  210. _CFPlugInUnregisterFactory
  211. _CFPlugInUnregisterPlugInType
  212. _CFPlugInAddInstanceForFactory
  213. _CFPlugInInstanceGetTypeID
  214. _CFPlugInInstanceCreateWithInstanceDataSize
  215. _CFPlugInInstanceGetInterfaceFunctionTable
  216. _CFPlugInInstanceGetFactoryName
  217. _CFPlugInInstanceGetInstanceData
  218. _CFPlugInGetTypeID
  219. _CFPlugInCreate
  220. _CFPlugInGetBundle
  221. _CFPlugInIsLoadOnDemand
  222. _CFPreferencesSetAppValue
  223. _CFPreferencesAddSuitePreferencesToApp
  224. _CFPreferencesAppSynchronize
  225. _CFPreferencesCopyValue
  226. _CFPreferencesCopyMultiple
  227. _CFPreferencesSetValue
  228. _CFPreferencesCopyApplicationList
  229. _CFPreferencesCopyKeyList
  230. _CFPreferencesAppValueIsForced
  231. __CFDoOperation
  232. _CFPropertyListIsValid
  233. _CFPropertyListCreateXMLData
  234. __CFPropertyListCreateXMLDataWithExtras
  235. ___CFSetNastyFile
  236. _CFPropertyListCreateFromXMLData
  237. _CFRunLoopGetTypeID
  238. __CFRunLoopSetCurrent
  239. __CFRunLoopSetMain
  240. _CFRunLoopCopyCurrentMode
  241. _CFRunLoopCopyAllModes
  242. _CFRunLoopAddCommonMode
  243. __CFRunLoopFinished
  244. _CFRunLoopRun
  245. _CFRunLoopRunSpecific
  246. _CFRunLoopRunInMode
  247. _CFRunLoopWakeUp
  248. _CFRunLoopStop
  249. __CFRunLoopStopMode
  250. __CFRunLoopModeContainsMode
  251. __CFRunLoopAddModeToMode
  252. __CFRunLoopRemoveModeFromMode
  253. _CFRunLoopContainsSource
  254. _CFRunLoopAddSource
  255. _CFRunLoopRemoveSource
  256. _CFRunLoopContainsObserver
  257. _CFRunLoopAddObserver
  258. _CFRunLoopContainsTimer
  259. _CFRunLoopAddTimer
  260. _CFRunLoopSourceGetTypeID
  261. _CFRunLoopSourceGetContext
  262. _CFRunLoopObserverGetTypeID
  263. _CFRunLoopObserverCreate
  264. _CFRunLoopObserverGetActivities
  265. _CFRunLoopObserverGetOrder
  266. _CFRunLoopObserverDoesRepeat
  267. _CFRunLoopObserverInvalidate
  268. _CFRunLoopObserverIsValid
  269. _CFRunLoopObserverGetContext
  270. _CFRunLoopTimerGetTypeID
  271. _CFRunLoopTimerGetNextFireDate
  272. _CFRunLoopTimerSetNextFireDate
  273. _CFRunLoopTimerGetInterval
  274. _CFRunLoopTimerGetContext
  275. ___CFOAInitialize
  276. ___CFRecordAllocationEvent
  277. ___CFSetLastAllocationEventName
  278. __CFRuntimeRegisterClass
  279. __CFRuntimeGetClassWithTypeID
  280. __CFRuntimeUnregisterClassWithTypeID
  281. __CFRuntimeCreateInstance
  282. __CFRuntimeSetInstanceTypeID
  283. _CFTypeGetTypeID
  284. _CFGetTypeID
  285. _CFCopyTypeIDDescription
  286. _CFRetain
  287. _CFRelease
  288. _CFGetRetainCount
  289. _CFEqual
  290. _CFHash
  291. _CFCopyDescription
  292. _CFGetAllocator
  293. ___CFInitialize
  294. _CFSetGetTypeID
  295. _CFSetCreateMutable
  296. __CFSetSetContext
  297. _CFSetContainsValue
  298. _CFSetApplyFunction
  299. __CFSetSetCapacity
  300. __CFSetIsMutable
  301. _CFSetAddValue
  302. _CFSetRemoveValue
  303. _CFSetRemoveAllValues
  304. _CFSocketGetTypeID
  305. _CFSocketSetAddress
  306. _CFSocketCreateConnectedToSocketSignature
  307. _CFSocketInvalidate
  308. _CFSocketIsValid
  309. _CFSocketGetNative
  310. _CFSocketCopyAddress
  311. _CFSocketCopyPeerAddress
  312. _CFSocketGetContext
  313. _CFSocketGetSocketFlags
  314. _CFSocketSetSocketFlags
  315. _CFSocketCreateRunLoopSource
  316. _CFSocketSendData
  317. _CFSocketRegisterValue
  318. _CFSocketCopyRegisteredValue
  319. _CFSocketCopyRegisteredSocketSignature
  320. _CFSocketUnregister
  321. _CFSocketGetDefaultNameRegistryPortNumber
  322. _CFMergeSortArray
  323. _CFQSortArray
  324. ___CFStorageGetCapacity
  325. ___CFStorageGetValueSize
  326. _CFStorageGetTypeID
  327. _CFStorageInsertValues
  328. _CFStorageDeleteValues
  329. _CFStorageApplyFunction
  330. __CFStringSetCompatibility
  331. ___CFStringIsMutable
  332. ___CFStringIsEightBit
  333. _CFStringGetSystemEncoding
  334. _CFStringFileSystemEncoding
  335. _CFStringGetMaximumSizeForEncoding
  336. ___CFStringComputeEightBitStringEncoding
  337. ___CFStringHash
  338. _CFStringGetTypeID
  339. ___CFStringCreateImmutableFunnel2
  340. _CFStringCreateWithPascalString
  341. _CFStringCreateWithPascalStringNoCopy
  342. _CFStringCreateWithBytes
  343. __CFStringCreateWithBytesNoCopy
  344. _CFStringCreateWithFormatAndArguments
  345. __CFStringCreateWithFormatAndArgumentsAux
  346. _CFStringCreateCopy
  347. ___CFStringMakeConstantString
  348. _CFStringCreateMutableWithExternalCharactersNoCopy
  349. _CFStringCreateMutable
  350. _CFStringCreateMutableCopy
  351. _CFStringGetLength
  352. __CFStringGetLength2
  353. _CFStringGetCharacterAtIndex
  354. __CFStringCheckAndGetCharacterAtIndex
  355. _CFStringGetCharacters
  356. __CFStringCheckAndGetCharacters
  357. _CFStringGetPascalStringPtr
  358. _CFStringGetCString
  359. _CFStringCompareWithOptions
  360. _CFStringCompare
  361. _CFStringFindWithOptions
  362. _CFStringCreateArrayWithFindResults
  363. _CFStringFind
  364. _CFStringHasPrefix
  365. _CFStringHasSuffix
  366. _CFStringFindCharacterFromSet
  367. _CFStringGetLineBounds
  368. _CFStringCreateByCombiningStrings
  369. _CFStringCreateArrayBySeparatingStrings
  370. _CFStringCreateFromExternalRepresentation
  371. _CFStringCreateExternalRepresentation
  372. _CFStringGetFastestEncoding
  373. _CFStringGetIntValue
  374. _CFStringGetDoubleValue
  375. _CFStringSetExternalCharactersNoCopy
  376. _CFStringDelete
  377. _CFStringAppend
  378. _CFStringAppendCharacters
  379. _CFStringAppendPascalString
  380. _CFStringAppendCString
  381. _CFStringAppendFormat
  382. _CFStringFindAndReplace
  383. ___CFStringCheckAndReplace
  384. ___CFStringNoteErrors
  385. _CFStringPad
  386. _CFStringLowercase
  387. _CFStringCapitalize
  388. _CFStringNormalize
  389. _CFStringAppendFormatAndArguments
  390. __CFStringAppendFormatAndArgumentsAux
  391. _CFShowStr
  392. _CFStringEncodingUnicodeToBytes
  393. _CFStringEncodingBytesToUnicode
  394. __CFStringEncodingSetForceASCIICompatibility
  395. ___CFStringDecodeByteStream2
  396. ___CFStringDecodeByteStream3
  397. ___CFStringEncodeByteStream
  398. __CFStringGetFileSystemRepresentation
  399. _CFStringIsEncodingAvailable
  400. _CFStringGetListOfAvailableEncodings
  401. _CFStringGetNameOfEncoding
  402. _CFStringConvertIANACharSetNameToEncoding
  403. _CFStringConvertEncodingToIANACharSetName
  404. _CFStringConvertEncodingToNSStringEncoding
  405. _CFStringConvertNSStringEncodingToEncoding
  406. _CFStringConvertEncodingToWindowsCodepage
  407. _CFStringConvertWindowsCodepageToEncoding
  408. _CFStringGetMostCompatibleMacStringEncoding
  409. _CFTimeZoneGetTypeID
  410. _CFTimeZoneCopySystem
  411. _CFTimeZoneResetSystem
  412. _CFTimeZoneSetDefault
  413. _CFTimeZoneCopyAbbreviationDictionary
  414. _CFTimeZoneSetAbbreviationDictionary
  415. _CFTimeZoneCreateWithTimeIntervalFromGMT
  416. _CFTimeZoneGetName
  417. _CFTimeZoneCopyAbbreviation
  418. _CFTreeGetTypeID
  419. _CFTreeGetChildCount
  420. _CFTreeGetParent
  421. _CFTreeGetNextSibling
  422. _CFTreeGetFirstChild
  423. _CFTreeGetContext
  424. _CFTreeSetContext
  425. _CFTreeApplyFunctionToChildren
  426. _CFTreePrependChild
  427. _CFTreeAppendChild
  428. __CFURLCreateOnlyUTF8CompatibleURLs
  429. _CFURLCreateStringByReplacingPercentEscapes
  430. _CFURLCreateStringByAddingPercentEscapes
  431. _CFURLGetTypeID
  432. __CFURLAlloc
  433. __CFStringIsLegalURLString
  434. __CFURLInitWithString
  435. _CFURLCreateWithBytes
  436. _CFURLCreateData
  437. _CFURLCreateWithString
  438. _CFURLCopyAbsoluteURL
  439. _CFURLGetString
  440. _CFURLGetBaseURL
  441. _CFURLCopyScheme
  442. _CFURLCopyStrictPath
  443. _CFURLHasDirectoryPath
  444. _CFURLCopyHostName
  445. _CFURLGetPortNumber
  446. _CFURLCopyPassword
  447. _CFURLCopyParameterString
  448. _CFURLCopyQueryString
  449. _CFURLCopyFragment
  450. _CFURLCopyComponents
  451. _CFURLCreateFromComponents
  452. ___CFURLReservedPtr
  453. ___CFURLSetReservedPtr
  454. __CFURLCreateCurrentDirectoryURL
  455. _CFURLCreateWithFileSystemPath
  456. _CFURLCreateWithFileSystemPathRelativeToBase
  457. _CFURLCopyFileSystemPath
  458. _CFURLCreateStringWithFileSystemPath
  459. _CFURLGetFileSystemRepresentation
  460. _CFURLCreateFromFileSystemRepresentation
  461. _CFURLCreateFromFileSystemRepresentationRelativeToBase
  462. _CFURLCopyLastPathComponent
  463. _CFURLCopyPathExtension
  464. _CFURLCreateCopyDeletingLastPathComponent
  465. __CFGetFSSpecFromURL
  466. __CFCreateURLFromFSSpec
  467. _CFURLCreateFromFSRef
  468. _CFURLGetFSRef
  469. _CFURLWriteDataAndPropertiesToResource
  470. _CFUUIDGetTypeID
  471. _CFUUIDCreateWithBytes
  472. _CFUUIDCreateFromUUIDBytes
  473. _CFUniCharIsMemberOf
  474. _CFUniCharGetUnicodePropertyDataForPlane
  475. _CFUniCharDecomposeCharacter
  476. _CFUniCharDecompose
  477. _CFUniCharPrioritySort
  478. _CFUserNotificationGetTypeID
  479. _CFUserNotificationCreate
  480. _CFUserNotificationReceiveResponse
  481. _CFUserNotificationGetResponseValue
  482. _CFUserNotificationGetResponseDictionary
  483. _CFUserNotificationUpdate
  484. _CFUserNotificationDisplayNotice
  485. _CFLog2
  486. _CFHashBytes
  487. _CFCopySystemVersionString
  488. __CFCopySystemVersionDictionary
  489. __CFCopyServerVersionDictionary
  490. _CFGetExecutableLinkedLibraryVersion
  491. _CFGetExecutingLibraryVersion
  492. __CFExecutableLinkedOnOrAfter
  493. _CFShow
  494. _CFLog
  495. _CFXMLNodeGetTypeID
  496. _CFXMLNodeCreateCopy
  497. _CFXMLNodeGetTypeCode
  498. _CFXMLNodeGetString
  499. _CFXMLParserGetTypeID
  500. _CFXMLParserGetContext
  501. _CFXMLParserGetSourceURL
  502. _CFXMLParserGetLocation
  503. _CFXMLParserGetLineNumber
  504. _CFXMLParserCopyErrorDescription
  505. _CFXMLParserAbort
  506. _CFXMLParserCreate
  507. _CFXMLTreeGetNode
  508. _kCFCoreFoundationVersionString
  509. _kCFAllocatorDefault
  510. _kCFAllocatorUseContext
  511. ___CFBundleMagicNumbersArray
  512. _kCFAbsoluteTimeIntervalSince1970
  513. _kCFAbsoluteTimeIntervalSince1904
  514. _kCFCoreFoundationVersionNumber
  515. ___CFBundleExtensionsArray
  516. ___CFBundleLocaleAbbreviationsArray
  517. ___CFBundleLanguageAbbreviationsArray
  518. _CFNastyFile
  519. ___CFOASafe
  520. ___CFConstantStringClassReference
  521. ___CFDefaultEightBitStringEncoding
  522. _kCFTypeArrayCallBacks
  523. _kCFTypeBagCallBacks
  524. _kCFCopyStringBagCallBacks
  525. _kCFNull
  526. _kCFAllocatorSystemDefault
  527. _kCFAllocatorMalloc
  528. _kCFAllocatorNull
  529. _kCFStringBinaryHeapCallBacks
  530. _kCFBundleInfoDictionaryVersionKey
  531. _kCFBundleExecutableKey
  532. _kCFBundleIdentifierKey
  533. _kCFBundleVersionKey
  534. _kCFBundleDevelopmentRegionKey
  535. _kCFBundleLocalizationsKey
  536. __kCFBundlePackageTypeKey
  537. __kCFBundleSignatureKey
  538. __kCFBundleIconFileKey
  539. __kCFBundleDocumentTypesKey
  540. __kCFBundleURLTypesKey
  541. _kCFBundleNameKey
  542. __kCFBundleShortVersionStringKey
  543. __kCFBundleGetInfoStringKey
  544. __kCFBundleTypeNameKey
  545. __kCFBundleTypeRoleKey
  546. __kCFBundleTypeIconFileKey
  547. __kCFBundleTypeOSTypesKey
  548. __kCFBundleTypeExtensionsKey
  549. __kCFBundleTypeMIMETypesKey
  550. __kCFBundleURLNameKey
  551. __kCFBundleURLIconFileKey
  552. __kCFBundleURLSchemesKey
  553. __kCFBundleOldIconFileKey
  554. __kCFBundleOldDocumentTypesKey
  555. __kCFBundleOldTypeNameKey
  556. __kCFBundleOldTypeRoleKey
  557. __kCFBundleOldTypeIconFileKey
  558. __kCFBundleInfoPlistURLKey
  559. __kCFBundleNumericVersionKey
  560. __kCFBundleExecutablePathKey
  561. __kCFBundleCFMLoadAsBundleKey
  562. __kCFBundleAllowMixedLocalizationsKey
  563. ___kCFCSetNameControl
  564. ___kCFCSetNameWhitespace
  565. ___kCFCSetNameWhitespaceAndNewline
  566. ___kCFCSetNameDecimalDigit
  567. ___kCFCSetNameLetter
  568. ___kCFCSetNameLowercaseLetter
  569. ___kCFCSetNameUppercaseLetter
  570. ___kCFCSetNameNonBase
  571. ___kCFCSetNameDecomposable
  572. ___kCFCSetNameAlphaNumeric
  573. ___kCFCSetNamePunctuation
  574. ___kCFCSetNameIllegal
  575. ___kCFCSetNameCapitalizedLetter
  576. ___kCFCSetNameStringTypeFormat
  577. _kCFTypeDictionaryKeyCallBacks
  578. _kCFCopyStringDictionaryKeyCallBacks
  579. _kCFTypeDictionaryValueCallBacks
  580. _kCFBooleanTrue
  581. _kCFPlugInDynamicRegistrationKey
  582. _kCFPlugInUnloadFunctionKey
  583. _kCFPreferencesCurrentApplication
  584. _kCFPreferencesCurrentHost
  585. _kCFRunLoopDefaultMode
  586. _kCFTypeSetCallBacks
  587. _kCFCopyStringSetCallBacks
  588. _kCFSocketNameKey
  589. _kCFSocketValueKey
  590. _kCFSocketResultKey
  591. ___kCFSocketRegistryRequestRunLoopMode
  592. _kCFEmptyString
  593. _kCFNSDecimalSeparatorKey
  594. _kCFURLFileScheme
  595. _kCFURLLocalhost
  596. _kCFURLFileExists
  597. _kCFURLFilePOSIXMode
  598. _kCFURLFileLength
  599. _kCFFileURLExists
  600. _kCFFileURLPOSIXMode
  601. _kCFFileURLDirectoryContents
  602. _kCFFileURLSize
  603. _kCFFileURLLastModificationTime
  604. _kCFHTTPURLStatusCode
  605. _kCFHTTPURLStatusLine
  606. _kCFUserNotificationTokenKey
  607. _kCFUserNotificationTimeoutKey
  608. _kCFUserNotificationFlagsKey
  609. _kCFUserNotificationIconPathKey
  610. _kCFUserNotificationSoundPathKey
  611. _kCFUserNotificationLocalizationPathKey
  612. _kCFUserNotificationTextFieldLabelsKey
  613. _kCFUserNotificationSoundURLKey
  614. _kCFUserNotificationAlertHeaderKey
  615. _kCFUserNotificationAlertMessageKey
  616. _kCFUserNotificationDefaultButtonTitleKey
  617. _kCFUserNotificationAlternateButtonTitleKey
  618. _kCFUserNotificationProgressIndicatorValueKey
  619. _kCFUserNotificationCheckBoxTitlesKey
  620. __kCFSystemVersionProductNameKey
  621. __kCFSystemVersionProductCopyrightKey
  622. __kCFSystemVersionProductVersionKey
  623. __kCFSystemVersionProductVersionExtraKey
  624. __kCFSystemVersionBuildVersionKey
  625. __kCFSystemVersionProductVersionStringKey
  626. __kCFSystemVersionBuildStringKey
⚠️ **GitHub.com Fallback** ⚠️