corefoundation

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 18, 2026 License: MIT Imports: 7 Imported by: 0

Documentation

Rendered for darwin/amd64

Overview

Package corefoundation provides purego-based Go bindings for the macOS CoreFoundation framework.

Apple documentation: https://developer.apple.com/documentation/corefoundation

Index

Constants

View Source
const (
	CFByteOrderUnknown      __CFByteOrder = 0
	CFByteOrderLittleEndian __CFByteOrder = 1
	CFByteOrderBigEndian    __CFByteOrder = 2
)
View Source
const (
	KCFBundleExecutableArchitectureARM64  = 16777228
	KCFBundleExecutableArchitectureI386   = 7
	KCFBundleExecutableArchitecturePPC    = 18
	KCFBundleExecutableArchitecturePPC64  = 16777234
	KCFBundleExecutableArchitectureX86_64 = 16777223
)
View Source
const (
	KCFFileDescriptorReadCallBack  = 1
	KCFFileDescriptorWriteCallBack = 2
)
View Source
const (
	KCFMessagePortBecameInvalidError = -5
	KCFMessagePortIsInvalid          = -3
	KCFMessagePortReceiveTimeout     = -2
	KCFMessagePortSendTimeout        = -1
	KCFMessagePortSuccess            = 0
	KCFMessagePortTransportError     = -4
)
View Source
const (
	KCFNotificationDeliverImmediately = 1
	KCFNotificationPostToAllSessions  = 2
)
View Source
const (
	KCFPropertyListReadCorruptError        = 3840
	KCFPropertyListReadStreamError         = 3842
	KCFPropertyListReadUnknownVersionError = 3841
	KCFPropertyListWriteStreamError        = 3851
)
View Source
const (
	KCFSocketAutomaticallyReenableAcceptCallBack = 2
	KCFSocketAutomaticallyReenableDataCallBack   = 3
	KCFSocketAutomaticallyReenableReadCallBack   = 1
	KCFSocketAutomaticallyReenableWriteCallBack  = 8
	KCFSocketCloseOnInvalidate                   = 128
	KCFSocketLeaveErrors                         = 64
)
View Source
const (
	KCFStringTokenizerAttributeLanguage           = 131072
	KCFStringTokenizerAttributeLatinTranscription = 65536
	KCFStringTokenizerUnitLineBreak               = 3
	KCFStringTokenizerUnitParagraph               = 2
	KCFStringTokenizerUnitSentence                = 1
	KCFStringTokenizerUnitWord                    = 0
	KCFStringTokenizerUnitWordBoundary            = 4
)
View Source
const (
	KCFUserNotificationAlternateResponse = 1
	KCFUserNotificationCancelResponse    = 3
	KCFUserNotificationDefaultResponse   = 0
	KCFUserNotificationOtherResponse     = 2
)
View Source
const (
	KCFUserNotificationNoDefaultButtonFlag = 32
	KCFUserNotificationUseRadioButtonsFlag = 64
)
View Source
const (
	KCFUserNotificationCautionAlertLevel = 2
	KCFUserNotificationNoteAlertLevel    = 1
	KCFUserNotificationPlainAlertLevel   = 3
	KCFUserNotificationStopAlertLevel    = 0
)
View Source
const (
	KCFCalendarComponentsWrap = 1
)
View Source
const (
	KCFXMLNodeCurrentVersion = 1
)

Variables

This section is empty.

Functions

func BuiltinConstantP

func BuiltinConstantP() int

C function: __builtin_constant_p

func CFAbsoluteTimeAddGregorianUnits deprecated

func CFAbsoluteTimeAddGregorianUnits(at float64, tz unsafe.Pointer, units CFGregorianUnits) float64

Deprecated: Use CFCalendar or NSCalendar API instead

func CFAbsoluteTimeGetCurrent

func CFAbsoluteTimeGetCurrent() float64

func CFAbsoluteTimeGetDayOfWeek deprecated

func CFAbsoluteTimeGetDayOfWeek(at float64, tz unsafe.Pointer) int

Deprecated: Use CFCalendar or NSCalendar API instead

func CFAbsoluteTimeGetDayOfYear deprecated

func CFAbsoluteTimeGetDayOfYear(at float64, tz unsafe.Pointer) int

Deprecated: Use CFCalendar or NSCalendar API instead

func CFAbsoluteTimeGetWeekOfYear deprecated

func CFAbsoluteTimeGetWeekOfYear(at float64, tz unsafe.Pointer) int

Deprecated: Use CFCalendar or NSCalendar API instead

func CFAllocatorAllocate

func CFAllocatorAllocate(allocator unsafe.Pointer, size int, hint uint) unsafe.Pointer

func CFAllocatorAllocateBytes

func CFAllocatorAllocateBytes(allocator unsafe.Pointer, size int, hint uint) unsafe.Pointer

func CFAllocatorAllocateTyped

func CFAllocatorAllocateTyped(allocator unsafe.Pointer, size int, descriptor uint64, hint uint) unsafe.Pointer

func CFAllocatorCreate

func CFAllocatorCreate(allocator unsafe.Pointer, context_ *CFAllocatorContext) unsafe.Pointer

func CFAllocatorDeallocate

func CFAllocatorDeallocate(allocator unsafe.Pointer, ptr unsafe.Pointer)

func CFAllocatorGetContext

func CFAllocatorGetContext(allocator unsafe.Pointer, context_ *CFAllocatorContext)

func CFAllocatorGetDefault

func CFAllocatorGetDefault() unsafe.Pointer

func CFAllocatorGetPreferredSizeForSize

func CFAllocatorGetPreferredSizeForSize(allocator unsafe.Pointer, size int, hint uint) int

func CFAllocatorGetTypeID

func CFAllocatorGetTypeID() uint

func CFAllocatorReallocate

func CFAllocatorReallocate(allocator unsafe.Pointer, ptr unsafe.Pointer, newsize int, hint uint) unsafe.Pointer

func CFAllocatorReallocateBytes

func CFAllocatorReallocateBytes(allocator unsafe.Pointer, ptr unsafe.Pointer, newsize int, hint uint) unsafe.Pointer

func CFAllocatorReallocateTyped

func CFAllocatorReallocateTyped(allocator unsafe.Pointer, ptr unsafe.Pointer, newsize int, descriptor uint64, hint uint) unsafe.Pointer

func CFAllocatorSetDefault

func CFAllocatorSetDefault(allocator unsafe.Pointer)

func CFArrayAppendArray

func CFArrayAppendArray(theArray unsafe.Pointer, otherArray unsafe.Pointer, otherRange CFRange)

func CFArrayAppendValue

func CFArrayAppendValue(theArray unsafe.Pointer, value unsafe.Pointer)

func CFArrayApplyFunction

func CFArrayApplyFunction(theArray unsafe.Pointer, range_ CFRange, applier unsafe.Pointer, context_ unsafe.Pointer)

func CFArrayBSearchValues

func CFArrayBSearchValues(theArray unsafe.Pointer, range_ CFRange, value unsafe.Pointer, comparator unsafe.Pointer, context_ unsafe.Pointer) int

func CFArrayContainsValue

func CFArrayContainsValue(theArray unsafe.Pointer, range_ CFRange, value unsafe.Pointer) uint8

func CFArrayCreate

func CFArrayCreate(allocator unsafe.Pointer, values unsafe.Pointer, numValues int, callBacks *CFArrayCallBacks) unsafe.Pointer

func CFArrayCreateCopy

func CFArrayCreateCopy(allocator unsafe.Pointer, theArray unsafe.Pointer) unsafe.Pointer

func CFArrayCreateMutable

func CFArrayCreateMutable(allocator unsafe.Pointer, capacity int, callBacks *CFArrayCallBacks) unsafe.Pointer

func CFArrayCreateMutableCopy

func CFArrayCreateMutableCopy(allocator unsafe.Pointer, capacity int, theArray unsafe.Pointer) unsafe.Pointer

func CFArrayExchangeValuesAtIndices

func CFArrayExchangeValuesAtIndices(theArray unsafe.Pointer, idx1 int, idx2 int)

func CFArrayGetCount

func CFArrayGetCount(theArray unsafe.Pointer) int

func CFArrayGetCountOfValue

func CFArrayGetCountOfValue(theArray unsafe.Pointer, range_ CFRange, value unsafe.Pointer) int

func CFArrayGetFirstIndexOfValue

func CFArrayGetFirstIndexOfValue(theArray unsafe.Pointer, range_ CFRange, value unsafe.Pointer) int

func CFArrayGetLastIndexOfValue

func CFArrayGetLastIndexOfValue(theArray unsafe.Pointer, range_ CFRange, value unsafe.Pointer) int

func CFArrayGetTypeID

func CFArrayGetTypeID() uint

func CFArrayGetValueAtIndex

func CFArrayGetValueAtIndex(theArray unsafe.Pointer, idx int) unsafe.Pointer

func CFArrayGetValues

func CFArrayGetValues(theArray unsafe.Pointer, range_ CFRange, values unsafe.Pointer)

func CFArrayInsertValueAtIndex

func CFArrayInsertValueAtIndex(theArray unsafe.Pointer, idx int, value unsafe.Pointer)

func CFArrayRemoveAllValues

func CFArrayRemoveAllValues(theArray unsafe.Pointer)

func CFArrayRemoveValueAtIndex

func CFArrayRemoveValueAtIndex(theArray unsafe.Pointer, idx int)

func CFArrayReplaceValues

func CFArrayReplaceValues(theArray unsafe.Pointer, range_ CFRange, newValues unsafe.Pointer, newCount int)

func CFArraySetValueAtIndex

func CFArraySetValueAtIndex(theArray unsafe.Pointer, idx int, value unsafe.Pointer)

func CFArraySortValues

func CFArraySortValues(theArray unsafe.Pointer, range_ CFRange, comparator unsafe.Pointer, context_ unsafe.Pointer)

func CFAttributedStringBeginEditing

func CFAttributedStringBeginEditing(aStr unsafe.Pointer)

@function CFAttributedStringBeginEditing In cases where attributed string might do a bunch of work to assure self-consistency, CFAttributedStringBeginEditing/CFAttributedStringEndEditing allow disabling that to allow deferring and coalescing any work. It's a good idea to call these around a set of related mutation calls which don't require the string to be in consistent state in between. These calls can be nested.

func CFAttributedStringCreate

func CFAttributedStringCreate(alloc unsafe.Pointer, str unsafe.Pointer, attributes unsafe.Pointer) unsafe.Pointer

@function CFAttributedStringCreate Creates an attributed string with the specified string and attributes (both copied).

func CFAttributedStringCreateCopy

func CFAttributedStringCreateCopy(alloc unsafe.Pointer, aStr unsafe.Pointer) unsafe.Pointer

@function CFAttributedStringCreateCopy Creates an immutable attributed string copy.

func CFAttributedStringCreateMutable

func CFAttributedStringCreateMutable(alloc unsafe.Pointer, maxLength int) unsafe.Pointer

@function CFAttributedStringCreateMutable Creates a mutable empty attributed string. maxLength, if not 0, is a hard bound on the length of the attributed string; exceeding this size limit during any editing operation is a programming error. If 0, there is no limit on the length.

func CFAttributedStringCreateMutableCopy

func CFAttributedStringCreateMutableCopy(alloc unsafe.Pointer, maxLength int, aStr unsafe.Pointer) unsafe.Pointer

@function CFAttributedStringCreateMutableCopy Creates a mutable attributed string copy. maxLength, if not 0, is a hard bound on the length of the attributed string; exceeding this size limit during any editing operation is a programming error. If 0, there is no limit on the length.

func CFAttributedStringCreateWithSubstring

func CFAttributedStringCreateWithSubstring(alloc unsafe.Pointer, aStr unsafe.Pointer, range_ CFRange) unsafe.Pointer

@function CFAttributedStringCreateWithSubstring Creates a sub-attributed string from the specified range. It's a programming error for range to specify characters outside the bounds of aStr.

func CFAttributedStringEndEditing

func CFAttributedStringEndEditing(aStr unsafe.Pointer)

@function CFAttributedStringEndEditing In cases where attributed string might do a bunch of work to assure self-consistency, CFAttributedStringBeginEditing/CFAttributedStringEndEditing allow disabling that to allow deferring and coalescing any work. It's a good idea to call these around a set of related mutation calls which don't require the string to be in consistent state in between. These calls can be nested.

func CFAttributedStringGetAttribute

func CFAttributedStringGetAttribute(aStr unsafe.Pointer, loc int, attrName unsafe.Pointer, effectiveRange *CFRange) unsafe.Pointer

@function CFAttributedStringGetAttribute Returns the value of a single attribute at the specified location. If the specified attribute doesn't exist at the location, returns NULL. If effectiveRange is not NULL, upon return *effectiveRange contains a range over which the exact same attribute value applies. Note that for performance reasons, the returned effectiveRange is not necessarily the maximal range - for that, use CFAttributedStringGetAttributeAndLongestEffectiveRange(). It's a programming error for loc to specify a location outside the bounds of the attributed string.

func CFAttributedStringGetAttributeAndLongestEffectiveRange

func CFAttributedStringGetAttributeAndLongestEffectiveRange(aStr unsafe.Pointer, loc int, attrName unsafe.Pointer, inRange CFRange, longestEffectiveRange *CFRange) unsafe.Pointer

@function CFAttributedStringGetAttributeAndLongestEffectiveRange Returns the value of a single attribute at the specified location. If longestEffectiveRange is not NULL, upon return *longestEffectiveRange contains the maximal range within inRange over which the exact same attribute value applies. The returned range is clipped to inRange. It's a programming error for loc or inRange to specify locations outside the bounds of the attributed string.

func CFAttributedStringGetAttributes

func CFAttributedStringGetAttributes(aStr unsafe.Pointer, loc int, effectiveRange *CFRange) unsafe.Pointer

@function CFAttributedStringGetAttributes Returns the attributes at the specified location. If effectiveRange is not NULL, upon return *effectiveRange contains a range over which the exact same set of attributes apply. Note that for performance reasons, the returned effectiveRange is not necessarily the maximal range - for that, use CFAttributedStringGetAttributesAndLongestEffectiveRange(). It's a programming error for loc to specify a location outside the bounds of the attributed string. Note that the returned attribute dictionary might change in unpredictable ways from under the caller if the attributed string is edited after this call. If you wish to hang on to the dictionary long-term, you should make an actual copy of it rather than just retaining it. Also, no assumptions should be made about the relationship of the actual CFDictionaryRef returned by this call and the dictionary originally used to set the attributes, other than the fact that the values stored in the dictionary will be identical (that is, ==) to those originally specified.

func CFAttributedStringGetAttributesAndLongestEffectiveRange

func CFAttributedStringGetAttributesAndLongestEffectiveRange(aStr unsafe.Pointer, loc int, inRange CFRange, longestEffectiveRange *CFRange) unsafe.Pointer

@function CFAttributedStringGetAttributesAndLongestEffectiveRange Returns the attributes at the specified location. If longestEffectiveRange is not NULL, upon return *longestEffectiveRange contains the maximal range within inRange over which the exact same set of attributes apply. The returned range is clipped to inRange. It's a programming error for loc or inRange to specify locations outside the bounds of the attributed string.

func CFAttributedStringGetBidiLevelsAndResolvedDirections

func CFAttributedStringGetBidiLevelsAndResolvedDirections(attributedString unsafe.Pointer, range_ CFRange, baseDirection int8, bidiLevels *uint8, baseDirections *uint8) bool

@function CFAttributedStringGetBidiLevelsAndResolvedDirections Fills bidiLevels by applying the Unicode Bidi Algorithm (P, X, W, N, and I) to the characters in range. Returns true if the result is not uni-level LTR (in other words, needing further Bidi processing). baseDirection is NSWritingDirection (NSWritingDirectionNatural, NSWritingDirectionLeftToRight, and NSWritingDirectionRightToLeft). Understands NSWritingDirectionAttributeName values.

func CFAttributedStringGetLength

func CFAttributedStringGetLength(aStr unsafe.Pointer) int

@function CFAttributedStringGetLength Returns the length of the attributed string in characters; same as CFStringGetLength(CFAttributedStringGetString(aStr))

func CFAttributedStringGetMutableString

func CFAttributedStringGetMutableString(aStr unsafe.Pointer) unsafe.Pointer

@function CFAttributedStringGetMutableString Gets the string for the attributed string as a mutable string, allowing editing the character contents of the string as if it were an CFMutableString. Attributes corresponding to the edited range are appropriately modified. If, as a result of the edit, new characters are introduced into the string, they inherit the attributes of the first replaced character from range. If no existing characters are replaced by the edit, the new characters inherit the attributes of the character preceding range if it has any, otherwise of the character following range. If the initial string is empty, the attributes for the new characters are also empty. (Note: This function is not yet implemented and will return NULL except for toll-free bridged instances.)

func CFAttributedStringGetStatisticalWritingDirections

func CFAttributedStringGetStatisticalWritingDirections(attributedString unsafe.Pointer, range_ CFRange, baseDirection int8, bidiLevels *uint8, baseDirections *uint8) bool

@function CFAttributedStringGetStatisticalWritingDirections @discussion If baseDirection is not NSWritingDirectionNatural, result comes from CFAttributedStringGetBidiLevelsAndResolvedDirections; otherwise, it fills bidiLevels by applying a statistical approach (a paragraph is RTL if 40% or more of its words are RTL) to the characters in range. Returns true if the result is not uni-level LTR (in other words, needing further Bidi processing). baseDirection is NSWritingDirection (NSWritingDirectionNatural, NSWritingDirectionLeftToRight, and NSWritingDirectionRightToLeft). Understands NSWritingDirectionAttributeName values.

func CFAttributedStringGetString

func CFAttributedStringGetString(aStr unsafe.Pointer) unsafe.Pointer

@function CFAttributedStringGetString Returns the string for the attributed string. For performance reasons, this will often point at the backing store of the attributed string, and it might change if the attributed string is edited. However, this is an implementation detail, and definitely not something that should be counted on.

func CFAttributedStringGetTypeID

func CFAttributedStringGetTypeID() uint

@function CFAttributedStringGetTypeID Returns the type identifier of all CFAttributedString instances.

func CFAttributedStringRemoveAttribute

func CFAttributedStringRemoveAttribute(aStr unsafe.Pointer, range_ CFRange, attrName unsafe.Pointer)

@function CFAttributedStringRemoveAttribute Removes the value of a single attribute over the specified range, which should be valid. It's OK for the attribute not the exist over the specified range.

func CFAttributedStringReplaceAttributedString

func CFAttributedStringReplaceAttributedString(aStr unsafe.Pointer, range_ CFRange, replacement unsafe.Pointer)

@function CFAttributedStringReplaceAttributedString Replaces the attributed substring over the specified range with the attributed string specified in replacement. range should be valid. To delete a range of the attributed string, call CFAttributedStringReplaceString() with empty string and specified range.

func CFAttributedStringReplaceString

func CFAttributedStringReplaceString(aStr unsafe.Pointer, range_ CFRange, replacement unsafe.Pointer)

@function CFAttributedStringReplaceString Modifies the string for the attributed string, much like CFStringReplace(). It's an error for range to specify characters outside the bounds of aStr. (Note: This function is a convenience on CFAttributedStringGetMutableString(); however, until CFAttributedStringGetMutableString() is implemented, it remains the only way to edit the string of the attributed string.)

func CFAttributedStringSetAttribute

func CFAttributedStringSetAttribute(aStr unsafe.Pointer, range_ CFRange, attrName unsafe.Pointer, value unsafe.Pointer)

@function CFAttributedStringSetAttribute Sets the value of a single attribute over the specified range, which should be valid. value should not be NULL.

func CFAttributedStringSetAttributes

func CFAttributedStringSetAttributes(aStr unsafe.Pointer, range_ CFRange, replacement unsafe.Pointer, clearOtherAttributes uint8)

@function CFAttributedStringSetAttributes Sets the value of multiple attributes over the specified range, which should be valid. If clearOtherAttributes is false, existing attributes (which aren't being replaced) are left alone; otherwise they are cleared. The dictionary should be setup for "usual" CF type usage --- CFString keys, and arbitrary CFType values. Note that after this call, further mutations to the replacement dictionary argument by the caller will not affect the contents of the attributed string.

func CFAutorelease

func CFAutorelease(arg unsafe.Pointer) unsafe.Pointer

func CFBagAddValue

func CFBagAddValue(theBag unsafe.Pointer, value unsafe.Pointer)

func CFBagApplyFunction

func CFBagApplyFunction(theBag unsafe.Pointer, applier unsafe.Pointer, context_ unsafe.Pointer)

func CFBagContainsValue

func CFBagContainsValue(theBag unsafe.Pointer, value unsafe.Pointer) uint8

func CFBagCreate

func CFBagCreate(allocator unsafe.Pointer, values unsafe.Pointer, numValues int, callBacks *CFBagCallBacks) unsafe.Pointer

func CFBagCreateCopy

func CFBagCreateCopy(allocator unsafe.Pointer, theBag unsafe.Pointer) unsafe.Pointer

func CFBagCreateMutable

func CFBagCreateMutable(allocator unsafe.Pointer, capacity int, callBacks *CFBagCallBacks) unsafe.Pointer

func CFBagCreateMutableCopy

func CFBagCreateMutableCopy(allocator unsafe.Pointer, capacity int, theBag unsafe.Pointer) unsafe.Pointer

func CFBagGetCount

func CFBagGetCount(theBag unsafe.Pointer) int

func CFBagGetCountOfValue

func CFBagGetCountOfValue(theBag unsafe.Pointer, value unsafe.Pointer) int

func CFBagGetTypeID

func CFBagGetTypeID() uint

func CFBagGetValue

func CFBagGetValue(theBag unsafe.Pointer, value unsafe.Pointer) unsafe.Pointer

func CFBagGetValueIfPresent

func CFBagGetValueIfPresent(theBag unsafe.Pointer, candidate unsafe.Pointer, value unsafe.Pointer) uint8

func CFBagGetValues

func CFBagGetValues(theBag unsafe.Pointer, values unsafe.Pointer)

func CFBagRemoveAllValues

func CFBagRemoveAllValues(theBag unsafe.Pointer)

func CFBagRemoveValue

func CFBagRemoveValue(theBag unsafe.Pointer, value unsafe.Pointer)

func CFBagReplaceValue

func CFBagReplaceValue(theBag unsafe.Pointer, value unsafe.Pointer)

func CFBagSetValue

func CFBagSetValue(theBag unsafe.Pointer, value unsafe.Pointer)

func CFBinaryHeapAddValue

func CFBinaryHeapAddValue(heap unsafe.Pointer, value unsafe.Pointer)

@function CFBinaryHeapAddValue Adds the value to the binary heap. @param heap The binary heap to which the value is to be added. If this parameter is not a valid mutable CFBinaryHeap, the behavior is undefined. @param value The value to add to the binary heap. The value is retained by the binary heap using the retain callback provided when the binary heap was created. If the value is not of the sort expected by the retain callback, the behavior is undefined.

func CFBinaryHeapApplyFunction

func CFBinaryHeapApplyFunction(heap unsafe.Pointer, applier unsafe.Pointer, context_ unsafe.Pointer)

@function CFBinaryHeapApplyFunction Calls a function once for each value in the binary heap. @param heap The binary heap to be operated upon. If this parameter is not a valid CFBinaryHeap, the behavior is undefined. @param applier The callback function to call once for each value in the given binary heap. If this parameter is not a pointer to a function of the correct prototype, the behavior is undefined. If there are values in the binary heap which the applier function does not expect or cannot properly apply to, the behavior is undefined. @param context A pointer-sized user-defined value, which is passed as the second parameter to the applier function, but is otherwise unused by this function. If the context is not what is expected by the applier function, the behavior is undefined.

func CFBinaryHeapContainsValue

func CFBinaryHeapContainsValue(heap unsafe.Pointer, value unsafe.Pointer) uint8

@function CFBinaryHeapContainsValue Reports whether or not the value is in the binary heap. @param heap The binary heap to be searched. If this parameter is not a valid CFBinaryHeap, the behavior is undefined. @param value The value for which to find matches in the binary heap. The compare() callback provided when the binary heap was created is used to compare. If the compare() callback was NULL, pointer equality (in C, ==) is used. If value, or any of the values in the binary heap, are not understood by the compare() callback, the behavior is undefined. @result true, if the value is in the specified binary heap, otherwise false.

func CFBinaryHeapCreate

func CFBinaryHeapCreate(allocator unsafe.Pointer, capacity int, callBacks *CFBinaryHeapCallBacks, compareContext *CFBinaryHeapCompareContext) unsafe.Pointer

@function CFBinaryHeapCreate Creates a new mutable binary heap with the given values. @param allocator The CFAllocator which should be used to allocate memory for the binary heap and its storage for values. This parameter may be NULL in which case the current default CFAllocator is used. If this reference is not a valid CFAllocator, the behavior is undefined. @param capacity A hint about the number of values that will be held by the CFBinaryHeap. Pass 0 for no hint. The implementation may ignore this hint, or may use it to optimize various operations. A heap's actual capacity is only limited by address space and available memory constraints). If this parameter is negative, the behavior is undefined. @param callBacks A pointer to a CFBinaryHeapCallBacks structure initialized with the callbacks for the binary heap to use on each value in the binary heap. A copy of the contents of the callbacks structure is made, so that a pointer to a structure on the stack can be passed in, or can be reused for multiple binary heap creations. If the version field of this callbacks structure is not one of the defined ones for CFBinaryHeap, the behavior is undefined. The retain field may be NULL, in which case the CFBinaryHeap will do nothing to add a retain to values as they are put into the binary heap. The release field may be NULL, in which case the CFBinaryHeap will do nothing to remove the binary heap's retain (if any) on the values when the heap is destroyed or a key-value pair is removed. If the copyDescription field is NULL, the binary heap will create a simple description for a value. If the equal field is NULL, the binary heap will use pointer equality to test for equality of values. This callbacks parameter itself may be NULL, which is treated as if a valid structure of version 0 with all fields NULL had been passed in. Otherwise, if any of the fields are not valid pointers to functions of the correct type, or this parameter is not a valid pointer to a CFBinaryHeapCallBacks callbacks structure, the behavior is undefined. If any of the values put into the binary heap is not one understood by one of the callback functions the behavior when that callback function is used is undefined. @param compareContext A pointer to a CFBinaryHeapCompareContext structure. @result A reference to the new CFBinaryHeap.

func CFBinaryHeapCreateCopy

func CFBinaryHeapCreateCopy(allocator unsafe.Pointer, capacity int, heap unsafe.Pointer) unsafe.Pointer

@function CFBinaryHeapCreateCopy Creates a new mutable binary heap with the values from the given binary heap. @param allocator The CFAllocator which should be used to allocate memory for the binary heap and its storage for values. This parameter may be NULL in which case the current default CFAllocator is used. If this reference is not a valid CFAllocator, the behavior is undefined. @param capacity A hint about the number of values that will be held by the CFBinaryHeap. Pass 0 for no hint. The implementation may ignore this hint, or may use it to optimize various operations. A heap's actual capacity is only limited by address space and available memory constraints). This parameter must be greater than or equal to the count of the heap which is to be copied, or the behavior is undefined. If this parameter is negative, the behavior is undefined. @param heap The binary heap which is to be copied. The values from the binary heap are copied as pointers into the new binary heap (that is, the values themselves are copied, not that which the values point to, if anything). However, the values are also retained by the new binary heap. The count of the new binary will be the same as the given binary heap. The new binary heap uses the same callbacks as the binary heap to be copied. If this parameter is not a valid CFBinaryHeap, the behavior is undefined. @result A reference to the new mutable binary heap.

func CFBinaryHeapGetCount

func CFBinaryHeapGetCount(heap unsafe.Pointer) int

@function CFBinaryHeapGetCount Returns the number of values currently in the binary heap. @param heap The binary heap to be queried. If this parameter is not a valid CFBinaryHeap, the behavior is undefined. @result The number of values in the binary heap.

func CFBinaryHeapGetCountOfValue

func CFBinaryHeapGetCountOfValue(heap unsafe.Pointer, value unsafe.Pointer) int

@function CFBinaryHeapGetCountOfValue Counts the number of times the given value occurs in the binary heap. @param heap The binary heap to be searched. If this parameter is not a valid CFBinaryHeap, the behavior is undefined. @param value The value for which to find matches in the binary heap. The compare() callback provided when the binary heap was created is used to compare. If the compare() callback was NULL, pointer equality (in C, ==) is used. If value, or any of the values in the binary heap, are not understood by the compare() callback, the behavior is undefined. @result The number of times the given value occurs in the binary heap.

func CFBinaryHeapGetMinimum

func CFBinaryHeapGetMinimum(heap unsafe.Pointer) unsafe.Pointer

@function CFBinaryHeapGetMinimum Returns the minimum value is in the binary heap. If the heap contains several equal minimum values, any one may be returned. @param heap The binary heap to be searched. If this parameter is not a valid CFBinaryHeap, the behavior is undefined. @result A reference to the minimum value in the binary heap, or NULL if the binary heap contains no values.

func CFBinaryHeapGetMinimumIfPresent

func CFBinaryHeapGetMinimumIfPresent(heap unsafe.Pointer, value unsafe.Pointer) uint8

@function CFBinaryHeapGetMinimumIfPresent Returns the minimum value is in the binary heap, if present. If the heap contains several equal minimum values, any one may be returned. @param heap The binary heap to be searched. If this parameter is not a valid CFBinaryHeap, the behavior is undefined. @param value A C pointer to pointer-sized storage to be filled with the minimum value in the binary heap. If this value is not a valid C pointer to a pointer-sized block of storage, the result is undefined. If the result of the function is false, the value stored at this address is undefined. @result true, if a minimum value was found in the specified binary heap, otherwise false.

func CFBinaryHeapGetTypeID

func CFBinaryHeapGetTypeID() uint

@function CFBinaryHeapGetTypeID Returns the type identifier of all CFBinaryHeap instances.

func CFBinaryHeapGetValues

func CFBinaryHeapGetValues(heap unsafe.Pointer, values unsafe.Pointer)

@function CFBinaryHeapGetValues Fills the buffer with values from the binary heap. @param heap The binary heap to be queried. If this parameter is not a valid CFBinaryHeap, the behavior is undefined. @param values A C array of pointer-sized values to be filled with values from the binary heap. The values in the C array are ordered from least to greatest. If this parameter is not a valid pointer to a C array of at least CFBinaryHeapGetCount() pointers, the behavior is undefined.

func CFBinaryHeapRemoveAllValues

func CFBinaryHeapRemoveAllValues(heap unsafe.Pointer)

@function CFBinaryHeapRemoveAllValues Removes all the values from the binary heap, making it empty. @param heap The binary heap from which all of the values are to be removed. If this parameter is not a valid mutable CFBinaryHeap, the behavior is undefined.

func CFBinaryHeapRemoveMinimumValue

func CFBinaryHeapRemoveMinimumValue(heap unsafe.Pointer)

@function CFBinaryHeapRemoveMinimumValue Removes the minimum value from the binary heap. @param heap The binary heap from which the minimum value is to be removed. If this parameter is not a valid mutable CFBinaryHeap, the behavior is undefined.

func CFBitVectorContainsBit

func CFBitVectorContainsBit(bv unsafe.Pointer, range_ CFRange, value uint) uint8

func CFBitVectorCreate

func CFBitVectorCreate(allocator unsafe.Pointer, bytes_ *uint8, numBits int) unsafe.Pointer

func CFBitVectorCreateCopy

func CFBitVectorCreateCopy(allocator unsafe.Pointer, bv unsafe.Pointer) unsafe.Pointer

func CFBitVectorCreateMutable

func CFBitVectorCreateMutable(allocator unsafe.Pointer, capacity int) unsafe.Pointer

func CFBitVectorCreateMutableCopy

func CFBitVectorCreateMutableCopy(allocator unsafe.Pointer, capacity int, bv unsafe.Pointer) unsafe.Pointer

func CFBitVectorFlipBitAtIndex

func CFBitVectorFlipBitAtIndex(bv unsafe.Pointer, idx int)

func CFBitVectorFlipBits

func CFBitVectorFlipBits(bv unsafe.Pointer, range_ CFRange)

func CFBitVectorGetBitAtIndex

func CFBitVectorGetBitAtIndex(bv unsafe.Pointer, idx int) uint

func CFBitVectorGetBits

func CFBitVectorGetBits(bv unsafe.Pointer, range_ CFRange, bytes_ *uint8)

func CFBitVectorGetCount

func CFBitVectorGetCount(bv unsafe.Pointer) int

func CFBitVectorGetCountOfBit

func CFBitVectorGetCountOfBit(bv unsafe.Pointer, range_ CFRange, value uint) int

func CFBitVectorGetFirstIndexOfBit

func CFBitVectorGetFirstIndexOfBit(bv unsafe.Pointer, range_ CFRange, value uint) int

func CFBitVectorGetLastIndexOfBit

func CFBitVectorGetLastIndexOfBit(bv unsafe.Pointer, range_ CFRange, value uint) int

func CFBitVectorGetTypeID

func CFBitVectorGetTypeID() uint

func CFBitVectorSetAllBits

func CFBitVectorSetAllBits(bv unsafe.Pointer, value uint)

func CFBitVectorSetBitAtIndex

func CFBitVectorSetBitAtIndex(bv unsafe.Pointer, idx int, value uint)

func CFBitVectorSetBits

func CFBitVectorSetBits(bv unsafe.Pointer, range_ CFRange, value uint)

func CFBitVectorSetCount

func CFBitVectorSetCount(bv unsafe.Pointer, count int)

func CFBooleanGetTypeID

func CFBooleanGetTypeID() uint

func CFBooleanGetValue

func CFBooleanGetValue(boolean unsafe.Pointer) uint8

func CFBundleCloseBundleResourceMap deprecated

func CFBundleCloseBundleResourceMap(bundle unsafe.Pointer, refNum int)

Deprecated: The Carbon Resource Manager is deprecated. This should only be used to access Resource Manager-style resources in old bundles.

func CFBundleCopyAuxiliaryExecutableURL

func CFBundleCopyAuxiliaryExecutableURL(bundle unsafe.Pointer, executableName unsafe.Pointer) unsafe.Pointer

func CFBundleCopyBuiltInPlugInsURL

func CFBundleCopyBuiltInPlugInsURL(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopyBundleLocalizations

func CFBundleCopyBundleLocalizations(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopyBundleURL

func CFBundleCopyBundleURL(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopyExecutableArchitectures

func CFBundleCopyExecutableArchitectures(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopyExecutableArchitecturesForURL

func CFBundleCopyExecutableArchitecturesForURL(url unsafe.Pointer) unsafe.Pointer

func CFBundleCopyExecutableURL

func CFBundleCopyExecutableURL(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopyInfoDictionaryForURL

func CFBundleCopyInfoDictionaryForURL(url unsafe.Pointer) unsafe.Pointer

func CFBundleCopyInfoDictionaryInDirectory

func CFBundleCopyInfoDictionaryInDirectory(bundleURL unsafe.Pointer) unsafe.Pointer

func CFBundleCopyLocalizationsForPreferences

func CFBundleCopyLocalizationsForPreferences(locArray unsafe.Pointer, prefArray unsafe.Pointer) unsafe.Pointer

func CFBundleCopyLocalizationsForURL

func CFBundleCopyLocalizationsForURL(url unsafe.Pointer) unsafe.Pointer

func CFBundleCopyLocalizedString

func CFBundleCopyLocalizedString(bundle unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer, tableName unsafe.Pointer) unsafe.Pointer

func CFBundleCopyLocalizedStringForLocalizations

func CFBundleCopyLocalizedStringForLocalizations(bundle unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer, tableName unsafe.Pointer, localizations unsafe.Pointer) unsafe.Pointer

func CFBundleCopyPreferredLocalizationsFromArray

func CFBundleCopyPreferredLocalizationsFromArray(locArray unsafe.Pointer) unsafe.Pointer

func CFBundleCopyPrivateFrameworksURL

func CFBundleCopyPrivateFrameworksURL(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopyResourceURL

func CFBundleCopyResourceURL(bundle unsafe.Pointer, resourceName unsafe.Pointer, resourceType unsafe.Pointer, subDirName unsafe.Pointer) unsafe.Pointer

func CFBundleCopyResourceURLForLocalization

func CFBundleCopyResourceURLForLocalization(bundle unsafe.Pointer, resourceName unsafe.Pointer, resourceType unsafe.Pointer, subDirName unsafe.Pointer, localizationName unsafe.Pointer) unsafe.Pointer

func CFBundleCopyResourceURLInDirectory

func CFBundleCopyResourceURLInDirectory(bundleURL unsafe.Pointer, resourceName unsafe.Pointer, resourceType unsafe.Pointer, subDirName unsafe.Pointer) unsafe.Pointer

func CFBundleCopyResourceURLsOfType

func CFBundleCopyResourceURLsOfType(bundle unsafe.Pointer, resourceType unsafe.Pointer, subDirName unsafe.Pointer) unsafe.Pointer

func CFBundleCopyResourceURLsOfTypeForLocalization

func CFBundleCopyResourceURLsOfTypeForLocalization(bundle unsafe.Pointer, resourceType unsafe.Pointer, subDirName unsafe.Pointer, localizationName unsafe.Pointer) unsafe.Pointer

func CFBundleCopyResourceURLsOfTypeInDirectory

func CFBundleCopyResourceURLsOfTypeInDirectory(bundleURL unsafe.Pointer, resourceType unsafe.Pointer, subDirName unsafe.Pointer) unsafe.Pointer

func CFBundleCopyResourcesDirectoryURL

func CFBundleCopyResourcesDirectoryURL(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopySharedFrameworksURL

func CFBundleCopySharedFrameworksURL(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopySharedSupportURL

func CFBundleCopySharedSupportURL(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCopySupportFilesDirectoryURL

func CFBundleCopySupportFilesDirectoryURL(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleCreate

func CFBundleCreate(allocator unsafe.Pointer, bundleURL unsafe.Pointer) unsafe.Pointer

func CFBundleCreateBundlesFromDirectory

func CFBundleCreateBundlesFromDirectory(allocator unsafe.Pointer, directoryURL unsafe.Pointer, bundleType unsafe.Pointer) unsafe.Pointer

func CFBundleGetAllBundles

func CFBundleGetAllBundles() unsafe.Pointer

func CFBundleGetBundleWithIdentifier

func CFBundleGetBundleWithIdentifier(bundleID unsafe.Pointer) unsafe.Pointer

func CFBundleGetDataPointerForName

func CFBundleGetDataPointerForName(bundle unsafe.Pointer, symbolName unsafe.Pointer) unsafe.Pointer

func CFBundleGetDataPointersForNames

func CFBundleGetDataPointersForNames(bundle unsafe.Pointer, symbolNames unsafe.Pointer, stbl unsafe.Pointer)

func CFBundleGetDevelopmentRegion

func CFBundleGetDevelopmentRegion(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleGetFunctionPointerForName

func CFBundleGetFunctionPointerForName(bundle unsafe.Pointer, functionName unsafe.Pointer) unsafe.Pointer

func CFBundleGetFunctionPointersForNames

func CFBundleGetFunctionPointersForNames(bundle unsafe.Pointer, functionNames unsafe.Pointer, ftbl unsafe.Pointer)

func CFBundleGetIdentifier

func CFBundleGetIdentifier(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleGetInfoDictionary

func CFBundleGetInfoDictionary(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleGetLocalInfoDictionary

func CFBundleGetLocalInfoDictionary(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleGetMainBundle

func CFBundleGetMainBundle() unsafe.Pointer

func CFBundleGetPackageInfo

func CFBundleGetPackageInfo(bundle unsafe.Pointer, packageType *uint, packageCreator *uint)

func CFBundleGetPackageInfoInDirectory

func CFBundleGetPackageInfoInDirectory(url unsafe.Pointer, packageType *uint, packageCreator *uint) uint8

func CFBundleGetPlugIn

func CFBundleGetPlugIn(bundle unsafe.Pointer) unsafe.Pointer

func CFBundleGetTypeID

func CFBundleGetTypeID() uint

func CFBundleGetValueForInfoDictionaryKey

func CFBundleGetValueForInfoDictionaryKey(bundle unsafe.Pointer, key unsafe.Pointer) unsafe.Pointer

func CFBundleGetVersionNumber

func CFBundleGetVersionNumber(bundle unsafe.Pointer) uint

func CFBundleIsArchitectureLoadable

func CFBundleIsArchitectureLoadable(arch int) uint8

func CFBundleIsExecutableLoadable

func CFBundleIsExecutableLoadable(bundle unsafe.Pointer) uint8

func CFBundleIsExecutableLoadableForURL

func CFBundleIsExecutableLoadableForURL(url unsafe.Pointer) uint8

func CFBundleIsExecutableLoaded

func CFBundleIsExecutableLoaded(bundle unsafe.Pointer) uint8

func CFBundleLoadExecutable

func CFBundleLoadExecutable(bundle unsafe.Pointer) uint8

func CFBundleLoadExecutableAndReturnError

func CFBundleLoadExecutableAndReturnError(bundle unsafe.Pointer, error_ unsafe.Pointer) uint8

func CFBundleOpenBundleResourceFiles deprecated

func CFBundleOpenBundleResourceFiles(bundle unsafe.Pointer, refNum *int, localizedRefNum *int) int

Deprecated: The Carbon Resource Manager is deprecated. This should only be used to access Resource Manager-style resources in old bundles.

func CFBundleOpenBundleResourceMap deprecated

func CFBundleOpenBundleResourceMap(bundle unsafe.Pointer) int

Deprecated: The Carbon Resource Manager is deprecated. This should only be used to access Resource Manager-style resources in old bundles.

func CFBundlePreflightExecutable

func CFBundlePreflightExecutable(bundle unsafe.Pointer, error_ unsafe.Pointer) uint8

func CFBundleUnloadExecutable

func CFBundleUnloadExecutable(bundle unsafe.Pointer)

func CFByteOrderGetCurrent

func CFByteOrderGetCurrent() int

func CFCalendarCopyCurrent

func CFCalendarCopyCurrent() unsafe.Pointer

func CFCalendarCopyLocale

func CFCalendarCopyLocale(calendar unsafe.Pointer) unsafe.Pointer

func CFCalendarCopyTimeZone

func CFCalendarCopyTimeZone(calendar unsafe.Pointer) unsafe.Pointer

func CFCalendarCreateWithIdentifier

func CFCalendarCreateWithIdentifier(allocator unsafe.Pointer, identifier unsafe.Pointer) unsafe.Pointer

func CFCalendarGetFirstWeekday

func CFCalendarGetFirstWeekday(calendar unsafe.Pointer) int

func CFCalendarGetIdentifier

func CFCalendarGetIdentifier(calendar unsafe.Pointer) unsafe.Pointer

func CFCalendarGetMinimumDaysInFirstWeek

func CFCalendarGetMinimumDaysInFirstWeek(calendar unsafe.Pointer) int

func CFCalendarGetOrdinalityOfUnit

func CFCalendarGetOrdinalityOfUnit(calendar unsafe.Pointer, smallerUnit CFCalendarUnit, biggerUnit CFCalendarUnit, at float64) int

func CFCalendarGetTimeRangeOfUnit

func CFCalendarGetTimeRangeOfUnit(calendar unsafe.Pointer, unit CFCalendarUnit, at float64, startp *float64, tip *float64) uint8

func CFCalendarGetTypeID

func CFCalendarGetTypeID() uint

func CFCalendarSetFirstWeekday

func CFCalendarSetFirstWeekday(calendar unsafe.Pointer, wkdy int)

func CFCalendarSetLocale

func CFCalendarSetLocale(calendar unsafe.Pointer, locale unsafe.Pointer)

func CFCalendarSetMinimumDaysInFirstWeek

func CFCalendarSetMinimumDaysInFirstWeek(calendar unsafe.Pointer, mwd int)

func CFCalendarSetTimeZone

func CFCalendarSetTimeZone(calendar unsafe.Pointer, tz unsafe.Pointer)

func CFCharacterSetAddCharactersInRange

func CFCharacterSetAddCharactersInRange(theSet unsafe.Pointer, theRange CFRange)

func CFCharacterSetAddCharactersInString

func CFCharacterSetAddCharactersInString(theSet unsafe.Pointer, theString unsafe.Pointer)

func CFCharacterSetCreateBitmapRepresentation

func CFCharacterSetCreateBitmapRepresentation(alloc unsafe.Pointer, theSet unsafe.Pointer) unsafe.Pointer

func CFCharacterSetCreateCopy

func CFCharacterSetCreateCopy(alloc unsafe.Pointer, theSet unsafe.Pointer) unsafe.Pointer

func CFCharacterSetCreateInvertedSet

func CFCharacterSetCreateInvertedSet(alloc unsafe.Pointer, theSet unsafe.Pointer) unsafe.Pointer

@function CFCharacterSetCreateInvertedSet Creates a new immutable character set that is the invert of the specified character set. @param alloc The CFAllocator which should be used to allocate memory for the array and its storage for values. This parameter may be NULL in which case the current default CFAllocator is used. If this reference is not a valid CFAllocator, the behavior is undefined. @param theSet The CFCharacterSet which is to be inverted. If this parameter is not a valid CFCharacterSet, the behavior is undefined. @result A reference to the new immutable CFCharacterSet.

func CFCharacterSetCreateMutable

func CFCharacterSetCreateMutable(alloc unsafe.Pointer) unsafe.Pointer

func CFCharacterSetCreateMutableCopy

func CFCharacterSetCreateMutableCopy(alloc unsafe.Pointer, theSet unsafe.Pointer) unsafe.Pointer

func CFCharacterSetCreateWithBitmapRepresentation

func CFCharacterSetCreateWithBitmapRepresentation(alloc unsafe.Pointer, theData unsafe.Pointer) unsafe.Pointer

func CFCharacterSetCreateWithCharactersInRange

func CFCharacterSetCreateWithCharactersInRange(alloc unsafe.Pointer, theRange CFRange) unsafe.Pointer

func CFCharacterSetCreateWithCharactersInString

func CFCharacterSetCreateWithCharactersInString(alloc unsafe.Pointer, theString unsafe.Pointer) unsafe.Pointer

func CFCharacterSetGetPredefined

func CFCharacterSetGetPredefined(theSetIdentifier CFCharacterSetPredefinedSet) unsafe.Pointer

func CFCharacterSetGetTypeID

func CFCharacterSetGetTypeID() uint

func CFCharacterSetHasMemberInPlane

func CFCharacterSetHasMemberInPlane(theSet unsafe.Pointer, thePlane int) uint8

@function CFCharacterSetHasMemberInPlane Reports whether or not the character set contains at least one member character in the specified plane. @param theSet The character set to be checked for the membership. If this parameter is not a valid CFCharacterSet, the behavior is undefined. @param thePlane The plane number to be checked for the membership. The valid value range is from 0 to 16. If the value is outside of the valid plane number range, the behavior is undefined.

func CFCharacterSetIntersect

func CFCharacterSetIntersect(theSet unsafe.Pointer, theOtherSet unsafe.Pointer)

func CFCharacterSetInvert

func CFCharacterSetInvert(theSet unsafe.Pointer)

func CFCharacterSetIsCharacterMember

func CFCharacterSetIsCharacterMember(theSet unsafe.Pointer, theChar uint16) uint8

func CFCharacterSetIsLongCharacterMember

func CFCharacterSetIsLongCharacterMember(theSet unsafe.Pointer, theChar uint) uint8

@function CFCharacterSetIsLongCharacterMember Reports whether or not the UTF-32 character is in the character set. @param theSet The character set to be searched. If this parameter is not a valid CFCharacterSet, the behavior is undefined. @param theChar The UTF-32 character for which to test against the character set. @result true, if the value is in the character set, otherwise false.

func CFCharacterSetIsSupersetOfSet

func CFCharacterSetIsSupersetOfSet(theSet unsafe.Pointer, theOtherset unsafe.Pointer) uint8

@function CFCharacterSetIsSupersetOfSet Reports whether or not the character set is a superset of the character set specified as the second parameter. @param theSet The character set to be checked for the membership of theOtherSet. If this parameter is not a valid CFCharacterSet, the behavior is undefined. @param theOtherset The character set to be checked whether or not it is a subset of theSet. If this parameter is not a valid CFCharacterSet, the behavior is undefined.

func CFCharacterSetRemoveCharactersInRange

func CFCharacterSetRemoveCharactersInRange(theSet unsafe.Pointer, theRange CFRange)

func CFCharacterSetRemoveCharactersInString

func CFCharacterSetRemoveCharactersInString(theSet unsafe.Pointer, theString unsafe.Pointer)

func CFCharacterSetUnion

func CFCharacterSetUnion(theSet unsafe.Pointer, theOtherSet unsafe.Pointer)

func CFConvertDoubleSwappedToHost

func CFConvertDoubleSwappedToHost(arg CFSwappedFloat64) float64

func CFConvertFloat32SwappedToHost

func CFConvertFloat32SwappedToHost(arg CFSwappedFloat32) float32

func CFConvertFloat64SwappedToHost

func CFConvertFloat64SwappedToHost(arg CFSwappedFloat64) float64

func CFConvertFloatSwappedToHost

func CFConvertFloatSwappedToHost(arg CFSwappedFloat32) float32

func CFCopyDescription

func CFCopyDescription(cf unsafe.Pointer) unsafe.Pointer

func CFCopyTypeIDDescription

func CFCopyTypeIDDescription(type_id uint) unsafe.Pointer

func CFDataAppendBytes

func CFDataAppendBytes(theData unsafe.Pointer, bytes_ *uint8, length int)

func CFDataCreate

func CFDataCreate(allocator unsafe.Pointer, bytes_ *uint8, length int) unsafe.Pointer

func CFDataCreateCopy

func CFDataCreateCopy(allocator unsafe.Pointer, theData unsafe.Pointer) unsafe.Pointer

func CFDataCreateMutable

func CFDataCreateMutable(allocator unsafe.Pointer, capacity int) unsafe.Pointer

func CFDataCreateMutableCopy

func CFDataCreateMutableCopy(allocator unsafe.Pointer, capacity int, theData unsafe.Pointer) unsafe.Pointer

func CFDataCreateWithBytesNoCopy

func CFDataCreateWithBytesNoCopy(allocator unsafe.Pointer, bytes_ *uint8, length int, bytesDeallocator unsafe.Pointer) unsafe.Pointer

func CFDataDeleteBytes

func CFDataDeleteBytes(theData unsafe.Pointer, range_ CFRange)

func CFDataGetBytePtr

func CFDataGetBytePtr(theData unsafe.Pointer) *uint8

func CFDataGetBytes

func CFDataGetBytes(theData unsafe.Pointer, range_ CFRange, buffer *uint8)

func CFDataGetLength

func CFDataGetLength(theData unsafe.Pointer) int

func CFDataGetMutableBytePtr

func CFDataGetMutableBytePtr(theData unsafe.Pointer) *uint8

func CFDataGetTypeID

func CFDataGetTypeID() uint

func CFDataIncreaseLength

func CFDataIncreaseLength(theData unsafe.Pointer, extraLength int)

func CFDataReplaceBytes

func CFDataReplaceBytes(theData unsafe.Pointer, range_ CFRange, newBytes *uint8, newLength int)

func CFDataSetLength

func CFDataSetLength(theData unsafe.Pointer, length int)

func CFDateCreate

func CFDateCreate(allocator unsafe.Pointer, at float64) unsafe.Pointer

func CFDateFormatterCopyProperty

func CFDateFormatterCopyProperty(formatter unsafe.Pointer, key unsafe.Pointer) unsafe.Pointer

func CFDateFormatterCreate

func CFDateFormatterCreate(allocator unsafe.Pointer, locale unsafe.Pointer, dateStyle CFDateFormatterStyle, timeStyle CFDateFormatterStyle) unsafe.Pointer

func CFDateFormatterCreateDateFormatFromTemplate

func CFDateFormatterCreateDateFormatFromTemplate(allocator unsafe.Pointer, tmplate unsafe.Pointer, options uint, locale unsafe.Pointer) unsafe.Pointer

func CFDateFormatterCreateDateFromString

func CFDateFormatterCreateDateFromString(allocator unsafe.Pointer, formatter unsafe.Pointer, string_ unsafe.Pointer, rangep *CFRange) unsafe.Pointer

func CFDateFormatterCreateISO8601Formatter

func CFDateFormatterCreateISO8601Formatter(allocator unsafe.Pointer, formatOptions CFISO8601DateFormatOptions) unsafe.Pointer

func CFDateFormatterCreateStringWithAbsoluteTime

func CFDateFormatterCreateStringWithAbsoluteTime(allocator unsafe.Pointer, formatter unsafe.Pointer, at float64) unsafe.Pointer

func CFDateFormatterCreateStringWithDate

func CFDateFormatterCreateStringWithDate(allocator unsafe.Pointer, formatter unsafe.Pointer, date unsafe.Pointer) unsafe.Pointer

func CFDateFormatterGetAbsoluteTimeFromString

func CFDateFormatterGetAbsoluteTimeFromString(formatter unsafe.Pointer, string_ unsafe.Pointer, rangep *CFRange, atp *float64) uint8

func CFDateFormatterGetFormat

func CFDateFormatterGetFormat(formatter unsafe.Pointer) unsafe.Pointer

func CFDateFormatterGetLocale

func CFDateFormatterGetLocale(formatter unsafe.Pointer) unsafe.Pointer

func CFDateFormatterGetTypeID

func CFDateFormatterGetTypeID() uint

func CFDateFormatterSetFormat

func CFDateFormatterSetFormat(formatter unsafe.Pointer, formatString unsafe.Pointer)

func CFDateFormatterSetProperty

func CFDateFormatterSetProperty(formatter unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer)

func CFDateGetAbsoluteTime

func CFDateGetAbsoluteTime(theDate unsafe.Pointer) float64

func CFDateGetTimeIntervalSinceDate

func CFDateGetTimeIntervalSinceDate(theDate unsafe.Pointer, otherDate unsafe.Pointer) float64

func CFDateGetTypeID

func CFDateGetTypeID() uint

func CFDictionaryAddValue

func CFDictionaryAddValue(theDict unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer)

func CFDictionaryApplyFunction

func CFDictionaryApplyFunction(theDict unsafe.Pointer, applier unsafe.Pointer, context_ unsafe.Pointer)

func CFDictionaryContainsKey

func CFDictionaryContainsKey(theDict unsafe.Pointer, key unsafe.Pointer) uint8

func CFDictionaryContainsValue

func CFDictionaryContainsValue(theDict unsafe.Pointer, value unsafe.Pointer) uint8

func CFDictionaryCreate

func CFDictionaryCreate(allocator unsafe.Pointer, keys unsafe.Pointer, values unsafe.Pointer, numValues int, keyCallBacks *CFDictionaryKeyCallBacks, valueCallBacks *CFDictionaryValueCallBacks) unsafe.Pointer

func CFDictionaryCreateCopy

func CFDictionaryCreateCopy(allocator unsafe.Pointer, theDict unsafe.Pointer) unsafe.Pointer

func CFDictionaryCreateMutable

func CFDictionaryCreateMutable(allocator unsafe.Pointer, capacity int, keyCallBacks *CFDictionaryKeyCallBacks, valueCallBacks *CFDictionaryValueCallBacks) unsafe.Pointer

func CFDictionaryCreateMutableCopy

func CFDictionaryCreateMutableCopy(allocator unsafe.Pointer, capacity int, theDict unsafe.Pointer) unsafe.Pointer

func CFDictionaryGetCount

func CFDictionaryGetCount(theDict unsafe.Pointer) int

func CFDictionaryGetCountOfKey

func CFDictionaryGetCountOfKey(theDict unsafe.Pointer, key unsafe.Pointer) int

func CFDictionaryGetCountOfValue

func CFDictionaryGetCountOfValue(theDict unsafe.Pointer, value unsafe.Pointer) int

func CFDictionaryGetKeysAndValues

func CFDictionaryGetKeysAndValues(theDict unsafe.Pointer, keys unsafe.Pointer, values unsafe.Pointer)

func CFDictionaryGetTypeID

func CFDictionaryGetTypeID() uint

func CFDictionaryGetValue

func CFDictionaryGetValue(theDict unsafe.Pointer, key unsafe.Pointer) unsafe.Pointer

func CFDictionaryGetValueIfPresent

func CFDictionaryGetValueIfPresent(theDict unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer) uint8

func CFDictionaryRemoveAllValues

func CFDictionaryRemoveAllValues(theDict unsafe.Pointer)

func CFDictionaryRemoveValue

func CFDictionaryRemoveValue(theDict unsafe.Pointer, key unsafe.Pointer)

func CFDictionaryReplaceValue

func CFDictionaryReplaceValue(theDict unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer)

func CFDictionarySetValue

func CFDictionarySetValue(theDict unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer)

func CFEqual

func CFEqual(cf1 unsafe.Pointer, cf2 unsafe.Pointer) uint8

func CFErrorCopyDescription

func CFErrorCopyDescription(err unsafe.Pointer) unsafe.Pointer

func CFErrorCopyFailureReason

func CFErrorCopyFailureReason(err unsafe.Pointer) unsafe.Pointer

func CFErrorCopyRecoverySuggestion

func CFErrorCopyRecoverySuggestion(err unsafe.Pointer) unsafe.Pointer

func CFErrorCopyUserInfo

func CFErrorCopyUserInfo(err unsafe.Pointer) unsafe.Pointer

func CFErrorCreate

func CFErrorCreate(allocator unsafe.Pointer, domain unsafe.Pointer, code int, userInfo unsafe.Pointer) unsafe.Pointer

func CFErrorCreateWithUserInfoKeysAndValues

func CFErrorCreateWithUserInfoKeysAndValues(allocator unsafe.Pointer, domain unsafe.Pointer, code int, userInfoKeys unsafe.Pointer, userInfoValues unsafe.Pointer, numUserInfoValues int) unsafe.Pointer

func CFErrorGetCode

func CFErrorGetCode(err unsafe.Pointer) int

func CFErrorGetDomain

func CFErrorGetDomain(err unsafe.Pointer) unsafe.Pointer

func CFErrorGetTypeID

func CFErrorGetTypeID() uint

func CFFileDescriptorCreate

func CFFileDescriptorCreate(allocator unsafe.Pointer, fd int, closeOnInvalidate uint8, callout unsafe.Pointer, context_ *CFFileDescriptorContext) unsafe.Pointer

func CFFileDescriptorCreateRunLoopSource

func CFFileDescriptorCreateRunLoopSource(allocator unsafe.Pointer, f unsafe.Pointer, order int) unsafe.Pointer

func CFFileDescriptorDisableCallBacks

func CFFileDescriptorDisableCallBacks(f unsafe.Pointer, callBackTypes uint)

func CFFileDescriptorEnableCallBacks

func CFFileDescriptorEnableCallBacks(f unsafe.Pointer, callBackTypes uint)

func CFFileDescriptorGetContext

func CFFileDescriptorGetContext(f unsafe.Pointer, context_ *CFFileDescriptorContext)

func CFFileDescriptorGetNativeDescriptor

func CFFileDescriptorGetNativeDescriptor(f unsafe.Pointer) int

func CFFileDescriptorGetTypeID

func CFFileDescriptorGetTypeID() uint

func CFFileDescriptorInvalidate

func CFFileDescriptorInvalidate(f unsafe.Pointer)

func CFFileDescriptorIsValid

func CFFileDescriptorIsValid(f unsafe.Pointer) uint8

func CFFileSecurityClearProperties

func CFFileSecurityClearProperties(fileSec unsafe.Pointer, clearPropertyMask CFFileSecurityClearOptions) uint8

func CFFileSecurityCopyAccessControlList

func CFFileSecurityCopyAccessControlList(fileSec unsafe.Pointer, accessControlList unsafe.Pointer) uint8

func CFFileSecurityCopyGroupUUID

func CFFileSecurityCopyGroupUUID(fileSec unsafe.Pointer, groupUUID unsafe.Pointer) uint8

func CFFileSecurityCopyOwnerUUID

func CFFileSecurityCopyOwnerUUID(fileSec unsafe.Pointer, ownerUUID unsafe.Pointer) uint8

func CFFileSecurityCreate

func CFFileSecurityCreate(allocator unsafe.Pointer) unsafe.Pointer

func CFFileSecurityCreateCopy

func CFFileSecurityCreateCopy(allocator unsafe.Pointer, fileSec unsafe.Pointer) unsafe.Pointer

func CFFileSecurityGetGroup

func CFFileSecurityGetGroup(fileSec unsafe.Pointer, group *uint) uint8

func CFFileSecurityGetMode

func CFFileSecurityGetMode(fileSec unsafe.Pointer, mode *uint16) uint8

func CFFileSecurityGetOwner

func CFFileSecurityGetOwner(fileSec unsafe.Pointer, owner *uint) uint8

func CFFileSecurityGetTypeID

func CFFileSecurityGetTypeID() uint

func CFFileSecuritySetAccessControlList

func CFFileSecuritySetAccessControlList(fileSec unsafe.Pointer, accessControlList unsafe.Pointer) uint8

func CFFileSecuritySetGroup

func CFFileSecuritySetGroup(fileSec unsafe.Pointer, group uint) uint8

func CFFileSecuritySetGroupUUID

func CFFileSecuritySetGroupUUID(fileSec unsafe.Pointer, groupUUID unsafe.Pointer) uint8

func CFFileSecuritySetMode

func CFFileSecuritySetMode(fileSec unsafe.Pointer, mode uint16) uint8

func CFFileSecuritySetOwner

func CFFileSecuritySetOwner(fileSec unsafe.Pointer, owner uint) uint8

func CFFileSecuritySetOwnerUUID

func CFFileSecuritySetOwnerUUID(fileSec unsafe.Pointer, ownerUUID unsafe.Pointer) uint8

func CFGetAllocator

func CFGetAllocator(cf unsafe.Pointer) unsafe.Pointer

func CFGetRetainCount

func CFGetRetainCount(cf unsafe.Pointer) int

func CFGetTypeID

func CFGetTypeID(cf unsafe.Pointer) uint

func CFGregorianDateGetAbsoluteTime deprecated

func CFGregorianDateGetAbsoluteTime(gdate CFGregorianDate, tz unsafe.Pointer) float64

Deprecated: Use CFCalendar or NSCalendar API instead

func CFGregorianDateIsValid deprecated

func CFGregorianDateIsValid(gdate CFGregorianDate, unitFlags uint) uint8

Deprecated: Use CFCalendar or NSCalendar API instead

func CFHash

func CFHash(cf unsafe.Pointer) uint

func CFLocaleCopyAvailableLocaleIdentifiers

func CFLocaleCopyAvailableLocaleIdentifiers() unsafe.Pointer

func CFLocaleCopyCommonISOCurrencyCodes

func CFLocaleCopyCommonISOCurrencyCodes() unsafe.Pointer

func CFLocaleCopyCurrent

func CFLocaleCopyCurrent() unsafe.Pointer

func CFLocaleCopyDisplayNameForPropertyValue

func CFLocaleCopyDisplayNameForPropertyValue(displayLocale unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer) unsafe.Pointer

func CFLocaleCopyISOCountryCodes

func CFLocaleCopyISOCountryCodes() unsafe.Pointer

func CFLocaleCopyISOCurrencyCodes

func CFLocaleCopyISOCurrencyCodes() unsafe.Pointer

func CFLocaleCopyISOLanguageCodes

func CFLocaleCopyISOLanguageCodes() unsafe.Pointer

func CFLocaleCopyPreferredLanguages

func CFLocaleCopyPreferredLanguages() unsafe.Pointer

func CFLocaleCreate

func CFLocaleCreate(allocator unsafe.Pointer, localeIdentifier unsafe.Pointer) unsafe.Pointer

func CFLocaleCreateCanonicalLanguageIdentifierFromString

func CFLocaleCreateCanonicalLanguageIdentifierFromString(allocator unsafe.Pointer, localeIdentifier unsafe.Pointer) unsafe.Pointer

func CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes

func CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes(allocator unsafe.Pointer, lcode int16, rcode int16) unsafe.Pointer

func CFLocaleCreateCanonicalLocaleIdentifierFromString

func CFLocaleCreateCanonicalLocaleIdentifierFromString(allocator unsafe.Pointer, localeIdentifier unsafe.Pointer) unsafe.Pointer

func CFLocaleCreateComponentsFromLocaleIdentifier

func CFLocaleCreateComponentsFromLocaleIdentifier(allocator unsafe.Pointer, localeID unsafe.Pointer) unsafe.Pointer

func CFLocaleCreateCopy

func CFLocaleCreateCopy(allocator unsafe.Pointer, locale unsafe.Pointer) unsafe.Pointer

func CFLocaleCreateLocaleIdentifierFromComponents

func CFLocaleCreateLocaleIdentifierFromComponents(allocator unsafe.Pointer, dictionary unsafe.Pointer) unsafe.Pointer

func CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode

func CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode(allocator unsafe.Pointer, lcid uint32) unsafe.Pointer

func CFLocaleGetIdentifier

func CFLocaleGetIdentifier(locale unsafe.Pointer) unsafe.Pointer

func CFLocaleGetSystem

func CFLocaleGetSystem() unsafe.Pointer

func CFLocaleGetTypeID

func CFLocaleGetTypeID() uint

func CFLocaleGetValue

func CFLocaleGetValue(locale unsafe.Pointer, key unsafe.Pointer) unsafe.Pointer

func CFLocaleGetWindowsLocaleCodeFromLocaleIdentifier

func CFLocaleGetWindowsLocaleCodeFromLocaleIdentifier(localeIdentifier unsafe.Pointer) uint32

func CFMachPortCreate

func CFMachPortCreate(allocator unsafe.Pointer, callout unsafe.Pointer, context_ *CFMachPortContext, shouldFreeInfo *uint8) unsafe.Pointer

func CFMachPortCreateRunLoopSource

func CFMachPortCreateRunLoopSource(allocator unsafe.Pointer, port unsafe.Pointer, order int) unsafe.Pointer

func CFMachPortCreateWithPort

func CFMachPortCreateWithPort(allocator unsafe.Pointer, portNum uint, callout unsafe.Pointer, context_ *CFMachPortContext, shouldFreeInfo *uint8) unsafe.Pointer

func CFMachPortGetContext

func CFMachPortGetContext(port unsafe.Pointer, context_ *CFMachPortContext)

func CFMachPortGetInvalidationCallBack

func CFMachPortGetInvalidationCallBack(port unsafe.Pointer) unsafe.Pointer

func CFMachPortGetPort

func CFMachPortGetPort(port unsafe.Pointer) uint

func CFMachPortGetTypeID

func CFMachPortGetTypeID() uint

func CFMachPortInvalidate

func CFMachPortInvalidate(port unsafe.Pointer)

func CFMachPortIsValid

func CFMachPortIsValid(port unsafe.Pointer) uint8

func CFMachPortSetInvalidationCallBack

func CFMachPortSetInvalidationCallBack(port unsafe.Pointer, callout unsafe.Pointer)

func CFMakeCollectable

func CFMakeCollectable(cf unsafe.Pointer) unsafe.Pointer

func CFMessagePortCreateLocal

func CFMessagePortCreateLocal(allocator unsafe.Pointer, name unsafe.Pointer, callout unsafe.Pointer, context_ *CFMessagePortContext, shouldFreeInfo *uint8) unsafe.Pointer

func CFMessagePortCreateRemote

func CFMessagePortCreateRemote(allocator unsafe.Pointer, name unsafe.Pointer) unsafe.Pointer

func CFMessagePortCreateRunLoopSource

func CFMessagePortCreateRunLoopSource(allocator unsafe.Pointer, local unsafe.Pointer, order int) unsafe.Pointer

func CFMessagePortGetContext

func CFMessagePortGetContext(ms unsafe.Pointer, context_ *CFMessagePortContext)

func CFMessagePortGetInvalidationCallBack

func CFMessagePortGetInvalidationCallBack(ms unsafe.Pointer) unsafe.Pointer

func CFMessagePortGetName

func CFMessagePortGetName(ms unsafe.Pointer) unsafe.Pointer

func CFMessagePortGetTypeID

func CFMessagePortGetTypeID() uint

func CFMessagePortInvalidate

func CFMessagePortInvalidate(ms unsafe.Pointer)

func CFMessagePortIsRemote

func CFMessagePortIsRemote(ms unsafe.Pointer) uint8

func CFMessagePortIsValid

func CFMessagePortIsValid(ms unsafe.Pointer) uint8

func CFMessagePortSendRequest

func CFMessagePortSendRequest(remote unsafe.Pointer, msgid int, data unsafe.Pointer, sendTimeout float64, rcvTimeout float64, replyMode unsafe.Pointer, returnData unsafe.Pointer) int

func CFMessagePortSetDispatchQueue

func CFMessagePortSetDispatchQueue(ms unsafe.Pointer, queue unsafe.Pointer)

func CFMessagePortSetInvalidationCallBack

func CFMessagePortSetInvalidationCallBack(ms unsafe.Pointer, callout unsafe.Pointer)

func CFMessagePortSetName

func CFMessagePortSetName(ms unsafe.Pointer, newName unsafe.Pointer) uint8

func CFNotificationCenterAddObserver

func CFNotificationCenterAddObserver(center unsafe.Pointer, observer unsafe.Pointer, callBack unsafe.Pointer, name unsafe.Pointer, object unsafe.Pointer, suspensionBehavior CFNotificationSuspensionBehavior)

func CFNotificationCenterGetDarwinNotifyCenter

func CFNotificationCenterGetDarwinNotifyCenter() unsafe.Pointer

func CFNotificationCenterGetDistributedCenter

func CFNotificationCenterGetDistributedCenter() unsafe.Pointer

func CFNotificationCenterGetLocalCenter

func CFNotificationCenterGetLocalCenter() unsafe.Pointer

func CFNotificationCenterGetTypeID

func CFNotificationCenterGetTypeID() uint

func CFNotificationCenterPostNotification

func CFNotificationCenterPostNotification(center unsafe.Pointer, name unsafe.Pointer, object unsafe.Pointer, userInfo unsafe.Pointer, deliverImmediately uint8)

func CFNotificationCenterPostNotificationWithOptions

func CFNotificationCenterPostNotificationWithOptions(center unsafe.Pointer, name unsafe.Pointer, object unsafe.Pointer, userInfo unsafe.Pointer, options uint)

func CFNotificationCenterRemoveEveryObserver

func CFNotificationCenterRemoveEveryObserver(center unsafe.Pointer, observer unsafe.Pointer)

func CFNotificationCenterRemoveObserver

func CFNotificationCenterRemoveObserver(center unsafe.Pointer, observer unsafe.Pointer, name unsafe.Pointer, object unsafe.Pointer)

func CFNullGetTypeID

func CFNullGetTypeID() uint

func CFNumberCreate

func CFNumberCreate(allocator unsafe.Pointer, theType CFNumberType, valuePtr unsafe.Pointer) unsafe.Pointer

func CFNumberFormatterCopyProperty

func CFNumberFormatterCopyProperty(formatter unsafe.Pointer, key unsafe.Pointer) unsafe.Pointer

func CFNumberFormatterCreate

func CFNumberFormatterCreate(allocator unsafe.Pointer, locale unsafe.Pointer, style CFNumberFormatterStyle) unsafe.Pointer

func CFNumberFormatterCreateNumberFromString

func CFNumberFormatterCreateNumberFromString(allocator unsafe.Pointer, formatter unsafe.Pointer, string_ unsafe.Pointer, rangep *CFRange, options uint) unsafe.Pointer

func CFNumberFormatterCreateStringWithNumber

func CFNumberFormatterCreateStringWithNumber(allocator unsafe.Pointer, formatter unsafe.Pointer, number unsafe.Pointer) unsafe.Pointer

func CFNumberFormatterCreateStringWithValue

func CFNumberFormatterCreateStringWithValue(allocator unsafe.Pointer, formatter unsafe.Pointer, numberType CFNumberType, valuePtr unsafe.Pointer) unsafe.Pointer

func CFNumberFormatterGetDecimalInfoForCurrencyCode

func CFNumberFormatterGetDecimalInfoForCurrencyCode(currencyCode unsafe.Pointer, defaultFractionDigits *int32, roundingIncrement *float64) uint8

func CFNumberFormatterGetFormat

func CFNumberFormatterGetFormat(formatter unsafe.Pointer) unsafe.Pointer

func CFNumberFormatterGetLocale

func CFNumberFormatterGetLocale(formatter unsafe.Pointer) unsafe.Pointer

func CFNumberFormatterGetTypeID

func CFNumberFormatterGetTypeID() uint

func CFNumberFormatterGetValueFromString

func CFNumberFormatterGetValueFromString(formatter unsafe.Pointer, string_ unsafe.Pointer, rangep *CFRange, numberType CFNumberType, valuePtr unsafe.Pointer) uint8

func CFNumberFormatterSetFormat

func CFNumberFormatterSetFormat(formatter unsafe.Pointer, formatString unsafe.Pointer)

func CFNumberFormatterSetProperty

func CFNumberFormatterSetProperty(formatter unsafe.Pointer, key unsafe.Pointer, value unsafe.Pointer)

func CFNumberGetByteSize

func CFNumberGetByteSize(number unsafe.Pointer) int

func CFNumberGetTypeID

func CFNumberGetTypeID() uint

func CFNumberGetValue

func CFNumberGetValue(number unsafe.Pointer, theType CFNumberType, valuePtr unsafe.Pointer) uint8

func CFNumberIsFloatType

func CFNumberIsFloatType(number unsafe.Pointer) uint8

func CFPlugInAddInstanceForFactory

func CFPlugInAddInstanceForFactory(factoryID unsafe.Pointer)

func CFPlugInCreate

func CFPlugInCreate(allocator unsafe.Pointer, plugInURL unsafe.Pointer) unsafe.Pointer

func CFPlugInFindFactoriesForPlugInType

func CFPlugInFindFactoriesForPlugInType(typeUUID unsafe.Pointer) unsafe.Pointer

func CFPlugInFindFactoriesForPlugInTypeInPlugIn

func CFPlugInFindFactoriesForPlugInTypeInPlugIn(typeUUID unsafe.Pointer, plugIn unsafe.Pointer) unsafe.Pointer

func CFPlugInGetBundle

func CFPlugInGetBundle(plugIn unsafe.Pointer) unsafe.Pointer

func CFPlugInGetTypeID

func CFPlugInGetTypeID() uint

func CFPlugInInstanceCreate

func CFPlugInInstanceCreate(allocator unsafe.Pointer, factoryUUID unsafe.Pointer, typeUUID unsafe.Pointer) unsafe.Pointer

func CFPlugInInstanceCreateWithInstanceDataSize

func CFPlugInInstanceCreateWithInstanceDataSize(allocator unsafe.Pointer, instanceDataSize int, deallocateInstanceFunction unsafe.Pointer, factoryName unsafe.Pointer, getInterfaceFunction unsafe.Pointer) unsafe.Pointer

func CFPlugInInstanceGetFactoryName

func CFPlugInInstanceGetFactoryName(instance unsafe.Pointer) unsafe.Pointer

func CFPlugInInstanceGetInstanceData

func CFPlugInInstanceGetInstanceData(instance unsafe.Pointer) unsafe.Pointer

func CFPlugInInstanceGetInterfaceFunctionTable

func CFPlugInInstanceGetInterfaceFunctionTable(instance unsafe.Pointer, interfaceName unsafe.Pointer, ftbl unsafe.Pointer) uint8

func CFPlugInInstanceGetTypeID

func CFPlugInInstanceGetTypeID() uint

func CFPlugInIsLoadOnDemand

func CFPlugInIsLoadOnDemand(plugIn unsafe.Pointer) uint8

func CFPlugInRegisterFactoryFunction

func CFPlugInRegisterFactoryFunction(factoryUUID unsafe.Pointer, func_ unsafe.Pointer) uint8

func CFPlugInRegisterFactoryFunctionByName

func CFPlugInRegisterFactoryFunctionByName(factoryUUID unsafe.Pointer, plugIn unsafe.Pointer, functionName unsafe.Pointer) uint8

func CFPlugInRegisterPlugInType

func CFPlugInRegisterPlugInType(factoryUUID unsafe.Pointer, typeUUID unsafe.Pointer) uint8

func CFPlugInRemoveInstanceForFactory

func CFPlugInRemoveInstanceForFactory(factoryID unsafe.Pointer)

func CFPlugInSetLoadOnDemand

func CFPlugInSetLoadOnDemand(plugIn unsafe.Pointer, flag uint8)

func CFPlugInUnregisterFactory

func CFPlugInUnregisterFactory(factoryUUID unsafe.Pointer) uint8

func CFPlugInUnregisterPlugInType

func CFPlugInUnregisterPlugInType(factoryUUID unsafe.Pointer, typeUUID unsafe.Pointer) uint8

func CFPreferencesAddSuitePreferencesToApp

func CFPreferencesAddSuitePreferencesToApp(applicationID unsafe.Pointer, suiteID unsafe.Pointer)

func CFPreferencesAppSynchronize

func CFPreferencesAppSynchronize(applicationID unsafe.Pointer) uint8

func CFPreferencesAppValueIsForced

func CFPreferencesAppValueIsForced(key unsafe.Pointer, applicationID unsafe.Pointer) uint8

func CFPreferencesCopyAppValue

func CFPreferencesCopyAppValue(key unsafe.Pointer, applicationID unsafe.Pointer) unsafe.Pointer

func CFPreferencesCopyApplicationList deprecated

func CFPreferencesCopyApplicationList(userName unsafe.Pointer, hostName unsafe.Pointer) unsafe.Pointer

Deprecated: Unsupported API

func CFPreferencesCopyKeyList

func CFPreferencesCopyKeyList(applicationID unsafe.Pointer, userName unsafe.Pointer, hostName unsafe.Pointer) unsafe.Pointer

func CFPreferencesCopyMultiple

func CFPreferencesCopyMultiple(keysToFetch unsafe.Pointer, applicationID unsafe.Pointer, userName unsafe.Pointer, hostName unsafe.Pointer) unsafe.Pointer

func CFPreferencesCopyValue

func CFPreferencesCopyValue(key unsafe.Pointer, applicationID unsafe.Pointer, userName unsafe.Pointer, hostName unsafe.Pointer) unsafe.Pointer

func CFPreferencesGetAppBooleanValue

func CFPreferencesGetAppBooleanValue(key unsafe.Pointer, applicationID unsafe.Pointer, keyExistsAndHasValidFormat *uint8) uint8

func CFPreferencesGetAppIntegerValue

func CFPreferencesGetAppIntegerValue(key unsafe.Pointer, applicationID unsafe.Pointer, keyExistsAndHasValidFormat *uint8) int

func CFPreferencesRemoveSuitePreferencesFromApp

func CFPreferencesRemoveSuitePreferencesFromApp(applicationID unsafe.Pointer, suiteID unsafe.Pointer)

func CFPreferencesSetAppValue

func CFPreferencesSetAppValue(key unsafe.Pointer, value unsafe.Pointer, applicationID unsafe.Pointer)

func CFPreferencesSetMultiple

func CFPreferencesSetMultiple(keysToSet unsafe.Pointer, keysToRemove unsafe.Pointer, applicationID unsafe.Pointer, userName unsafe.Pointer, hostName unsafe.Pointer)

func CFPreferencesSetValue

func CFPreferencesSetValue(key unsafe.Pointer, value unsafe.Pointer, applicationID unsafe.Pointer, userName unsafe.Pointer, hostName unsafe.Pointer)

func CFPreferencesSynchronize

func CFPreferencesSynchronize(applicationID unsafe.Pointer, userName unsafe.Pointer, hostName unsafe.Pointer) uint8

func CFPropertyListCreateData

func CFPropertyListCreateData(allocator unsafe.Pointer, propertyList unsafe.Pointer, format CFPropertyListFormat, options uint, error_ unsafe.Pointer) unsafe.Pointer

func CFPropertyListCreateDeepCopy

func CFPropertyListCreateDeepCopy(allocator unsafe.Pointer, propertyList unsafe.Pointer, mutabilityOption uint) unsafe.Pointer

func CFPropertyListCreateFromStream deprecated

func CFPropertyListCreateFromStream(allocator unsafe.Pointer, stream unsafe.Pointer, streamLength int, mutabilityOption uint, format *CFPropertyListFormat, errorString unsafe.Pointer) unsafe.Pointer

Deprecated: Use CFPropertyListCreateWithStream instead.

func CFPropertyListCreateFromXMLData deprecated

func CFPropertyListCreateFromXMLData(allocator unsafe.Pointer, xmlData unsafe.Pointer, mutabilityOption uint, errorString unsafe.Pointer) unsafe.Pointer

Deprecated: Use CFPropertyListCreateWithData instead.

func CFPropertyListCreateWithData

func CFPropertyListCreateWithData(allocator unsafe.Pointer, data unsafe.Pointer, options uint, format *CFPropertyListFormat, error_ unsafe.Pointer) unsafe.Pointer

func CFPropertyListCreateWithStream

func CFPropertyListCreateWithStream(allocator unsafe.Pointer, stream unsafe.Pointer, streamLength int, options uint, format *CFPropertyListFormat, error_ unsafe.Pointer) unsafe.Pointer

func CFPropertyListCreateXMLData deprecated

func CFPropertyListCreateXMLData(allocator unsafe.Pointer, propertyList unsafe.Pointer) unsafe.Pointer

Deprecated: Use CFPropertyListCreateData instead.

func CFPropertyListIsValid

func CFPropertyListIsValid(plist unsafe.Pointer, format CFPropertyListFormat) uint8

func CFPropertyListWrite

func CFPropertyListWrite(propertyList unsafe.Pointer, stream unsafe.Pointer, format CFPropertyListFormat, options uint, error_ unsafe.Pointer) int

func CFPropertyListWriteToStream deprecated

func CFPropertyListWriteToStream(propertyList unsafe.Pointer, stream unsafe.Pointer, format CFPropertyListFormat, errorString unsafe.Pointer) int

Deprecated: Use CFPropertyListWrite instead.

func CFReadStreamClose

func CFReadStreamClose(stream unsafe.Pointer)

func CFReadStreamCopyDispatchQueue

func CFReadStreamCopyDispatchQueue(stream unsafe.Pointer) unsafe.Pointer

func CFReadStreamCopyError

func CFReadStreamCopyError(stream unsafe.Pointer) unsafe.Pointer

func CFReadStreamCopyProperty

func CFReadStreamCopyProperty(stream unsafe.Pointer, propertyName unsafe.Pointer) unsafe.Pointer

func CFReadStreamCreateWithBytesNoCopy

func CFReadStreamCreateWithBytesNoCopy(alloc unsafe.Pointer, bytes_ *uint8, length int, bytesDeallocator unsafe.Pointer) unsafe.Pointer

func CFReadStreamCreateWithFile

func CFReadStreamCreateWithFile(alloc unsafe.Pointer, fileURL unsafe.Pointer) unsafe.Pointer

func CFReadStreamGetBuffer

func CFReadStreamGetBuffer(stream unsafe.Pointer, maxBytesToRead int, numBytesRead *int) *uint8

func CFReadStreamGetTypeID

func CFReadStreamGetTypeID() uint

func CFReadStreamHasBytesAvailable

func CFReadStreamHasBytesAvailable(stream unsafe.Pointer) uint8

func CFReadStreamOpen

func CFReadStreamOpen(stream unsafe.Pointer) uint8

func CFReadStreamRead

func CFReadStreamRead(stream unsafe.Pointer, buffer *uint8, bufferLength int) int

func CFReadStreamScheduleWithRunLoop

func CFReadStreamScheduleWithRunLoop(stream unsafe.Pointer, runLoop unsafe.Pointer, runLoopMode unsafe.Pointer)

func CFReadStreamSetClient

func CFReadStreamSetClient(stream unsafe.Pointer, streamEvents uint, clientCB unsafe.Pointer, clientContext *CFStreamClientContext) uint8

func CFReadStreamSetDispatchQueue

func CFReadStreamSetDispatchQueue(stream unsafe.Pointer, q unsafe.Pointer)

func CFReadStreamSetProperty

func CFReadStreamSetProperty(stream unsafe.Pointer, propertyName unsafe.Pointer, propertyValue unsafe.Pointer) uint8

func CFReadStreamUnscheduleFromRunLoop

func CFReadStreamUnscheduleFromRunLoop(stream unsafe.Pointer, runLoop unsafe.Pointer, runLoopMode unsafe.Pointer)

func CFRelease

func CFRelease(cf unsafe.Pointer)

func CFRetain

func CFRetain(cf unsafe.Pointer) unsafe.Pointer

func CFRunLoopAddCommonMode

func CFRunLoopAddCommonMode(rl unsafe.Pointer, mode unsafe.Pointer)

func CFRunLoopAddObserver

func CFRunLoopAddObserver(rl unsafe.Pointer, observer unsafe.Pointer, mode unsafe.Pointer)

func CFRunLoopAddSource

func CFRunLoopAddSource(rl unsafe.Pointer, source unsafe.Pointer, mode unsafe.Pointer)

func CFRunLoopAddTimer

func CFRunLoopAddTimer(rl unsafe.Pointer, timer unsafe.Pointer, mode unsafe.Pointer)

func CFRunLoopContainsObserver

func CFRunLoopContainsObserver(rl unsafe.Pointer, observer unsafe.Pointer, mode unsafe.Pointer) uint8

func CFRunLoopContainsSource

func CFRunLoopContainsSource(rl unsafe.Pointer, source unsafe.Pointer, mode unsafe.Pointer) uint8

func CFRunLoopContainsTimer

func CFRunLoopContainsTimer(rl unsafe.Pointer, timer unsafe.Pointer, mode unsafe.Pointer) uint8

func CFRunLoopCopyAllModes

func CFRunLoopCopyAllModes(rl unsafe.Pointer) unsafe.Pointer

func CFRunLoopCopyCurrentMode

func CFRunLoopCopyCurrentMode(rl unsafe.Pointer) unsafe.Pointer

func CFRunLoopGetCurrent

func CFRunLoopGetCurrent() unsafe.Pointer

func CFRunLoopGetMain

func CFRunLoopGetMain() unsafe.Pointer

func CFRunLoopGetNextTimerFireDate

func CFRunLoopGetNextTimerFireDate(rl unsafe.Pointer, mode unsafe.Pointer) float64

func CFRunLoopGetTypeID

func CFRunLoopGetTypeID() uint

func CFRunLoopIsWaiting

func CFRunLoopIsWaiting(rl unsafe.Pointer) uint8

func CFRunLoopObserverCreate

func CFRunLoopObserverCreate(allocator unsafe.Pointer, activities uint, repeats uint8, order int, callout unsafe.Pointer, context_ *CFRunLoopObserverContext) unsafe.Pointer

func CFRunLoopObserverCreateWithHandler

func CFRunLoopObserverCreateWithHandler(allocator unsafe.Pointer, activities uint, repeats uint8, order int, block func(unsafe.Pointer, CFRunLoopActivity)) unsafe.Pointer

func CFRunLoopObserverDoesRepeat

func CFRunLoopObserverDoesRepeat(observer unsafe.Pointer) uint8

func CFRunLoopObserverGetActivities

func CFRunLoopObserverGetActivities(observer unsafe.Pointer) uint

func CFRunLoopObserverGetContext

func CFRunLoopObserverGetContext(observer unsafe.Pointer, context_ *CFRunLoopObserverContext)

func CFRunLoopObserverGetOrder

func CFRunLoopObserverGetOrder(observer unsafe.Pointer) int

func CFRunLoopObserverGetTypeID

func CFRunLoopObserverGetTypeID() uint

func CFRunLoopObserverInvalidate

func CFRunLoopObserverInvalidate(observer unsafe.Pointer)

func CFRunLoopObserverIsValid

func CFRunLoopObserverIsValid(observer unsafe.Pointer) uint8

func CFRunLoopPerformBlock

func CFRunLoopPerformBlock(rl unsafe.Pointer, mode unsafe.Pointer, block func())

func CFRunLoopRemoveObserver

func CFRunLoopRemoveObserver(rl unsafe.Pointer, observer unsafe.Pointer, mode unsafe.Pointer)

func CFRunLoopRemoveSource

func CFRunLoopRemoveSource(rl unsafe.Pointer, source unsafe.Pointer, mode unsafe.Pointer)

func CFRunLoopRemoveTimer

func CFRunLoopRemoveTimer(rl unsafe.Pointer, timer unsafe.Pointer, mode unsafe.Pointer)

func CFRunLoopRun

func CFRunLoopRun()

func CFRunLoopSourceCreate

func CFRunLoopSourceCreate(allocator unsafe.Pointer, order int, context_ *CFRunLoopSourceContext) unsafe.Pointer

func CFRunLoopSourceGetContext

func CFRunLoopSourceGetContext(source unsafe.Pointer, context_ *CFRunLoopSourceContext)

func CFRunLoopSourceGetOrder

func CFRunLoopSourceGetOrder(source unsafe.Pointer) int

func CFRunLoopSourceGetTypeID

func CFRunLoopSourceGetTypeID() uint

func CFRunLoopSourceInvalidate

func CFRunLoopSourceInvalidate(source unsafe.Pointer)

func CFRunLoopSourceIsValid

func CFRunLoopSourceIsValid(source unsafe.Pointer) uint8

func CFRunLoopSourceSignal

func CFRunLoopSourceSignal(source unsafe.Pointer)

func CFRunLoopStop

func CFRunLoopStop(rl unsafe.Pointer)

func CFRunLoopTimerCreate

func CFRunLoopTimerCreate(allocator unsafe.Pointer, fireDate float64, interval float64, flags uint, order int, callout unsafe.Pointer, context_ *CFRunLoopTimerContext) unsafe.Pointer

func CFRunLoopTimerCreateWithHandler

func CFRunLoopTimerCreateWithHandler(allocator unsafe.Pointer, fireDate float64, interval float64, flags uint, order int, block func(unsafe.Pointer)) unsafe.Pointer

func CFRunLoopTimerDoesRepeat

func CFRunLoopTimerDoesRepeat(timer unsafe.Pointer) uint8

func CFRunLoopTimerGetContext

func CFRunLoopTimerGetContext(timer unsafe.Pointer, context_ *CFRunLoopTimerContext)

func CFRunLoopTimerGetInterval

func CFRunLoopTimerGetInterval(timer unsafe.Pointer) float64

func CFRunLoopTimerGetNextFireDate

func CFRunLoopTimerGetNextFireDate(timer unsafe.Pointer) float64

func CFRunLoopTimerGetOrder

func CFRunLoopTimerGetOrder(timer unsafe.Pointer) int

func CFRunLoopTimerGetTolerance

func CFRunLoopTimerGetTolerance(timer unsafe.Pointer) float64

func CFRunLoopTimerGetTypeID

func CFRunLoopTimerGetTypeID() uint

func CFRunLoopTimerInvalidate

func CFRunLoopTimerInvalidate(timer unsafe.Pointer)

func CFRunLoopTimerIsValid

func CFRunLoopTimerIsValid(timer unsafe.Pointer) uint8

func CFRunLoopTimerSetNextFireDate

func CFRunLoopTimerSetNextFireDate(timer unsafe.Pointer, fireDate float64)

func CFRunLoopTimerSetTolerance

func CFRunLoopTimerSetTolerance(timer unsafe.Pointer, tolerance float64)

func CFRunLoopWakeUp

func CFRunLoopWakeUp(rl unsafe.Pointer)

func CFSetAddValue

func CFSetAddValue(theSet unsafe.Pointer, value unsafe.Pointer)

func CFSetApplyFunction

func CFSetApplyFunction(theSet unsafe.Pointer, applier unsafe.Pointer, context_ unsafe.Pointer)

func CFSetContainsValue

func CFSetContainsValue(theSet unsafe.Pointer, value unsafe.Pointer) uint8

func CFSetCreate

func CFSetCreate(allocator unsafe.Pointer, values unsafe.Pointer, numValues int, callBacks *CFSetCallBacks) unsafe.Pointer

func CFSetCreateCopy

func CFSetCreateCopy(allocator unsafe.Pointer, theSet unsafe.Pointer) unsafe.Pointer

func CFSetCreateMutable

func CFSetCreateMutable(allocator unsafe.Pointer, capacity int, callBacks *CFSetCallBacks) unsafe.Pointer

func CFSetCreateMutableCopy

func CFSetCreateMutableCopy(allocator unsafe.Pointer, capacity int, theSet unsafe.Pointer) unsafe.Pointer

func CFSetGetCount

func CFSetGetCount(theSet unsafe.Pointer) int

func CFSetGetCountOfValue

func CFSetGetCountOfValue(theSet unsafe.Pointer, value unsafe.Pointer) int

func CFSetGetTypeID

func CFSetGetTypeID() uint

func CFSetGetValue

func CFSetGetValue(theSet unsafe.Pointer, value unsafe.Pointer) unsafe.Pointer

func CFSetGetValueIfPresent

func CFSetGetValueIfPresent(theSet unsafe.Pointer, candidate unsafe.Pointer, value unsafe.Pointer) uint8

func CFSetGetValues

func CFSetGetValues(theSet unsafe.Pointer, values unsafe.Pointer)

func CFSetRemoveAllValues

func CFSetRemoveAllValues(theSet unsafe.Pointer)

func CFSetRemoveValue

func CFSetRemoveValue(theSet unsafe.Pointer, value unsafe.Pointer)

func CFSetReplaceValue

func CFSetReplaceValue(theSet unsafe.Pointer, value unsafe.Pointer)

func CFSetSetValue

func CFSetSetValue(theSet unsafe.Pointer, value unsafe.Pointer)

func CFShow

func CFShow(obj unsafe.Pointer)

func CFShowStr

func CFShowStr(str unsafe.Pointer)

func CFSocketCopyAddress

func CFSocketCopyAddress(s unsafe.Pointer) unsafe.Pointer

func CFSocketCopyPeerAddress

func CFSocketCopyPeerAddress(s unsafe.Pointer) unsafe.Pointer

func CFSocketCreate

func CFSocketCreate(allocator unsafe.Pointer, protocolFamily int, socketType int, protocol int, callBackTypes uint, callout unsafe.Pointer, context_ *CFSocketContext) unsafe.Pointer

func CFSocketCreateConnectedToSocketSignature

func CFSocketCreateConnectedToSocketSignature(allocator unsafe.Pointer, signature *CFSocketSignature, callBackTypes uint, callout unsafe.Pointer, context_ *CFSocketContext, timeout float64) unsafe.Pointer

func CFSocketCreateRunLoopSource

func CFSocketCreateRunLoopSource(allocator unsafe.Pointer, s unsafe.Pointer, order int) unsafe.Pointer

func CFSocketCreateWithNative

func CFSocketCreateWithNative(allocator unsafe.Pointer, sock int, callBackTypes uint, callout unsafe.Pointer, context_ *CFSocketContext) unsafe.Pointer

func CFSocketCreateWithSocketSignature

func CFSocketCreateWithSocketSignature(allocator unsafe.Pointer, signature *CFSocketSignature, callBackTypes uint, callout unsafe.Pointer, context_ *CFSocketContext) unsafe.Pointer

func CFSocketDisableCallBacks

func CFSocketDisableCallBacks(s unsafe.Pointer, callBackTypes uint)

func CFSocketEnableCallBacks

func CFSocketEnableCallBacks(s unsafe.Pointer, callBackTypes uint)

func CFSocketGetContext

func CFSocketGetContext(s unsafe.Pointer, context_ *CFSocketContext)

func CFSocketGetDefaultNameRegistryPortNumber

func CFSocketGetDefaultNameRegistryPortNumber() uint16

func CFSocketGetNative

func CFSocketGetNative(s unsafe.Pointer) int

func CFSocketGetSocketFlags

func CFSocketGetSocketFlags(s unsafe.Pointer) uint

func CFSocketGetTypeID

func CFSocketGetTypeID() uint

func CFSocketInvalidate

func CFSocketInvalidate(s unsafe.Pointer)

func CFSocketIsValid

func CFSocketIsValid(s unsafe.Pointer) uint8

func CFSocketSetDefaultNameRegistryPortNumber

func CFSocketSetDefaultNameRegistryPortNumber(port uint16)

func CFSocketSetSocketFlags

func CFSocketSetSocketFlags(s unsafe.Pointer, flags uint)

func CFStreamCreateBoundPair

func CFStreamCreateBoundPair(alloc unsafe.Pointer, readStream unsafe.Pointer, writeStream unsafe.Pointer, transferBufferSize int)

func CFStreamCreatePairWithPeerSocketSignature deprecated

func CFStreamCreatePairWithPeerSocketSignature(alloc unsafe.Pointer, signature *CFSocketSignature, readStream unsafe.Pointer, writeStream unsafe.Pointer)

Deprecated: Use nw_connection_t in Network framework instead

func CFStreamCreatePairWithSocket deprecated

func CFStreamCreatePairWithSocket(alloc unsafe.Pointer, sock int, readStream unsafe.Pointer, writeStream unsafe.Pointer)

Deprecated: Use nw_connection_t in Network framework instead

func CFStreamCreatePairWithSocketToHost deprecated

func CFStreamCreatePairWithSocketToHost(alloc unsafe.Pointer, host unsafe.Pointer, port uint, readStream unsafe.Pointer, writeStream unsafe.Pointer)

Deprecated: Use nw_connection_t in Network framework instead

func CFStringAppend

func CFStringAppend(theString unsafe.Pointer, appendedString unsafe.Pointer)

func CFStringAppendCString

func CFStringAppendCString(theString unsafe.Pointer, cStr string, encoding uint)

func CFStringAppendCharacters

func CFStringAppendCharacters(theString unsafe.Pointer, chars *uint16, numChars int)

func CFStringAppendFormat

func CFStringAppendFormat(theString unsafe.Pointer, formatOptions unsafe.Pointer, format unsafe.Pointer)

func CFStringAppendFormatAndArguments

func CFStringAppendFormatAndArguments(theString unsafe.Pointer, formatOptions unsafe.Pointer, format unsafe.Pointer, arguments string)

func CFStringAppendPascalString

func CFStringAppendPascalString(theString unsafe.Pointer, pStr *uint8, encoding uint)

func CFStringCapitalize

func CFStringCapitalize(theString unsafe.Pointer, locale unsafe.Pointer)

func CFStringConvertEncodingToIANACharSetName

func CFStringConvertEncodingToIANACharSetName(encoding uint) unsafe.Pointer

func CFStringConvertEncodingToNSStringEncoding

func CFStringConvertEncodingToNSStringEncoding(encoding uint) uint

func CFStringConvertEncodingToWindowsCodepage

func CFStringConvertEncodingToWindowsCodepage(encoding uint) uint

func CFStringConvertIANACharSetNameToEncoding

func CFStringConvertIANACharSetNameToEncoding(theString unsafe.Pointer) uint

func CFStringConvertNSStringEncodingToEncoding

func CFStringConvertNSStringEncodingToEncoding(encoding uint) uint

func CFStringConvertWindowsCodepageToEncoding

func CFStringConvertWindowsCodepageToEncoding(codepage uint) uint

func CFStringCreateArrayBySeparatingStrings

func CFStringCreateArrayBySeparatingStrings(alloc unsafe.Pointer, theString unsafe.Pointer, separatorString unsafe.Pointer) unsafe.Pointer

func CFStringCreateArrayWithFindResults

func CFStringCreateArrayWithFindResults(alloc unsafe.Pointer, theString unsafe.Pointer, stringToFind unsafe.Pointer, rangeToSearch CFRange, compareOptions CFStringCompareFlags) unsafe.Pointer

func CFStringCreateByCombiningStrings

func CFStringCreateByCombiningStrings(alloc unsafe.Pointer, theArray unsafe.Pointer, separatorString unsafe.Pointer) unsafe.Pointer

func CFStringCreateCopy

func CFStringCreateCopy(alloc unsafe.Pointer, theString unsafe.Pointer) unsafe.Pointer

func CFStringCreateExternalRepresentation

func CFStringCreateExternalRepresentation(alloc unsafe.Pointer, theString unsafe.Pointer, encoding uint, lossByte uint8) unsafe.Pointer

func CFStringCreateFromExternalRepresentation

func CFStringCreateFromExternalRepresentation(alloc unsafe.Pointer, data unsafe.Pointer, encoding uint) unsafe.Pointer

func CFStringCreateMutable

func CFStringCreateMutable(alloc unsafe.Pointer, maxLength int) unsafe.Pointer

func CFStringCreateMutableCopy

func CFStringCreateMutableCopy(alloc unsafe.Pointer, maxLength int, theString unsafe.Pointer) unsafe.Pointer

func CFStringCreateMutableWithExternalCharactersNoCopy

func CFStringCreateMutableWithExternalCharactersNoCopy(alloc unsafe.Pointer, chars *uint16, numChars int, capacity int, externalCharactersAllocator unsafe.Pointer) unsafe.Pointer

func CFStringCreateStringWithValidatedFormat

func CFStringCreateStringWithValidatedFormat(alloc unsafe.Pointer, formatOptions unsafe.Pointer, validFormatSpecifiers unsafe.Pointer, format unsafe.Pointer, errorPtr unsafe.Pointer) unsafe.Pointer

func CFStringCreateStringWithValidatedFormatAndArguments

func CFStringCreateStringWithValidatedFormatAndArguments(alloc unsafe.Pointer, formatOptions unsafe.Pointer, validFormatSpecifiers unsafe.Pointer, format unsafe.Pointer, arguments string, errorPtr unsafe.Pointer) unsafe.Pointer

func CFStringCreateWithBytes

func CFStringCreateWithBytes(alloc unsafe.Pointer, bytes_ *uint8, numBytes int, encoding uint, isExternalRepresentation uint8) unsafe.Pointer

func CFStringCreateWithBytesNoCopy

func CFStringCreateWithBytesNoCopy(alloc unsafe.Pointer, bytes_ *uint8, numBytes int, encoding uint, isExternalRepresentation uint8, contentsDeallocator unsafe.Pointer) unsafe.Pointer

func CFStringCreateWithCString

func CFStringCreateWithCString(alloc unsafe.Pointer, cStr string, encoding uint) unsafe.Pointer

func CFStringCreateWithCStringNoCopy

func CFStringCreateWithCStringNoCopy(alloc unsafe.Pointer, cStr string, encoding uint, contentsDeallocator unsafe.Pointer) unsafe.Pointer

func CFStringCreateWithCharacters

func CFStringCreateWithCharacters(alloc unsafe.Pointer, chars *uint16, numChars int) unsafe.Pointer

func CFStringCreateWithCharactersNoCopy

func CFStringCreateWithCharactersNoCopy(alloc unsafe.Pointer, chars *uint16, numChars int, contentsDeallocator unsafe.Pointer) unsafe.Pointer

func CFStringCreateWithFileSystemRepresentation

func CFStringCreateWithFileSystemRepresentation(alloc unsafe.Pointer, buffer string) unsafe.Pointer

func CFStringCreateWithFormat

func CFStringCreateWithFormat(alloc unsafe.Pointer, formatOptions unsafe.Pointer, format unsafe.Pointer) unsafe.Pointer

func CFStringCreateWithFormatAndArguments

func CFStringCreateWithFormatAndArguments(alloc unsafe.Pointer, formatOptions unsafe.Pointer, format unsafe.Pointer, arguments string) unsafe.Pointer

func CFStringCreateWithPascalString

func CFStringCreateWithPascalString(alloc unsafe.Pointer, pStr *uint8, encoding uint) unsafe.Pointer

func CFStringCreateWithPascalStringNoCopy

func CFStringCreateWithPascalStringNoCopy(alloc unsafe.Pointer, pStr *uint8, encoding uint, contentsDeallocator unsafe.Pointer) unsafe.Pointer

func CFStringCreateWithSubstring

func CFStringCreateWithSubstring(alloc unsafe.Pointer, str unsafe.Pointer, range_ CFRange) unsafe.Pointer

func CFStringDelete

func CFStringDelete(theString unsafe.Pointer, range_ CFRange)

func CFStringFindAndReplace

func CFStringFindAndReplace(theString unsafe.Pointer, stringToFind unsafe.Pointer, replacementString unsafe.Pointer, rangeToSearch CFRange, compareOptions CFStringCompareFlags) int

func CFStringFindCharacterFromSet

func CFStringFindCharacterFromSet(theString unsafe.Pointer, theSet unsafe.Pointer, rangeToSearch CFRange, searchOptions CFStringCompareFlags, result *CFRange) uint8

@function CFStringFindCharacterFromSet Query the range of the first character contained in the specified character set. @param theString The CFString which is to be searched. If this parameter is not a valid CFString, the behavior is undefined. @param theSet The CFCharacterSet against which the membership of characters is checked. If this parameter is not a valid CFCharacterSet, the behavior is undefined. @param rangeToSearch The range of characters within the string to search. If the range location or end point (defined by the location plus length minus 1) are outside the index space of the string (0 to N-1 inclusive, where N is the length of the string), the behavior is undefined. If the range length is negative, the behavior is undefined. The range may be empty (length 0), in which case no search is performed. @param searchOptions The bitwise-or'ed option flags to control the search behavior. The supported options are kCFCompareBackwards andkCFCompareAnchored. If other option flags are specified, the behavior is undefined. @param result The pointer to a CFRange supplied by the caller in which the search result is stored. Note that the length of this range can be more than 1, if for instance the result is a composed character. If a pointer to an invalid memory is specified, the behavior is undefined. @result true, if at least a character which is a member of the character set is found and result is filled, otherwise, false.

func CFStringFindWithOptions

func CFStringFindWithOptions(theString unsafe.Pointer, stringToFind unsafe.Pointer, rangeToSearch CFRange, searchOptions CFStringCompareFlags, result *CFRange) uint8

func CFStringFindWithOptionsAndLocale

func CFStringFindWithOptionsAndLocale(theString unsafe.Pointer, stringToFind unsafe.Pointer, rangeToSearch CFRange, searchOptions CFStringCompareFlags, locale unsafe.Pointer, result *CFRange) uint8

func CFStringFold

func CFStringFold(theString unsafe.Pointer, theFlags CFStringCompareFlags, theLocale unsafe.Pointer)

func CFStringGetBytes

func CFStringGetBytes(theString unsafe.Pointer, range_ CFRange, encoding uint, lossByte uint8, isExternalRepresentation uint8, buffer *uint8, maxBufLen int, usedBufLen *int) int

func CFStringGetCString

func CFStringGetCString(theString unsafe.Pointer, buffer string, bufferSize int, encoding uint) uint8

func CFStringGetCStringPtr

func CFStringGetCStringPtr(theString unsafe.Pointer, encoding uint) string

func CFStringGetCharacterAtIndex

func CFStringGetCharacterAtIndex(theString unsafe.Pointer, idx int) uint16

func CFStringGetCharacterFromInlineBuffer

func CFStringGetCharacterFromInlineBuffer(buf *CFStringInlineBuffer, idx int) uint16

func CFStringGetCharacters

func CFStringGetCharacters(theString unsafe.Pointer, range_ CFRange, buffer *uint16)

func CFStringGetCharactersPtr

func CFStringGetCharactersPtr(theString unsafe.Pointer) *uint16

func CFStringGetDoubleValue

func CFStringGetDoubleValue(str unsafe.Pointer) float64

func CFStringGetFastestEncoding

func CFStringGetFastestEncoding(theString unsafe.Pointer) uint

func CFStringGetFileSystemRepresentation

func CFStringGetFileSystemRepresentation(string_ unsafe.Pointer, buffer string, maxBufLen int) uint8

func CFStringGetHyphenationLocationBeforeIndex

func CFStringGetHyphenationLocationBeforeIndex(string_ unsafe.Pointer, location int, limitRange CFRange, options uint, locale unsafe.Pointer, character *uint) int

func CFStringGetIntValue

func CFStringGetIntValue(str unsafe.Pointer) int

func CFStringGetLength

func CFStringGetLength(theString unsafe.Pointer) int

func CFStringGetLineBounds

func CFStringGetLineBounds(theString unsafe.Pointer, range_ CFRange, lineBeginIndex *int, lineEndIndex *int, contentsEndIndex *int)

func CFStringGetListOfAvailableEncodings

func CFStringGetListOfAvailableEncodings() *uint

func CFStringGetLongCharacterForSurrogatePair

func CFStringGetLongCharacterForSurrogatePair(surrogateHigh uint16, surrogateLow uint16) uint

func CFStringGetMaximumSizeForEncoding

func CFStringGetMaximumSizeForEncoding(length int, encoding uint) int

func CFStringGetMaximumSizeOfFileSystemRepresentation

func CFStringGetMaximumSizeOfFileSystemRepresentation(string_ unsafe.Pointer) int

func CFStringGetMostCompatibleMacStringEncoding

func CFStringGetMostCompatibleMacStringEncoding(encoding uint) uint

func CFStringGetNameOfEncoding

func CFStringGetNameOfEncoding(encoding uint) unsafe.Pointer

func CFStringGetParagraphBounds

func CFStringGetParagraphBounds(string_ unsafe.Pointer, range_ CFRange, parBeginIndex *int, parEndIndex *int, contentsEndIndex *int)

func CFStringGetPascalString

func CFStringGetPascalString(theString unsafe.Pointer, buffer *uint8, bufferSize int, encoding uint) uint8

func CFStringGetPascalStringPtr

func CFStringGetPascalStringPtr(theString unsafe.Pointer, encoding uint) unsafe.Pointer

func CFStringGetSmallestEncoding

func CFStringGetSmallestEncoding(theString unsafe.Pointer) uint

func CFStringGetSurrogatePairForLongCharacter

func CFStringGetSurrogatePairForLongCharacter(character uint, surrogates *uint16) uint8

func CFStringGetSystemEncoding

func CFStringGetSystemEncoding() uint

func CFStringGetTypeID

func CFStringGetTypeID() uint

func CFStringHasPrefix

func CFStringHasPrefix(theString unsafe.Pointer, prefix unsafe.Pointer) uint8

func CFStringHasSuffix

func CFStringHasSuffix(theString unsafe.Pointer, suffix unsafe.Pointer) uint8

func CFStringInitInlineBuffer

func CFStringInitInlineBuffer(str unsafe.Pointer, buf *CFStringInlineBuffer, range_ CFRange)

func CFStringInsert

func CFStringInsert(str unsafe.Pointer, idx int, insertedStr unsafe.Pointer)

func CFStringIsEncodingAvailable

func CFStringIsEncodingAvailable(encoding uint) uint8

func CFStringIsHyphenationAvailableForLocale

func CFStringIsHyphenationAvailableForLocale(locale unsafe.Pointer) uint8

func CFStringIsSurrogateHighCharacter

func CFStringIsSurrogateHighCharacter(character uint16) uint8

func CFStringIsSurrogateLowCharacter

func CFStringIsSurrogateLowCharacter(character uint16) uint8

func CFStringLowercase

func CFStringLowercase(theString unsafe.Pointer, locale unsafe.Pointer)

func CFStringMakeConstantString

func CFStringMakeConstantString(cStr string) unsafe.Pointer

C function: __CFStringMakeConstantString

func CFStringNormalize

func CFStringNormalize(theString unsafe.Pointer, theForm CFStringNormalizationForm)

@function CFStringNormalize Normalizes the string into the specified form as described in Unicode Technical Report #15. @param theString The string which is to be normalized. If this parameter is not a valid mutable CFString, the behavior is undefined. @param theForm The form into which the string is to be normalized. If this parameter is not a valid CFStringNormalizationForm value, the behavior is undefined.

func CFStringPad

func CFStringPad(theString unsafe.Pointer, padString unsafe.Pointer, length int, indexIntoPad int)

func CFStringReplace

func CFStringReplace(theString unsafe.Pointer, range_ CFRange, replacement unsafe.Pointer)

func CFStringReplaceAll

func CFStringReplaceAll(theString unsafe.Pointer, replacement unsafe.Pointer)

func CFStringSetExternalCharactersNoCopy

func CFStringSetExternalCharactersNoCopy(theString unsafe.Pointer, chars *uint16, length int, capacity int)

func CFStringTokenizerCopyBestStringLanguage

func CFStringTokenizerCopyBestStringLanguage(string_ unsafe.Pointer, range_ CFRange) unsafe.Pointer

func CFStringTokenizerCopyCurrentTokenAttribute

func CFStringTokenizerCopyCurrentTokenAttribute(tokenizer unsafe.Pointer, attribute uint) unsafe.Pointer

func CFStringTokenizerCreate

func CFStringTokenizerCreate(alloc unsafe.Pointer, string_ unsafe.Pointer, range_ CFRange, options uint, locale unsafe.Pointer) unsafe.Pointer

func CFStringTokenizerGetCurrentSubTokens

func CFStringTokenizerGetCurrentSubTokens(tokenizer unsafe.Pointer, ranges *CFRange, maxRangeLength int, derivedSubTokens unsafe.Pointer) int

func CFStringTokenizerGetTypeID

func CFStringTokenizerGetTypeID() uint

func CFStringTokenizerSetString

func CFStringTokenizerSetString(tokenizer unsafe.Pointer, string_ unsafe.Pointer, range_ CFRange)

func CFStringTransform

func CFStringTransform(string_ unsafe.Pointer, range_ *CFRange, transform unsafe.Pointer, reverse uint8) uint8

func CFStringTrim

func CFStringTrim(theString unsafe.Pointer, trimString unsafe.Pointer)

func CFStringTrimWhitespace

func CFStringTrimWhitespace(theString unsafe.Pointer)

func CFStringUppercase

func CFStringUppercase(theString unsafe.Pointer, locale unsafe.Pointer)

func CFSwapInt16

func CFSwapInt16(arg uint16) uint16

func CFSwapInt16BigToHost

func CFSwapInt16BigToHost(arg uint16) uint16

func CFSwapInt16HostToBig

func CFSwapInt16HostToBig(arg uint16) uint16

func CFSwapInt16HostToLittle

func CFSwapInt16HostToLittle(arg uint16) uint16

func CFSwapInt16LittleToHost

func CFSwapInt16LittleToHost(arg uint16) uint16

func CFSwapInt32

func CFSwapInt32(arg uint32) uint32

func CFSwapInt32BigToHost

func CFSwapInt32BigToHost(arg uint32) uint32

func CFSwapInt32HostToBig

func CFSwapInt32HostToBig(arg uint32) uint32

func CFSwapInt32HostToLittle

func CFSwapInt32HostToLittle(arg uint32) uint32

func CFSwapInt32LittleToHost

func CFSwapInt32LittleToHost(arg uint32) uint32

func CFSwapInt64

func CFSwapInt64(arg uint64) uint64

func CFSwapInt64BigToHost

func CFSwapInt64BigToHost(arg uint64) uint64

func CFSwapInt64HostToBig

func CFSwapInt64HostToBig(arg uint64) uint64

func CFSwapInt64HostToLittle

func CFSwapInt64HostToLittle(arg uint64) uint64

func CFSwapInt64LittleToHost

func CFSwapInt64LittleToHost(arg uint64) uint64

func CFTimeZoneCopyAbbreviation

func CFTimeZoneCopyAbbreviation(tz unsafe.Pointer, at float64) unsafe.Pointer

func CFTimeZoneCopyAbbreviationDictionary

func CFTimeZoneCopyAbbreviationDictionary() unsafe.Pointer

func CFTimeZoneCopyDefault

func CFTimeZoneCopyDefault() unsafe.Pointer

func CFTimeZoneCopyKnownNames

func CFTimeZoneCopyKnownNames() unsafe.Pointer

func CFTimeZoneCopyLocalizedName

func CFTimeZoneCopyLocalizedName(tz unsafe.Pointer, style CFTimeZoneNameStyle, locale unsafe.Pointer) unsafe.Pointer

func CFTimeZoneCopySystem

func CFTimeZoneCopySystem() unsafe.Pointer

func CFTimeZoneCreate

func CFTimeZoneCreate(allocator unsafe.Pointer, name unsafe.Pointer, data unsafe.Pointer) unsafe.Pointer

func CFTimeZoneCreateWithName

func CFTimeZoneCreateWithName(allocator unsafe.Pointer, name unsafe.Pointer, tryAbbrev uint8) unsafe.Pointer

func CFTimeZoneCreateWithTimeIntervalFromGMT

func CFTimeZoneCreateWithTimeIntervalFromGMT(allocator unsafe.Pointer, ti float64) unsafe.Pointer

func CFTimeZoneGetData

func CFTimeZoneGetData(tz unsafe.Pointer) unsafe.Pointer

func CFTimeZoneGetDaylightSavingTimeOffset

func CFTimeZoneGetDaylightSavingTimeOffset(tz unsafe.Pointer, at float64) float64

func CFTimeZoneGetName

func CFTimeZoneGetName(tz unsafe.Pointer) unsafe.Pointer

func CFTimeZoneGetNextDaylightSavingTimeTransition

func CFTimeZoneGetNextDaylightSavingTimeTransition(tz unsafe.Pointer, at float64) float64

func CFTimeZoneGetSecondsFromGMT

func CFTimeZoneGetSecondsFromGMT(tz unsafe.Pointer, at float64) float64

func CFTimeZoneGetTypeID

func CFTimeZoneGetTypeID() uint

func CFTimeZoneIsDaylightSavingTime

func CFTimeZoneIsDaylightSavingTime(tz unsafe.Pointer, at float64) uint8

func CFTimeZoneResetSystem

func CFTimeZoneResetSystem()

func CFTimeZoneSetAbbreviationDictionary

func CFTimeZoneSetAbbreviationDictionary(dict unsafe.Pointer)

func CFTimeZoneSetDefault

func CFTimeZoneSetDefault(tz unsafe.Pointer)

func CFTreeAppendChild

func CFTreeAppendChild(tree unsafe.Pointer, newChild unsafe.Pointer)

func CFTreeApplyFunctionToChildren

func CFTreeApplyFunctionToChildren(tree unsafe.Pointer, applier unsafe.Pointer, context_ unsafe.Pointer)

func CFTreeCreate

func CFTreeCreate(allocator unsafe.Pointer, context_ *CFTreeContext) unsafe.Pointer

func CFTreeFindRoot

func CFTreeFindRoot(tree unsafe.Pointer) unsafe.Pointer

func CFTreeGetChildAtIndex

func CFTreeGetChildAtIndex(tree unsafe.Pointer, idx int) unsafe.Pointer

func CFTreeGetChildCount

func CFTreeGetChildCount(tree unsafe.Pointer) int

func CFTreeGetChildren

func CFTreeGetChildren(tree unsafe.Pointer, children unsafe.Pointer)

func CFTreeGetContext

func CFTreeGetContext(tree unsafe.Pointer, context_ *CFTreeContext)

func CFTreeGetFirstChild

func CFTreeGetFirstChild(tree unsafe.Pointer) unsafe.Pointer

func CFTreeGetNextSibling

func CFTreeGetNextSibling(tree unsafe.Pointer) unsafe.Pointer

func CFTreeGetParent

func CFTreeGetParent(tree unsafe.Pointer) unsafe.Pointer

func CFTreeGetTypeID

func CFTreeGetTypeID() uint

func CFTreeInsertSibling

func CFTreeInsertSibling(tree unsafe.Pointer, newSibling unsafe.Pointer)

func CFTreePrependChild

func CFTreePrependChild(tree unsafe.Pointer, newChild unsafe.Pointer)

func CFTreeRemove

func CFTreeRemove(tree unsafe.Pointer)

func CFTreeRemoveAllChildren

func CFTreeRemoveAllChildren(tree unsafe.Pointer)

func CFTreeSetContext

func CFTreeSetContext(tree unsafe.Pointer, context_ *CFTreeContext)

func CFTreeSortChildren

func CFTreeSortChildren(tree unsafe.Pointer, comparator unsafe.Pointer, context_ unsafe.Pointer)

func CFURLCanBeDecomposed

func CFURLCanBeDecomposed(anURL unsafe.Pointer) uint8

func CFURLClearResourcePropertyCache

func CFURLClearResourcePropertyCache(url unsafe.Pointer)

func CFURLClearResourcePropertyCacheForKey

func CFURLClearResourcePropertyCacheForKey(url unsafe.Pointer, key unsafe.Pointer)

func CFURLCopyAbsoluteURL

func CFURLCopyAbsoluteURL(relativeURL unsafe.Pointer) unsafe.Pointer

func CFURLCopyFileSystemPath

func CFURLCopyFileSystemPath(anURL unsafe.Pointer, pathStyle CFURLPathStyle) unsafe.Pointer

func CFURLCopyFragment

func CFURLCopyFragment(anURL unsafe.Pointer, charactersToLeaveEscaped unsafe.Pointer) unsafe.Pointer

func CFURLCopyHostName

func CFURLCopyHostName(anURL unsafe.Pointer) unsafe.Pointer

func CFURLCopyLastPathComponent

func CFURLCopyLastPathComponent(url unsafe.Pointer) unsafe.Pointer

func CFURLCopyNetLocation

func CFURLCopyNetLocation(anURL unsafe.Pointer) unsafe.Pointer

func CFURLCopyParameterString deprecated

func CFURLCopyParameterString(anURL unsafe.Pointer, charactersToLeaveEscaped unsafe.Pointer) unsafe.Pointer

Deprecated: The CFURLCopyParameterString function is deprecated. Post deprecation for applications linked with or after the macOS 10.15, and for all iOS, watchOS, and tvOS applications, CFURLCopyParameterString will always return NULL, and the CFURLCopyPath(), CFURLCopyStrictPath(), and CFURLCopyFileSystemPath() functions will return the complete path including the semicolon separator and params component if the URL string contains them.

func CFURLCopyPassword

func CFURLCopyPassword(anURL unsafe.Pointer) unsafe.Pointer

func CFURLCopyPath

func CFURLCopyPath(anURL unsafe.Pointer) unsafe.Pointer

func CFURLCopyPathExtension

func CFURLCopyPathExtension(url unsafe.Pointer) unsafe.Pointer

func CFURLCopyQueryString deprecated

func CFURLCopyQueryString(anURL unsafe.Pointer, charactersToLeaveEscaped unsafe.Pointer) unsafe.Pointer

Deprecated: The CFURLCopyParameterString function is deprecated. Post deprecation for applications linked with or after the macOS 10.15, and for all iOS, watchOS, and tvOS applications, CFURLCopyParameterString will always return NULL, and the CFURLCopyPath(), CFURLCopyStrictPath(), and CFURLCopyFileSystemPath() functions will return the complete path including the semicolon separator and params component if the URL string contains them.

func CFURLCopyResourcePropertiesForKeys

func CFURLCopyResourcePropertiesForKeys(url unsafe.Pointer, keys unsafe.Pointer, error_ unsafe.Pointer) unsafe.Pointer

func CFURLCopyResourcePropertyForKey

func CFURLCopyResourcePropertyForKey(url unsafe.Pointer, key unsafe.Pointer, propertyValueTypeRefPtr unsafe.Pointer, error_ unsafe.Pointer) uint8

func CFURLCopyResourceSpecifier

func CFURLCopyResourceSpecifier(anURL unsafe.Pointer) unsafe.Pointer

func CFURLCopyScheme

func CFURLCopyScheme(anURL unsafe.Pointer) unsafe.Pointer

func CFURLCopyStrictPath

func CFURLCopyStrictPath(anURL unsafe.Pointer, isAbsolute *uint8) unsafe.Pointer

func CFURLCopyUserName

func CFURLCopyUserName(anURL unsafe.Pointer) unsafe.Pointer

func CFURLCreateAbsoluteURLWithBytes

func CFURLCreateAbsoluteURLWithBytes(alloc unsafe.Pointer, relativeURLBytes *uint8, length int, encoding uint, baseURL unsafe.Pointer, useCompatibilityMode uint8) unsafe.Pointer

func CFURLCreateBookmarkData

func CFURLCreateBookmarkData(allocator unsafe.Pointer, url unsafe.Pointer, options CFURLBookmarkCreationOptions, resourcePropertiesToInclude unsafe.Pointer, relativeToURL unsafe.Pointer, error_ unsafe.Pointer) unsafe.Pointer

func CFURLCreateBookmarkDataFromAliasRecord deprecated

func CFURLCreateBookmarkDataFromAliasRecord(allocatorRef unsafe.Pointer, aliasRecordDataRef unsafe.Pointer) unsafe.Pointer

Deprecated: The Carbon Alias Manager is deprecated. This function should only be used to convert Carbon AliasRecords to bookmark data.

func CFURLCreateBookmarkDataFromFile

func CFURLCreateBookmarkDataFromFile(allocator unsafe.Pointer, fileURL unsafe.Pointer, errorRef unsafe.Pointer) unsafe.Pointer

func CFURLCreateByResolvingBookmarkData

func CFURLCreateByResolvingBookmarkData(allocator unsafe.Pointer, bookmark unsafe.Pointer, options CFURLBookmarkResolutionOptions, relativeToURL unsafe.Pointer, resourcePropertiesToInclude unsafe.Pointer, isStale *uint8, error_ unsafe.Pointer) unsafe.Pointer

func CFURLCreateCopyAppendingPathComponent

func CFURLCreateCopyAppendingPathComponent(allocator unsafe.Pointer, url unsafe.Pointer, pathComponent unsafe.Pointer, isDirectory uint8) unsafe.Pointer

func CFURLCreateCopyAppendingPathExtension

func CFURLCreateCopyAppendingPathExtension(allocator unsafe.Pointer, url unsafe.Pointer, extension unsafe.Pointer) unsafe.Pointer

func CFURLCreateCopyDeletingLastPathComponent

func CFURLCreateCopyDeletingLastPathComponent(allocator unsafe.Pointer, url unsafe.Pointer) unsafe.Pointer

func CFURLCreateCopyDeletingPathExtension

func CFURLCreateCopyDeletingPathExtension(allocator unsafe.Pointer, url unsafe.Pointer) unsafe.Pointer

func CFURLCreateData

func CFURLCreateData(allocator unsafe.Pointer, url unsafe.Pointer, encoding uint, escapeWhitespace uint8) unsafe.Pointer

func CFURLCreateDataAndPropertiesFromResource deprecated

func CFURLCreateDataAndPropertiesFromResource(alloc unsafe.Pointer, url unsafe.Pointer, resourceData unsafe.Pointer, properties unsafe.Pointer, desiredProperties unsafe.Pointer, errorCode *int) uint8

Deprecated: For resource data, use the CFReadStream API. For file resource properties, use CFURLCopyResourcePropertiesForKeys.

func CFURLCreateFilePathURL

func CFURLCreateFilePathURL(allocator unsafe.Pointer, url unsafe.Pointer, error_ unsafe.Pointer) unsafe.Pointer

func CFURLCreateFileReferenceURL

func CFURLCreateFileReferenceURL(allocator unsafe.Pointer, url unsafe.Pointer, error_ unsafe.Pointer) unsafe.Pointer

func CFURLCreateFromFSRef deprecated

func CFURLCreateFromFSRef(allocator unsafe.Pointer, fsRef objc.ID) unsafe.Pointer

Deprecated: Not supported

func CFURLCreateFromFileSystemRepresentation

func CFURLCreateFromFileSystemRepresentation(allocator unsafe.Pointer, buffer *uint8, bufLen int, isDirectory uint8) unsafe.Pointer

func CFURLCreateFromFileSystemRepresentationRelativeToBase

func CFURLCreateFromFileSystemRepresentationRelativeToBase(allocator unsafe.Pointer, buffer *uint8, bufLen int, isDirectory uint8, baseURL unsafe.Pointer) unsafe.Pointer

func CFURLCreatePropertyFromResource deprecated

func CFURLCreatePropertyFromResource(alloc unsafe.Pointer, url unsafe.Pointer, property unsafe.Pointer, errorCode *int) unsafe.Pointer

Deprecated: For file resource properties, use CFURLCopyResourcePropertyForKey.

func CFURLCreateResourcePropertiesForKeysFromBookmarkData

func CFURLCreateResourcePropertiesForKeysFromBookmarkData(allocator unsafe.Pointer, resourcePropertiesToReturn unsafe.Pointer, bookmark unsafe.Pointer) unsafe.Pointer

func CFURLCreateResourcePropertyForKeyFromBookmarkData

func CFURLCreateResourcePropertyForKeyFromBookmarkData(allocator unsafe.Pointer, resourcePropertyKey unsafe.Pointer, bookmark unsafe.Pointer) unsafe.Pointer

func CFURLCreateStringByAddingPercentEscapes deprecated

func CFURLCreateStringByAddingPercentEscapes(allocator unsafe.Pointer, originalString unsafe.Pointer, charactersToLeaveUnescaped unsafe.Pointer, legalURLCharactersToBeEscaped unsafe.Pointer, encoding uint) unsafe.Pointer

Deprecated: Use [NSString stringByAddingPercentEncodingWithAllowedCharacters:] instead, which always uses the recommended UTF-8 encoding, and which encodes for a specific URL component or subcomponent (since each URL component or subcomponent has different rules for what characters are valid).

func CFURLCreateStringByReplacingPercentEscapes

func CFURLCreateStringByReplacingPercentEscapes(allocator unsafe.Pointer, originalString unsafe.Pointer, charactersToLeaveEscaped unsafe.Pointer) unsafe.Pointer

func CFURLCreateStringByReplacingPercentEscapesUsingEncoding deprecated

func CFURLCreateStringByReplacingPercentEscapesUsingEncoding(allocator unsafe.Pointer, origString unsafe.Pointer, charsToLeaveEscaped unsafe.Pointer, encoding uint) unsafe.Pointer

Deprecated: Use [NSString stringByRemovingPercentEncoding] or CFURLCreateStringByReplacingPercentEscapes() instead, which always uses the recommended UTF-8 encoding.

func CFURLCreateWithBytes

func CFURLCreateWithBytes(allocator unsafe.Pointer, uRLBytes *uint8, length int, encoding uint, baseURL unsafe.Pointer) unsafe.Pointer

func CFURLCreateWithFileSystemPath

func CFURLCreateWithFileSystemPath(allocator unsafe.Pointer, filePath unsafe.Pointer, pathStyle CFURLPathStyle, isDirectory uint8) unsafe.Pointer

func CFURLCreateWithFileSystemPathRelativeToBase

func CFURLCreateWithFileSystemPathRelativeToBase(allocator unsafe.Pointer, filePath unsafe.Pointer, pathStyle CFURLPathStyle, isDirectory uint8, baseURL unsafe.Pointer) unsafe.Pointer

func CFURLCreateWithString

func CFURLCreateWithString(allocator unsafe.Pointer, uRLString unsafe.Pointer, baseURL unsafe.Pointer) unsafe.Pointer

func CFURLDestroyResource deprecated

func CFURLDestroyResource(url unsafe.Pointer, errorCode *int) uint8

Deprecated: Use CFURLGetFileSystemRepresentation and removefile(3) instead.

func CFURLEnumeratorCreateForDirectoryURL

func CFURLEnumeratorCreateForDirectoryURL(alloc unsafe.Pointer, directoryURL unsafe.Pointer, option CFURLEnumeratorOptions, propertyKeys unsafe.Pointer) unsafe.Pointer

func CFURLEnumeratorCreateForMountedVolumes

func CFURLEnumeratorCreateForMountedVolumes(alloc unsafe.Pointer, option CFURLEnumeratorOptions, propertyKeys unsafe.Pointer) unsafe.Pointer

func CFURLEnumeratorGetDescendentLevel

func CFURLEnumeratorGetDescendentLevel(enumerator unsafe.Pointer) int

func CFURLEnumeratorGetSourceDidChange deprecated

func CFURLEnumeratorGetSourceDidChange(enumerator unsafe.Pointer) uint8

Deprecated: Use File System Events API instead

func CFURLEnumeratorGetTypeID

func CFURLEnumeratorGetTypeID() uint

func CFURLEnumeratorSkipDescendents

func CFURLEnumeratorSkipDescendents(enumerator unsafe.Pointer)

func CFURLGetBaseURL

func CFURLGetBaseURL(anURL unsafe.Pointer) unsafe.Pointer

func CFURLGetBytes

func CFURLGetBytes(url unsafe.Pointer, buffer *uint8, bufferLength int) int

func CFURLGetFSRef deprecated

func CFURLGetFSRef(url unsafe.Pointer, fsRef objc.ID) uint8

Deprecated: Not supported

func CFURLGetFileSystemRepresentation

func CFURLGetFileSystemRepresentation(url unsafe.Pointer, resolveAgainstBase uint8, buffer *uint8, maxBufLen int) uint8

func CFURLGetPortNumber

func CFURLGetPortNumber(anURL unsafe.Pointer) int

func CFURLGetString

func CFURLGetString(anURL unsafe.Pointer) unsafe.Pointer

func CFURLGetTypeID

func CFURLGetTypeID() uint

func CFURLHasDirectoryPath

func CFURLHasDirectoryPath(anURL unsafe.Pointer) uint8

func CFURLIsFileReferenceURL

func CFURLIsFileReferenceURL(url unsafe.Pointer) uint8

func CFURLResourceIsReachable

func CFURLResourceIsReachable(url unsafe.Pointer, error_ unsafe.Pointer) uint8

func CFURLSetResourcePropertiesForKeys

func CFURLSetResourcePropertiesForKeys(url unsafe.Pointer, keyedPropertyValues unsafe.Pointer, error_ unsafe.Pointer) uint8

func CFURLSetResourcePropertyForKey

func CFURLSetResourcePropertyForKey(url unsafe.Pointer, key unsafe.Pointer, propertyValue unsafe.Pointer, error_ unsafe.Pointer) uint8

func CFURLSetTemporaryResourcePropertyForKey

func CFURLSetTemporaryResourcePropertyForKey(url unsafe.Pointer, key unsafe.Pointer, propertyValue unsafe.Pointer)

func CFURLStartAccessingSecurityScopedResource

func CFURLStartAccessingSecurityScopedResource(url unsafe.Pointer) uint8

func CFURLStopAccessingSecurityScopedResource

func CFURLStopAccessingSecurityScopedResource(url unsafe.Pointer)

func CFURLWriteBookmarkDataToFile

func CFURLWriteBookmarkDataToFile(bookmarkRef unsafe.Pointer, fileURL unsafe.Pointer, options uint, errorRef unsafe.Pointer) uint8

func CFURLWriteDataAndPropertiesToResource deprecated

func CFURLWriteDataAndPropertiesToResource(url unsafe.Pointer, dataToWrite unsafe.Pointer, propertiesToWrite unsafe.Pointer, errorCode *int) uint8

Deprecated: For resource data, use the CFWriteStream API. For file resource properties, use CFURLSetResourcePropertiesForKeys.

func CFUUIDCreate

func CFUUIDCreate(alloc unsafe.Pointer) unsafe.Pointer

func CFUUIDCreateFromString

func CFUUIDCreateFromString(alloc unsafe.Pointer, uuidStr unsafe.Pointer) unsafe.Pointer

func CFUUIDCreateFromUUIDBytes

func CFUUIDCreateFromUUIDBytes(alloc unsafe.Pointer, bytes_ CFUUIDBytes) unsafe.Pointer

func CFUUIDCreateString

func CFUUIDCreateString(alloc unsafe.Pointer, uuid unsafe.Pointer) unsafe.Pointer

func CFUUIDCreateWithBytes

func CFUUIDCreateWithBytes(alloc unsafe.Pointer, byte0 uint8, byte1 uint8, byte2 uint8, byte3 uint8, byte4 uint8, byte5 uint8, byte6 uint8, byte7 uint8, byte8 uint8, byte9 uint8, byte10 uint8, byte11 uint8, byte12 uint8, byte13 uint8, byte14 uint8, byte15 uint8) unsafe.Pointer

func CFUUIDGetConstantUUIDWithBytes

func CFUUIDGetConstantUUIDWithBytes(alloc unsafe.Pointer, byte0 uint8, byte1 uint8, byte2 uint8, byte3 uint8, byte4 uint8, byte5 uint8, byte6 uint8, byte7 uint8, byte8 uint8, byte9 uint8, byte10 uint8, byte11 uint8, byte12 uint8, byte13 uint8, byte14 uint8, byte15 uint8) unsafe.Pointer

func CFUUIDGetTypeID

func CFUUIDGetTypeID() uint

func CFUserNotificationCancel

func CFUserNotificationCancel(userNotification unsafe.Pointer) int

func CFUserNotificationCheckBoxChecked

func CFUserNotificationCheckBoxChecked(i int) uint

func CFUserNotificationCreate

func CFUserNotificationCreate(allocator unsafe.Pointer, timeout float64, flags uint, error_ *int, dictionary unsafe.Pointer) unsafe.Pointer

func CFUserNotificationCreateRunLoopSource

func CFUserNotificationCreateRunLoopSource(allocator unsafe.Pointer, userNotification unsafe.Pointer, callout unsafe.Pointer, order int) unsafe.Pointer

func CFUserNotificationDisplayAlert

func CFUserNotificationDisplayAlert(timeout float64, flags uint, iconURL unsafe.Pointer, soundURL unsafe.Pointer, localizationURL unsafe.Pointer, alertHeader unsafe.Pointer, alertMessage unsafe.Pointer, defaultButtonTitle unsafe.Pointer, alternateButtonTitle unsafe.Pointer, otherButtonTitle unsafe.Pointer, responseFlags *uint) int

func CFUserNotificationDisplayNotice

func CFUserNotificationDisplayNotice(timeout float64, flags uint, iconURL unsafe.Pointer, soundURL unsafe.Pointer, localizationURL unsafe.Pointer, alertHeader unsafe.Pointer, alertMessage unsafe.Pointer, defaultButtonTitle unsafe.Pointer) int

func CFUserNotificationGetResponseDictionary

func CFUserNotificationGetResponseDictionary(userNotification unsafe.Pointer) unsafe.Pointer

func CFUserNotificationGetResponseValue

func CFUserNotificationGetResponseValue(userNotification unsafe.Pointer, key unsafe.Pointer, idx int) unsafe.Pointer

func CFUserNotificationGetTypeID

func CFUserNotificationGetTypeID() uint

func CFUserNotificationPopUpSelection

func CFUserNotificationPopUpSelection(n int) uint

func CFUserNotificationReceiveResponse

func CFUserNotificationReceiveResponse(userNotification unsafe.Pointer, timeout float64, responseFlags *uint) int

func CFUserNotificationSecureTextField

func CFUserNotificationSecureTextField(i int) uint

func CFUserNotificationUpdate

func CFUserNotificationUpdate(userNotification unsafe.Pointer, timeout float64, flags uint, dictionary unsafe.Pointer) int

func CFWriteStreamCanAcceptBytes

func CFWriteStreamCanAcceptBytes(stream unsafe.Pointer) uint8

func CFWriteStreamClose

func CFWriteStreamClose(stream unsafe.Pointer)

func CFWriteStreamCopyDispatchQueue

func CFWriteStreamCopyDispatchQueue(stream unsafe.Pointer) unsafe.Pointer

func CFWriteStreamCopyError

func CFWriteStreamCopyError(stream unsafe.Pointer) unsafe.Pointer

func CFWriteStreamCopyProperty

func CFWriteStreamCopyProperty(stream unsafe.Pointer, propertyName unsafe.Pointer) unsafe.Pointer

func CFWriteStreamCreateWithAllocatedBuffers

func CFWriteStreamCreateWithAllocatedBuffers(alloc unsafe.Pointer, bufferAllocator unsafe.Pointer) unsafe.Pointer

func CFWriteStreamCreateWithBuffer

func CFWriteStreamCreateWithBuffer(alloc unsafe.Pointer, buffer *uint8, bufferCapacity int) unsafe.Pointer

func CFWriteStreamCreateWithFile

func CFWriteStreamCreateWithFile(alloc unsafe.Pointer, fileURL unsafe.Pointer) unsafe.Pointer

func CFWriteStreamGetTypeID

func CFWriteStreamGetTypeID() uint

func CFWriteStreamOpen

func CFWriteStreamOpen(stream unsafe.Pointer) uint8

func CFWriteStreamScheduleWithRunLoop

func CFWriteStreamScheduleWithRunLoop(stream unsafe.Pointer, runLoop unsafe.Pointer, runLoopMode unsafe.Pointer)

func CFWriteStreamSetClient

func CFWriteStreamSetClient(stream unsafe.Pointer, streamEvents uint, clientCB unsafe.Pointer, clientContext *CFStreamClientContext) uint8

func CFWriteStreamSetDispatchQueue

func CFWriteStreamSetDispatchQueue(stream unsafe.Pointer, q unsafe.Pointer)

func CFWriteStreamSetProperty

func CFWriteStreamSetProperty(stream unsafe.Pointer, propertyName unsafe.Pointer, propertyValue unsafe.Pointer) uint8

func CFWriteStreamUnscheduleFromRunLoop

func CFWriteStreamUnscheduleFromRunLoop(stream unsafe.Pointer, runLoop unsafe.Pointer, runLoopMode unsafe.Pointer)

func CFWriteStreamWrite

func CFWriteStreamWrite(stream unsafe.Pointer, buffer *uint8, bufferLength int) int

func CFXMLCreateStringByEscapingEntities

func CFXMLCreateStringByEscapingEntities(allocator unsafe.Pointer, string_ unsafe.Pointer, entitiesDictionary unsafe.Pointer) unsafe.Pointer

func CFXMLCreateStringByUnescapingEntities

func CFXMLCreateStringByUnescapingEntities(allocator unsafe.Pointer, string_ unsafe.Pointer, entitiesDictionary unsafe.Pointer) unsafe.Pointer

func CFXMLNodeCreate deprecated

func CFXMLNodeCreate(alloc unsafe.Pointer, xmlType CFXMLNodeTypeCode, dataString unsafe.Pointer, additionalInfoPtr unsafe.Pointer, version int) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLNodeCreateCopy deprecated

func CFXMLNodeCreateCopy(alloc unsafe.Pointer, origNode unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLNodeGetInfoPtr deprecated

func CFXMLNodeGetInfoPtr(node unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLNodeGetString deprecated

func CFXMLNodeGetString(node unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLNodeGetTypeID deprecated

func CFXMLNodeGetTypeID() uint

Deprecated: since macOS 10.8.

func CFXMLNodeGetVersion deprecated

func CFXMLNodeGetVersion(node unsafe.Pointer) int

Deprecated: since macOS 10.8.

func CFXMLParserAbort deprecated

func CFXMLParserAbort(parser unsafe.Pointer, errorCode CFXMLParserStatusCode, errorDescription unsafe.Pointer)

Deprecated: since macOS 10.8.

func CFXMLParserCopyErrorDescription deprecated

func CFXMLParserCopyErrorDescription(parser unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLParserCreate deprecated

func CFXMLParserCreate(allocator unsafe.Pointer, xmlData unsafe.Pointer, dataSource unsafe.Pointer, parseOptions uint, versionOfNodes int, callBacks *CFXMLParserCallBacks, context_ *CFXMLParserContext) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLParserCreateWithDataFromURL deprecated

func CFXMLParserCreateWithDataFromURL(allocator unsafe.Pointer, dataSource unsafe.Pointer, parseOptions uint, versionOfNodes int, callBacks *CFXMLParserCallBacks, context_ *CFXMLParserContext) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLParserGetCallBacks deprecated

func CFXMLParserGetCallBacks(parser unsafe.Pointer, callBacks *CFXMLParserCallBacks)

Deprecated: since macOS 10.8.

func CFXMLParserGetContext deprecated

func CFXMLParserGetContext(parser unsafe.Pointer, context_ *CFXMLParserContext)

Deprecated: since macOS 10.8.

func CFXMLParserGetDocument deprecated

func CFXMLParserGetDocument(parser unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLParserGetLineNumber deprecated

func CFXMLParserGetLineNumber(parser unsafe.Pointer) int

Deprecated: since macOS 10.8.

func CFXMLParserGetLocation deprecated

func CFXMLParserGetLocation(parser unsafe.Pointer) int

Deprecated: since macOS 10.8.

func CFXMLParserGetSourceURL deprecated

func CFXMLParserGetSourceURL(parser unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLParserGetTypeID deprecated

func CFXMLParserGetTypeID() uint

Deprecated: since macOS 10.8.

func CFXMLParserParse deprecated

func CFXMLParserParse(parser unsafe.Pointer) uint8

Deprecated: since macOS 10.8.

func CFXMLTreeCreateFromData deprecated

func CFXMLTreeCreateFromData(allocator unsafe.Pointer, xmlData unsafe.Pointer, dataSource unsafe.Pointer, parseOptions uint, versionOfNodes int) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLTreeCreateFromDataWithError deprecated

func CFXMLTreeCreateFromDataWithError(allocator unsafe.Pointer, xmlData unsafe.Pointer, dataSource unsafe.Pointer, parseOptions uint, versionOfNodes int, errorDict unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLTreeCreateWithDataFromURL deprecated

func CFXMLTreeCreateWithDataFromURL(allocator unsafe.Pointer, dataSource unsafe.Pointer, parseOptions uint, versionOfNodes int) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLTreeCreateWithNode deprecated

func CFXMLTreeCreateWithNode(allocator unsafe.Pointer, node unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLTreeCreateXMLData deprecated

func CFXMLTreeCreateXMLData(allocator unsafe.Pointer, xmlTree unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func CFXMLTreeGetNode deprecated

func CFXMLTreeGetNode(xmlTree unsafe.Pointer) unsafe.Pointer

Deprecated: since macOS 10.8.

func KCFAbsoluteTimeIntervalSince1904

func KCFAbsoluteTimeIntervalSince1904() float64

func KCFAbsoluteTimeIntervalSince1970

func KCFAbsoluteTimeIntervalSince1970() float64

func KCFAllocatorDefault

func KCFAllocatorDefault() uintptr

func KCFAllocatorMalloc

func KCFAllocatorMalloc() uintptr

func KCFAllocatorMallocZone

func KCFAllocatorMallocZone() uintptr

func KCFAllocatorNull

func KCFAllocatorNull() uintptr

func KCFAllocatorSystemDefault

func KCFAllocatorSystemDefault() uintptr

func KCFAllocatorUseContext

func KCFAllocatorUseContext() uintptr

func KCFBanglaCalendar

func KCFBanglaCalendar() uintptr

func KCFBooleanFalse

func KCFBooleanFalse() uintptr

func KCFBooleanTrue

func KCFBooleanTrue() uintptr

func KCFBuddhistCalendar

func KCFBuddhistCalendar() uintptr

func KCFBundleDevelopmentRegionKey

func KCFBundleDevelopmentRegionKey() uintptr

func KCFBundleExecutableKey

func KCFBundleExecutableKey() uintptr

func KCFBundleIdentifierKey

func KCFBundleIdentifierKey() uintptr

func KCFBundleInfoDictionaryVersionKey

func KCFBundleInfoDictionaryVersionKey() uintptr

func KCFBundleLocalizationsKey

func KCFBundleLocalizationsKey() uintptr

func KCFBundleNameKey

func KCFBundleNameKey() uintptr

func KCFBundleVersionKey

func KCFBundleVersionKey() uintptr

func KCFChineseCalendar

func KCFChineseCalendar() uintptr

func KCFCoreFoundationVersionNumber

func KCFCoreFoundationVersionNumber() float64

func KCFDangiCalendar

func KCFDangiCalendar() uintptr

func KCFDateFormatterAMSymbol

func KCFDateFormatterAMSymbol() uintptr

func KCFDateFormatterCalendar

func KCFDateFormatterCalendar() uintptr

func KCFDateFormatterCalendarName

func KCFDateFormatterCalendarName() uintptr

func KCFDateFormatterDefaultDate

func KCFDateFormatterDefaultDate() uintptr

func KCFDateFormatterDefaultFormat

func KCFDateFormatterDefaultFormat() uintptr

func KCFDateFormatterDoesRelativeDateFormattingKey

func KCFDateFormatterDoesRelativeDateFormattingKey() uintptr

func KCFDateFormatterEraSymbols

func KCFDateFormatterEraSymbols() uintptr

func KCFDateFormatterGregorianStartDate

func KCFDateFormatterGregorianStartDate() uintptr

func KCFDateFormatterIsLenient

func KCFDateFormatterIsLenient() uintptr

func KCFDateFormatterLongEraSymbols

func KCFDateFormatterLongEraSymbols() uintptr

func KCFDateFormatterMonthSymbols

func KCFDateFormatterMonthSymbols() uintptr

func KCFDateFormatterPMSymbol

func KCFDateFormatterPMSymbol() uintptr

func KCFDateFormatterQuarterSymbols

func KCFDateFormatterQuarterSymbols() uintptr

func KCFDateFormatterShortMonthSymbols

func KCFDateFormatterShortMonthSymbols() uintptr

func KCFDateFormatterShortQuarterSymbols

func KCFDateFormatterShortQuarterSymbols() uintptr

func KCFDateFormatterShortStandaloneMonthSymbols

func KCFDateFormatterShortStandaloneMonthSymbols() uintptr

func KCFDateFormatterShortStandaloneQuarterSymbols

func KCFDateFormatterShortStandaloneQuarterSymbols() uintptr

func KCFDateFormatterShortStandaloneWeekdaySymbols

func KCFDateFormatterShortStandaloneWeekdaySymbols() uintptr

func KCFDateFormatterShortWeekdaySymbols

func KCFDateFormatterShortWeekdaySymbols() uintptr

func KCFDateFormatterStandaloneMonthSymbols

func KCFDateFormatterStandaloneMonthSymbols() uintptr

func KCFDateFormatterStandaloneQuarterSymbols

func KCFDateFormatterStandaloneQuarterSymbols() uintptr

func KCFDateFormatterStandaloneWeekdaySymbols

func KCFDateFormatterStandaloneWeekdaySymbols() uintptr

func KCFDateFormatterTimeZone

func KCFDateFormatterTimeZone() uintptr

func KCFDateFormatterTwoDigitStartDate

func KCFDateFormatterTwoDigitStartDate() uintptr

func KCFDateFormatterVeryShortMonthSymbols

func KCFDateFormatterVeryShortMonthSymbols() uintptr

func KCFDateFormatterVeryShortStandaloneMonthSymbols

func KCFDateFormatterVeryShortStandaloneMonthSymbols() uintptr

func KCFDateFormatterVeryShortStandaloneWeekdaySymbols

func KCFDateFormatterVeryShortStandaloneWeekdaySymbols() uintptr

func KCFDateFormatterVeryShortWeekdaySymbols

func KCFDateFormatterVeryShortWeekdaySymbols() uintptr

func KCFDateFormatterWeekdaySymbols

func KCFDateFormatterWeekdaySymbols() uintptr

func KCFErrorDescriptionKey

func KCFErrorDescriptionKey() uintptr

func KCFErrorDomainCocoa

func KCFErrorDomainCocoa() uintptr

func KCFErrorDomainMach

func KCFErrorDomainMach() uintptr

func KCFErrorDomainOSStatus

func KCFErrorDomainOSStatus() uintptr

func KCFErrorDomainPOSIX

func KCFErrorDomainPOSIX() uintptr

func KCFErrorFilePathKey

func KCFErrorFilePathKey() uintptr

func KCFErrorLocalizedDescriptionKey

func KCFErrorLocalizedDescriptionKey() uintptr

func KCFErrorLocalizedFailureKey

func KCFErrorLocalizedFailureKey() uintptr

func KCFErrorLocalizedFailureReasonKey

func KCFErrorLocalizedFailureReasonKey() uintptr

func KCFErrorLocalizedRecoverySuggestionKey

func KCFErrorLocalizedRecoverySuggestionKey() uintptr

func KCFErrorURLKey

func KCFErrorURLKey() uintptr

func KCFErrorUnderlyingErrorKey

func KCFErrorUnderlyingErrorKey() uintptr

func KCFGregorianCalendar

func KCFGregorianCalendar() uintptr

func KCFGujaratiCalendar

func KCFGujaratiCalendar() uintptr

func KCFHebrewCalendar

func KCFHebrewCalendar() uintptr

func KCFISO8601Calendar

func KCFISO8601Calendar() uintptr

func KCFIndianCalendar

func KCFIndianCalendar() uintptr

func KCFIslamicCalendar

func KCFIslamicCalendar() uintptr

func KCFIslamicCivilCalendar

func KCFIslamicCivilCalendar() uintptr

func KCFIslamicTabularCalendar

func KCFIslamicTabularCalendar() uintptr

func KCFIslamicUmmAlQuraCalendar

func KCFIslamicUmmAlQuraCalendar() uintptr

func KCFJapaneseCalendar

func KCFJapaneseCalendar() uintptr

func KCFKannadaCalendar

func KCFKannadaCalendar() uintptr

func KCFLocaleAlternateQuotationBeginDelimiterKey

func KCFLocaleAlternateQuotationBeginDelimiterKey() uintptr

func KCFLocaleAlternateQuotationEndDelimiterKey

func KCFLocaleAlternateQuotationEndDelimiterKey() uintptr

func KCFLocaleCalendar

func KCFLocaleCalendar() uintptr

func KCFLocaleCalendarIdentifier

func KCFLocaleCalendarIdentifier() uintptr

func KCFLocaleCollationIdentifier

func KCFLocaleCollationIdentifier() uintptr

func KCFLocaleCollatorIdentifier

func KCFLocaleCollatorIdentifier() uintptr

func KCFLocaleCountryCode

func KCFLocaleCountryCode() uintptr

func KCFLocaleCurrencyCode

func KCFLocaleCurrencyCode() uintptr

func KCFLocaleCurrencySymbol

func KCFLocaleCurrencySymbol() uintptr

func KCFLocaleCurrentLocaleDidChangeNotification

func KCFLocaleCurrentLocaleDidChangeNotification() uintptr

func KCFLocaleDecimalSeparator

func KCFLocaleDecimalSeparator() uintptr

func KCFLocaleExemplarCharacterSet

func KCFLocaleExemplarCharacterSet() uintptr

func KCFLocaleGroupingSeparator

func KCFLocaleGroupingSeparator() uintptr

func KCFLocaleIdentifier

func KCFLocaleIdentifier() uintptr

func KCFLocaleLanguageCode

func KCFLocaleLanguageCode() uintptr

func KCFLocaleMeasurementSystem

func KCFLocaleMeasurementSystem() uintptr

func KCFLocaleQuotationBeginDelimiterKey

func KCFLocaleQuotationBeginDelimiterKey() uintptr

func KCFLocaleQuotationEndDelimiterKey

func KCFLocaleQuotationEndDelimiterKey() uintptr

func KCFLocaleScriptCode

func KCFLocaleScriptCode() uintptr

func KCFLocaleUsesMetricSystem

func KCFLocaleUsesMetricSystem() uintptr

func KCFLocaleVariantCode

func KCFLocaleVariantCode() uintptr

func KCFMalayalamCalendar

func KCFMalayalamCalendar() uintptr

func KCFMarathiCalendar

func KCFMarathiCalendar() uintptr

func KCFNull

func KCFNull() uintptr

func KCFNumberFormatterAlwaysShowDecimalSeparator

func KCFNumberFormatterAlwaysShowDecimalSeparator() uintptr

func KCFNumberFormatterCurrencyCode

func KCFNumberFormatterCurrencyCode() uintptr

func KCFNumberFormatterCurrencyDecimalSeparator

func KCFNumberFormatterCurrencyDecimalSeparator() uintptr

func KCFNumberFormatterCurrencyGroupingSeparator

func KCFNumberFormatterCurrencyGroupingSeparator() uintptr

func KCFNumberFormatterCurrencySymbol

func KCFNumberFormatterCurrencySymbol() uintptr

func KCFNumberFormatterDecimalSeparator

func KCFNumberFormatterDecimalSeparator() uintptr

func KCFNumberFormatterDefaultFormat

func KCFNumberFormatterDefaultFormat() uintptr

func KCFNumberFormatterExponentSymbol

func KCFNumberFormatterExponentSymbol() uintptr

func KCFNumberFormatterFormatWidth

func KCFNumberFormatterFormatWidth() uintptr

func KCFNumberFormatterGroupingSeparator

func KCFNumberFormatterGroupingSeparator() uintptr

func KCFNumberFormatterGroupingSize

func KCFNumberFormatterGroupingSize() uintptr

func KCFNumberFormatterInfinitySymbol

func KCFNumberFormatterInfinitySymbol() uintptr

func KCFNumberFormatterInternationalCurrencySymbol

func KCFNumberFormatterInternationalCurrencySymbol() uintptr

func KCFNumberFormatterIsLenient

func KCFNumberFormatterIsLenient() uintptr

func KCFNumberFormatterMaxFractionDigits

func KCFNumberFormatterMaxFractionDigits() uintptr

func KCFNumberFormatterMaxIntegerDigits

func KCFNumberFormatterMaxIntegerDigits() uintptr

func KCFNumberFormatterMaxSignificantDigits

func KCFNumberFormatterMaxSignificantDigits() uintptr

func KCFNumberFormatterMinFractionDigits

func KCFNumberFormatterMinFractionDigits() uintptr

func KCFNumberFormatterMinGroupingDigits

func KCFNumberFormatterMinGroupingDigits() uintptr

func KCFNumberFormatterMinIntegerDigits

func KCFNumberFormatterMinIntegerDigits() uintptr

func KCFNumberFormatterMinSignificantDigits

func KCFNumberFormatterMinSignificantDigits() uintptr

func KCFNumberFormatterMinusSign

func KCFNumberFormatterMinusSign() uintptr

func KCFNumberFormatterMultiplier

func KCFNumberFormatterMultiplier() uintptr

func KCFNumberFormatterNaNSymbol

func KCFNumberFormatterNaNSymbol() uintptr

func KCFNumberFormatterNegativePrefix

func KCFNumberFormatterNegativePrefix() uintptr

func KCFNumberFormatterNegativeSuffix

func KCFNumberFormatterNegativeSuffix() uintptr

func KCFNumberFormatterPaddingCharacter

func KCFNumberFormatterPaddingCharacter() uintptr

func KCFNumberFormatterPaddingPosition

func KCFNumberFormatterPaddingPosition() uintptr

func KCFNumberFormatterPerMillSymbol

func KCFNumberFormatterPerMillSymbol() uintptr

func KCFNumberFormatterPercentSymbol

func KCFNumberFormatterPercentSymbol() uintptr

func KCFNumberFormatterPlusSign

func KCFNumberFormatterPlusSign() uintptr

func KCFNumberFormatterPositivePrefix

func KCFNumberFormatterPositivePrefix() uintptr

func KCFNumberFormatterPositiveSuffix

func KCFNumberFormatterPositiveSuffix() uintptr

func KCFNumberFormatterRoundingIncrement

func KCFNumberFormatterRoundingIncrement() uintptr

func KCFNumberFormatterRoundingMode

func KCFNumberFormatterRoundingMode() uintptr

func KCFNumberFormatterSecondaryGroupingSize

func KCFNumberFormatterSecondaryGroupingSize() uintptr

func KCFNumberFormatterUseGroupingSeparator

func KCFNumberFormatterUseGroupingSeparator() uintptr

func KCFNumberFormatterUseSignificantDigits

func KCFNumberFormatterUseSignificantDigits() uintptr

func KCFNumberFormatterZeroSymbol

func KCFNumberFormatterZeroSymbol() uintptr

func KCFNumberNaN

func KCFNumberNaN() uintptr

func KCFNumberNegativeInfinity

func KCFNumberNegativeInfinity() uintptr

func KCFNumberPositiveInfinity

func KCFNumberPositiveInfinity() uintptr

func KCFOdiaCalendar

func KCFOdiaCalendar() uintptr

func KCFPersianCalendar

func KCFPersianCalendar() uintptr

func KCFPlugInDynamicRegisterFunctionKey

func KCFPlugInDynamicRegisterFunctionKey() uintptr

func KCFPlugInDynamicRegistrationKey

func KCFPlugInDynamicRegistrationKey() uintptr

func KCFPlugInFactoriesKey

func KCFPlugInFactoriesKey() uintptr

func KCFPlugInTypesKey

func KCFPlugInTypesKey() uintptr

func KCFPlugInUnloadFunctionKey

func KCFPlugInUnloadFunctionKey() uintptr

func KCFPreferencesAnyApplication

func KCFPreferencesAnyApplication() uintptr

func KCFPreferencesAnyHost

func KCFPreferencesAnyHost() uintptr

func KCFPreferencesAnyUser

func KCFPreferencesAnyUser() uintptr

func KCFPreferencesCurrentApplication

func KCFPreferencesCurrentApplication() uintptr

func KCFPreferencesCurrentHost

func KCFPreferencesCurrentHost() uintptr

func KCFPreferencesCurrentUser

func KCFPreferencesCurrentUser() uintptr

func KCFRepublicOfChinaCalendar

func KCFRepublicOfChinaCalendar() uintptr

func KCFRunLoopCommonModes

func KCFRunLoopCommonModes() uintptr

func KCFRunLoopDefaultMode

func KCFRunLoopDefaultMode() uintptr

func KCFSocketCommandKey

func KCFSocketCommandKey() uintptr

func KCFSocketErrorKey

func KCFSocketErrorKey() uintptr

func KCFSocketNameKey

func KCFSocketNameKey() uintptr

func KCFSocketRegisterCommand

func KCFSocketRegisterCommand() uintptr

func KCFSocketResultKey

func KCFSocketResultKey() uintptr

func KCFSocketRetrieveCommand

func KCFSocketRetrieveCommand() uintptr

func KCFSocketValueKey

func KCFSocketValueKey() uintptr

func KCFStreamErrorDomainSOCKS

func KCFStreamErrorDomainSOCKS() uintptr

func KCFStreamErrorDomainSSL

func KCFStreamErrorDomainSSL() uintptr

func KCFStreamPropertyAppendToFile

func KCFStreamPropertyAppendToFile() uintptr

func KCFStreamPropertyDataWritten

func KCFStreamPropertyDataWritten() uintptr

func KCFStreamPropertyFileCurrentOffset

func KCFStreamPropertyFileCurrentOffset() uintptr

func KCFStreamPropertySOCKSPassword

func KCFStreamPropertySOCKSPassword() uintptr

func KCFStreamPropertySOCKSProxy

func KCFStreamPropertySOCKSProxy() uintptr

func KCFStreamPropertySOCKSProxyHost

func KCFStreamPropertySOCKSProxyHost() uintptr

func KCFStreamPropertySOCKSProxyPort

func KCFStreamPropertySOCKSProxyPort() uintptr

func KCFStreamPropertySOCKSUser

func KCFStreamPropertySOCKSUser() uintptr

func KCFStreamPropertySOCKSVersion

func KCFStreamPropertySOCKSVersion() uintptr

func KCFStreamPropertyShouldCloseNativeSocket

func KCFStreamPropertyShouldCloseNativeSocket() uintptr

func KCFStreamPropertySocketNativeHandle

func KCFStreamPropertySocketNativeHandle() uintptr

func KCFStreamPropertySocketRemoteHostName

func KCFStreamPropertySocketRemoteHostName() uintptr

func KCFStreamPropertySocketRemotePortNumber

func KCFStreamPropertySocketRemotePortNumber() uintptr

func KCFStreamPropertySocketSecurityLevel

func KCFStreamPropertySocketSecurityLevel() uintptr

func KCFStreamSocketSOCKSVersion4

func KCFStreamSocketSOCKSVersion4() uintptr

func KCFStreamSocketSOCKSVersion5

func KCFStreamSocketSOCKSVersion5() uintptr

func KCFStreamSocketSecurityLevelNegotiatedSSL

func KCFStreamSocketSecurityLevelNegotiatedSSL() uintptr

func KCFStreamSocketSecurityLevelNone

func KCFStreamSocketSecurityLevelNone() uintptr

func KCFStreamSocketSecurityLevelSSLv2

func KCFStreamSocketSecurityLevelSSLv2() uintptr

func KCFStreamSocketSecurityLevelSSLv3

func KCFStreamSocketSecurityLevelSSLv3() uintptr

func KCFStreamSocketSecurityLevelTLSv1

func KCFStreamSocketSecurityLevelTLSv1() uintptr

func KCFStringTransformFullwidthHalfwidth

func KCFStringTransformFullwidthHalfwidth() uintptr

func KCFStringTransformHiraganaKatakana

func KCFStringTransformHiraganaKatakana() uintptr

func KCFStringTransformLatinArabic

func KCFStringTransformLatinArabic() uintptr

func KCFStringTransformLatinCyrillic

func KCFStringTransformLatinCyrillic() uintptr

func KCFStringTransformLatinGreek

func KCFStringTransformLatinGreek() uintptr

func KCFStringTransformLatinHangul

func KCFStringTransformLatinHangul() uintptr

func KCFStringTransformLatinHebrew

func KCFStringTransformLatinHebrew() uintptr

func KCFStringTransformLatinHiragana

func KCFStringTransformLatinHiragana() uintptr

func KCFStringTransformLatinKatakana

func KCFStringTransformLatinKatakana() uintptr

func KCFStringTransformLatinThai

func KCFStringTransformLatinThai() uintptr

func KCFStringTransformMandarinLatin

func KCFStringTransformMandarinLatin() uintptr

func KCFStringTransformStripCombiningMarks

func KCFStringTransformStripCombiningMarks() uintptr

func KCFStringTransformStripDiacritics

func KCFStringTransformStripDiacritics() uintptr

func KCFStringTransformToLatin

func KCFStringTransformToLatin() uintptr

func KCFStringTransformToUnicodeName

func KCFStringTransformToUnicodeName() uintptr

func KCFStringTransformToXMLHex

func KCFStringTransformToXMLHex() uintptr

func KCFTamilCalendar

func KCFTamilCalendar() uintptr

func KCFTeluguCalendar

func KCFTeluguCalendar() uintptr

func KCFTimeZoneSystemTimeZoneDidChangeNotification

func KCFTimeZoneSystemTimeZoneDidChangeNotification() uintptr

func KCFURLAddedToDirectoryDateKey

func KCFURLAddedToDirectoryDateKey() uintptr

func KCFURLApplicationIsScriptableKey

func KCFURLApplicationIsScriptableKey() uintptr

func KCFURLAttributeModificationDateKey

func KCFURLAttributeModificationDateKey() uintptr

func KCFURLCanonicalPathKey

func KCFURLCanonicalPathKey() uintptr

func KCFURLContentAccessDateKey

func KCFURLContentAccessDateKey() uintptr

func KCFURLContentModificationDateKey

func KCFURLContentModificationDateKey() uintptr

func KCFURLCreationDateKey

func KCFURLCreationDateKey() uintptr

func KCFURLCustomIconKey deprecated

func KCFURLCustomIconKey() uintptr

Deprecated: Use NSURLCustomIconKey

func KCFURLDirectoryEntryCountKey

func KCFURLDirectoryEntryCountKey() uintptr

func KCFURLDocumentIdentifierKey

func KCFURLDocumentIdentifierKey() uintptr

func KCFURLEffectiveIconKey deprecated

func KCFURLEffectiveIconKey() uintptr

Deprecated: Use NSURLEffectiveIconKey

func KCFURLFileAllocatedSizeKey

func KCFURLFileAllocatedSizeKey() uintptr

func KCFURLFileContentIdentifierKey

func KCFURLFileContentIdentifierKey() uintptr

func KCFURLFileDirectoryContents deprecated

func KCFURLFileDirectoryContents() uintptr

Deprecated: Use the CFURLEnumerator API instead.

func KCFURLFileExists deprecated

func KCFURLFileExists() uintptr

Deprecated: Use CFURLResourceIsReachable instead.

func KCFURLFileIdentifierKey

func KCFURLFileIdentifierKey() uintptr

func KCFURLFileLastModificationTime deprecated

func KCFURLFileLastModificationTime() uintptr

Deprecated: Use CFURLCopyResourcePropertyForKey with kCFURLContentModificationDateKey instead.

func KCFURLFileLength deprecated

func KCFURLFileLength() uintptr

Deprecated: Use CFURLCopyResourcePropertyForKey with kCFURLFileSizeKey instead.

func KCFURLFileOwnerID deprecated

func KCFURLFileOwnerID() uintptr

Deprecated: Use CFURLCopyResourcePropertyForKey with kCFURLFileSecurityKey and then the CFFileSecurity API instead.

func KCFURLFilePOSIXMode deprecated

func KCFURLFilePOSIXMode() uintptr

Deprecated: Use CFURLCopyResourcePropertyForKey with kCFURLFileSecurityKey and then the CFFileSecurity API instead.

func KCFURLFileResourceIdentifierKey

func KCFURLFileResourceIdentifierKey() uintptr

func KCFURLFileResourceTypeBlockSpecial

func KCFURLFileResourceTypeBlockSpecial() uintptr

func KCFURLFileResourceTypeCharacterSpecial

func KCFURLFileResourceTypeCharacterSpecial() uintptr

func KCFURLFileResourceTypeDirectory

func KCFURLFileResourceTypeDirectory() uintptr

func KCFURLFileResourceTypeKey

func KCFURLFileResourceTypeKey() uintptr

func KCFURLFileResourceTypeNamedPipe

func KCFURLFileResourceTypeNamedPipe() uintptr

func KCFURLFileResourceTypeRegular

func KCFURLFileResourceTypeRegular() uintptr

func KCFURLFileResourceTypeSocket

func KCFURLFileResourceTypeSocket() uintptr
func KCFURLFileResourceTypeSymbolicLink() uintptr

func KCFURLFileResourceTypeUnknown

func KCFURLFileResourceTypeUnknown() uintptr

func KCFURLFileSecurityKey

func KCFURLFileSecurityKey() uintptr

func KCFURLFileSizeKey

func KCFURLFileSizeKey() uintptr

func KCFURLGenerationIdentifierKey

func KCFURLGenerationIdentifierKey() uintptr

func KCFURLHTTPStatusCode deprecated

func KCFURLHTTPStatusCode() uintptr

Deprecated: Use NSHTTPURLResponse methods instead.

func KCFURLHTTPStatusLine deprecated

func KCFURLHTTPStatusLine() uintptr

Deprecated: Use NSHTTPURLResponse methods instead.

func KCFURLHasHiddenExtensionKey

func KCFURLHasHiddenExtensionKey() uintptr

func KCFURLIsAliasFileKey

func KCFURLIsAliasFileKey() uintptr

func KCFURLIsApplicationKey

func KCFURLIsApplicationKey() uintptr

func KCFURLIsDirectoryKey

func KCFURLIsDirectoryKey() uintptr

func KCFURLIsExcludedFromBackupKey

func KCFURLIsExcludedFromBackupKey() uintptr

func KCFURLIsExecutableKey

func KCFURLIsExecutableKey() uintptr

func KCFURLIsHiddenKey

func KCFURLIsHiddenKey() uintptr

func KCFURLIsMountTriggerKey

func KCFURLIsMountTriggerKey() uintptr

func KCFURLIsPackageKey

func KCFURLIsPackageKey() uintptr

func KCFURLIsPurgeableKey

func KCFURLIsPurgeableKey() uintptr

func KCFURLIsReadableKey

func KCFURLIsReadableKey() uintptr

func KCFURLIsRegularFileKey

func KCFURLIsRegularFileKey() uintptr

func KCFURLIsSparseKey

func KCFURLIsSparseKey() uintptr

func KCFURLIsSymbolicLinkKey

func KCFURLIsSymbolicLinkKey() uintptr

func KCFURLIsSystemImmutableKey

func KCFURLIsSystemImmutableKey() uintptr

func KCFURLIsUbiquitousItemKey

func KCFURLIsUbiquitousItemKey() uintptr

func KCFURLIsUserImmutableKey

func KCFURLIsUserImmutableKey() uintptr

func KCFURLIsVolumeKey

func KCFURLIsVolumeKey() uintptr

func KCFURLIsWritableKey

func KCFURLIsWritableKey() uintptr

func KCFURLKeysOfUnsetValuesKey

func KCFURLKeysOfUnsetValuesKey() uintptr

func KCFURLLabelColorKey deprecated

func KCFURLLabelColorKey() uintptr

Deprecated: Use NSURLLabelColorKey

func KCFURLLabelNumberKey

func KCFURLLabelNumberKey() uintptr

func KCFURLLinkCountKey

func KCFURLLinkCountKey() uintptr

func KCFURLLocalizedLabelKey

func KCFURLLocalizedLabelKey() uintptr

func KCFURLLocalizedNameKey

func KCFURLLocalizedNameKey() uintptr

func KCFURLLocalizedTypeDescriptionKey

func KCFURLLocalizedTypeDescriptionKey() uintptr

func KCFURLMayHaveExtendedAttributesKey

func KCFURLMayHaveExtendedAttributesKey() uintptr

func KCFURLMayShareFileContentKey

func KCFURLMayShareFileContentKey() uintptr

func KCFURLNameKey

func KCFURLNameKey() uintptr

func KCFURLParentDirectoryURLKey

func KCFURLParentDirectoryURLKey() uintptr

func KCFURLPathKey

func KCFURLPathKey() uintptr

func KCFURLPreferredIOBlockSizeKey

func KCFURLPreferredIOBlockSizeKey() uintptr

func KCFURLQuarantinePropertiesKey

func KCFURLQuarantinePropertiesKey() uintptr

func KCFURLTagNamesKey

func KCFURLTagNamesKey() uintptr

func KCFURLTotalFileAllocatedSizeKey

func KCFURLTotalFileAllocatedSizeKey() uintptr

func KCFURLTotalFileSizeKey

func KCFURLTotalFileSizeKey() uintptr

func KCFURLTypeIdentifierKey deprecated

func KCFURLTypeIdentifierKey() uintptr

Deprecated: Use NSURLContentTypeKey instead

func KCFURLUbiquitousItemDownloadingErrorKey

func KCFURLUbiquitousItemDownloadingErrorKey() uintptr

func KCFURLUbiquitousItemDownloadingStatusCurrent

func KCFURLUbiquitousItemDownloadingStatusCurrent() uintptr

func KCFURLUbiquitousItemDownloadingStatusDownloaded

func KCFURLUbiquitousItemDownloadingStatusDownloaded() uintptr

func KCFURLUbiquitousItemDownloadingStatusKey

func KCFURLUbiquitousItemDownloadingStatusKey() uintptr

func KCFURLUbiquitousItemDownloadingStatusNotDownloaded

func KCFURLUbiquitousItemDownloadingStatusNotDownloaded() uintptr

func KCFURLUbiquitousItemHasUnresolvedConflictsKey

func KCFURLUbiquitousItemHasUnresolvedConflictsKey() uintptr

func KCFURLUbiquitousItemIsDownloadedKey deprecated

func KCFURLUbiquitousItemIsDownloadedKey() uintptr

Deprecated: Use kCFURLUbiquitousItemDownloadingStatusKey instead

func KCFURLUbiquitousItemIsDownloadingKey

func KCFURLUbiquitousItemIsDownloadingKey() uintptr

func KCFURLUbiquitousItemIsExcludedFromSyncKey

func KCFURLUbiquitousItemIsExcludedFromSyncKey() uintptr

func KCFURLUbiquitousItemIsSyncPausedKey

func KCFURLUbiquitousItemIsSyncPausedKey() uintptr

func KCFURLUbiquitousItemIsUploadedKey

func KCFURLUbiquitousItemIsUploadedKey() uintptr

func KCFURLUbiquitousItemIsUploadingKey

func KCFURLUbiquitousItemIsUploadingKey() uintptr

func KCFURLUbiquitousItemPercentDownloadedKey deprecated

func KCFURLUbiquitousItemPercentDownloadedKey() uintptr

Deprecated: Use NSMetadataQuery and NSMetadataUbiquitousItemPercentDownloadedKey on NSMetadataItem instead

func KCFURLUbiquitousItemPercentUploadedKey deprecated

func KCFURLUbiquitousItemPercentUploadedKey() uintptr

Deprecated: Use NSMetadataQuery and NSMetadataUbiquitousItemPercentUploadedKey on NSMetadataItem instead

func KCFURLUbiquitousItemSupportedSyncControlsKey

func KCFURLUbiquitousItemSupportedSyncControlsKey() uintptr

func KCFURLUbiquitousItemUploadingErrorKey

func KCFURLUbiquitousItemUploadingErrorKey() uintptr

func KCFURLVolumeAvailableCapacityForImportantUsageKey

func KCFURLVolumeAvailableCapacityForImportantUsageKey() uintptr

func KCFURLVolumeAvailableCapacityForOpportunisticUsageKey

func KCFURLVolumeAvailableCapacityForOpportunisticUsageKey() uintptr

func KCFURLVolumeAvailableCapacityKey

func KCFURLVolumeAvailableCapacityKey() uintptr

func KCFURLVolumeCreationDateKey

func KCFURLVolumeCreationDateKey() uintptr

func KCFURLVolumeIdentifierKey

func KCFURLVolumeIdentifierKey() uintptr

func KCFURLVolumeIsAutomountedKey

func KCFURLVolumeIsAutomountedKey() uintptr

func KCFURLVolumeIsBrowsableKey

func KCFURLVolumeIsBrowsableKey() uintptr

func KCFURLVolumeIsEjectableKey

func KCFURLVolumeIsEjectableKey() uintptr

func KCFURLVolumeIsEncryptedKey

func KCFURLVolumeIsEncryptedKey() uintptr

func KCFURLVolumeIsInternalKey

func KCFURLVolumeIsInternalKey() uintptr

func KCFURLVolumeIsJournalingKey

func KCFURLVolumeIsJournalingKey() uintptr

func KCFURLVolumeIsLocalKey

func KCFURLVolumeIsLocalKey() uintptr

func KCFURLVolumeIsReadOnlyKey

func KCFURLVolumeIsReadOnlyKey() uintptr

func KCFURLVolumeIsRemovableKey

func KCFURLVolumeIsRemovableKey() uintptr

func KCFURLVolumeIsRootFileSystemKey

func KCFURLVolumeIsRootFileSystemKey() uintptr

func KCFURLVolumeLocalizedFormatDescriptionKey

func KCFURLVolumeLocalizedFormatDescriptionKey() uintptr

func KCFURLVolumeLocalizedNameKey

func KCFURLVolumeLocalizedNameKey() uintptr

func KCFURLVolumeMaximumFileSizeKey

func KCFURLVolumeMaximumFileSizeKey() uintptr

func KCFURLVolumeMountFromLocationKey

func KCFURLVolumeMountFromLocationKey() uintptr

func KCFURLVolumeNameKey

func KCFURLVolumeNameKey() uintptr

func KCFURLVolumeResourceCountKey

func KCFURLVolumeResourceCountKey() uintptr

func KCFURLVolumeSubtypeKey

func KCFURLVolumeSubtypeKey() uintptr

func KCFURLVolumeSupportsAccessPermissionsKey

func KCFURLVolumeSupportsAccessPermissionsKey() uintptr

func KCFURLVolumeSupportsAdvisoryFileLockingKey

func KCFURLVolumeSupportsAdvisoryFileLockingKey() uintptr

func KCFURLVolumeSupportsCasePreservedNamesKey

func KCFURLVolumeSupportsCasePreservedNamesKey() uintptr

func KCFURLVolumeSupportsCaseSensitiveNamesKey

func KCFURLVolumeSupportsCaseSensitiveNamesKey() uintptr

func KCFURLVolumeSupportsCompressionKey

func KCFURLVolumeSupportsCompressionKey() uintptr

func KCFURLVolumeSupportsExclusiveRenamingKey

func KCFURLVolumeSupportsExclusiveRenamingKey() uintptr

func KCFURLVolumeSupportsExtendedSecurityKey

func KCFURLVolumeSupportsExtendedSecurityKey() uintptr

func KCFURLVolumeSupportsFileCloningKey

func KCFURLVolumeSupportsFileCloningKey() uintptr

func KCFURLVolumeSupportsFileProtectionKey

func KCFURLVolumeSupportsFileProtectionKey() uintptr

func KCFURLVolumeSupportsHardLinksKey

func KCFURLVolumeSupportsHardLinksKey() uintptr

func KCFURLVolumeSupportsImmutableFilesKey

func KCFURLVolumeSupportsImmutableFilesKey() uintptr

func KCFURLVolumeSupportsJournalingKey

func KCFURLVolumeSupportsJournalingKey() uintptr

func KCFURLVolumeSupportsPersistentIDsKey

func KCFURLVolumeSupportsPersistentIDsKey() uintptr

func KCFURLVolumeSupportsRenamingKey

func KCFURLVolumeSupportsRenamingKey() uintptr

func KCFURLVolumeSupportsRootDirectoryDatesKey

func KCFURLVolumeSupportsRootDirectoryDatesKey() uintptr

func KCFURLVolumeSupportsSparseFilesKey

func KCFURLVolumeSupportsSparseFilesKey() uintptr

func KCFURLVolumeSupportsSwapRenamingKey

func KCFURLVolumeSupportsSwapRenamingKey() uintptr

func KCFURLVolumeSupportsSymbolicLinksKey

func KCFURLVolumeSupportsSymbolicLinksKey() uintptr

func KCFURLVolumeSupportsVolumeSizesKey

func KCFURLVolumeSupportsVolumeSizesKey() uintptr

func KCFURLVolumeSupportsZeroRunsKey

func KCFURLVolumeSupportsZeroRunsKey() uintptr

func KCFURLVolumeTotalCapacityKey

func KCFURLVolumeTotalCapacityKey() uintptr

func KCFURLVolumeTypeNameKey

func KCFURLVolumeTypeNameKey() uintptr

func KCFURLVolumeURLForRemountingKey

func KCFURLVolumeURLForRemountingKey() uintptr

func KCFURLVolumeURLKey

func KCFURLVolumeURLKey() uintptr

func KCFURLVolumeUUIDStringKey

func KCFURLVolumeUUIDStringKey() uintptr

func KCFUserNotificationAlertHeaderKey

func KCFUserNotificationAlertHeaderKey() uintptr

func KCFUserNotificationAlertMessageKey

func KCFUserNotificationAlertMessageKey() uintptr

func KCFUserNotificationAlertTopMostKey

func KCFUserNotificationAlertTopMostKey() uintptr

func KCFUserNotificationAlternateButtonTitleKey

func KCFUserNotificationAlternateButtonTitleKey() uintptr

func KCFUserNotificationCheckBoxTitlesKey

func KCFUserNotificationCheckBoxTitlesKey() uintptr

func KCFUserNotificationDefaultButtonTitleKey

func KCFUserNotificationDefaultButtonTitleKey() uintptr

func KCFUserNotificationIconURLKey

func KCFUserNotificationIconURLKey() uintptr

func KCFUserNotificationKeyboardTypesKey

func KCFUserNotificationKeyboardTypesKey() uintptr

func KCFUserNotificationLocalizationURLKey

func KCFUserNotificationLocalizationURLKey() uintptr

func KCFUserNotificationOtherButtonTitleKey

func KCFUserNotificationOtherButtonTitleKey() uintptr

func KCFUserNotificationPopUpSelectionKey

func KCFUserNotificationPopUpSelectionKey() uintptr

func KCFUserNotificationPopUpTitlesKey

func KCFUserNotificationPopUpTitlesKey() uintptr

func KCFUserNotificationProgressIndicatorValueKey

func KCFUserNotificationProgressIndicatorValueKey() uintptr

func KCFUserNotificationSoundURLKey

func KCFUserNotificationSoundURLKey() uintptr

func KCFUserNotificationTextFieldTitlesKey

func KCFUserNotificationTextFieldTitlesKey() uintptr

func KCFUserNotificationTextFieldValuesKey

func KCFUserNotificationTextFieldValuesKey() uintptr

func KCFVietnameseCalendar

func KCFVietnameseCalendar() uintptr

func KCFVikramCalendar

func KCFVikramCalendar() uintptr

func KCFXMLTreeErrorDescription

func KCFXMLTreeErrorDescription() uintptr

func KCFXMLTreeErrorLineNumber

func KCFXMLTreeErrorLineNumber() uintptr

func KCFXMLTreeErrorLocation

func KCFXMLTreeErrorLocation() uintptr

func KCFXMLTreeErrorStatusCode

func KCFXMLTreeErrorStatusCode() uintptr

func SymbolAvailable

func SymbolAvailable(symbol string) bool

SymbolAvailable reports whether the named C symbol was bound when the library loaded. Calling a generated wrapper whose symbol is unavailable dereferences a nil function variable and panics.

Types

type Acl_entry_id_t

type Acl_entry_id_t int64
const (
	ACL_FIRST_ENTRY Acl_entry_id_t = 0
	ACL_NEXT_ENTRY  Acl_entry_id_t = -1
	ACL_LAST_ENTRY  Acl_entry_id_t = -2
)

func (Acl_entry_id_t) String

func (e Acl_entry_id_t) String() string

type Acl_flag_t

type Acl_flag_t int64
const (
	ACL_FLAG_DEFER_INHERIT      Acl_flag_t = 1
	ACL_FLAG_NO_INHERIT         Acl_flag_t = 131072
	ACL_ENTRY_INHERITED         Acl_flag_t = 16
	ACL_ENTRY_FILE_INHERIT      Acl_flag_t = 32
	ACL_ENTRY_DIRECTORY_INHERIT Acl_flag_t = 64
	ACL_ENTRY_LIMIT_INHERIT     Acl_flag_t = 128
	ACL_ENTRY_ONLY_INHERIT      Acl_flag_t = 256
)

func (Acl_flag_t) String

func (e Acl_flag_t) String() string

type Acl_perm_t

type Acl_perm_t int64
const (
	ACL_READ_DATA           Acl_perm_t = 2
	ACL_LIST_DIRECTORY      Acl_perm_t = 2
	ACL_WRITE_DATA          Acl_perm_t = 4
	ACL_ADD_FILE            Acl_perm_t = 4
	ACL_EXECUTE             Acl_perm_t = 8
	ACL_SEARCH              Acl_perm_t = 8
	ACL_DELETE              Acl_perm_t = 16
	ACL_APPEND_DATA         Acl_perm_t = 32
	ACL_ADD_SUBDIRECTORY    Acl_perm_t = 32
	ACL_DELETE_CHILD        Acl_perm_t = 64
	ACL_READ_ATTRIBUTES     Acl_perm_t = 128
	ACL_WRITE_ATTRIBUTES    Acl_perm_t = 256
	ACL_READ_EXTATTRIBUTES  Acl_perm_t = 512
	ACL_WRITE_EXTATTRIBUTES Acl_perm_t = 1024
	ACL_READ_SECURITY       Acl_perm_t = 2048
	ACL_WRITE_SECURITY      Acl_perm_t = 4096
	ACL_CHANGE_OWNER        Acl_perm_t = 8192
	ACL_SYNCHRONIZE         Acl_perm_t = 1048576
)

func (Acl_perm_t) String

func (e Acl_perm_t) String() string

type Acl_tag_t

type Acl_tag_t int64
const (
	ACL_UNDEFINED_TAG  Acl_tag_t = 0
	ACL_EXTENDED_ALLOW Acl_tag_t = 1
	ACL_EXTENDED_DENY  Acl_tag_t = 2
)

func (Acl_tag_t) String

func (e Acl_tag_t) String() string

type Acl_type_t

type Acl_type_t int64
const (
	ACL_TYPE_EXTENDED Acl_type_t = 256
	ACL_TYPE_ACCESS   Acl_type_t = 0
	ACL_TYPE_DEFAULT  Acl_type_t = 1
	ACL_TYPE_AFS      Acl_type_t = 2
	ACL_TYPE_CODA     Acl_type_t = 3
	ACL_TYPE_NTFS     Acl_type_t = 4
	ACL_TYPE_NWFS     Acl_type_t = 5
)

func (Acl_type_t) String

func (e Acl_type_t) String() string

type CFAllocator

type CFAllocator struct{}

C struct: __CFAllocator CFAllocator is an opaque type.

type CFAllocatorContext

type CFAllocatorContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Allocate        unsafe.Pointer
	Reallocate      unsafe.Pointer
	Deallocate      unsafe.Pointer
	PreferredSize   unsafe.Pointer
}

type CFArray

type CFArray struct{}

@typedef CFArrayRef This is the type of a reference to immutable CFArrays. C struct: __CFArray CFArray is an opaque type.

type CFArrayCallBacks

type CFArrayCallBacks struct {
	Version         int
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Equal           unsafe.Pointer
}

func KCFTypeArrayCallBacks

func KCFTypeArrayCallBacks() CFArrayCallBacks

type CFAttributedString

type CFAttributedString struct{}

C struct: __CFAttributedString CFAttributedString is an opaque type.

type CFBag

type CFBag struct{}

C struct: __CFBag CFBag is an opaque type.

type CFBagCallBacks

type CFBagCallBacks struct {
	Version         int
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Equal           unsafe.Pointer
	Hash            unsafe.Pointer
}

func KCFCopyStringBagCallBacks

func KCFCopyStringBagCallBacks() CFBagCallBacks

func KCFTypeBagCallBacks

func KCFTypeBagCallBacks() CFBagCallBacks

type CFBinaryHeap

type CFBinaryHeap struct{}

@typedef CFBinaryHeapRef This is the type of a reference to CFBinaryHeaps. C struct: __CFBinaryHeap CFBinaryHeap is an opaque type.

type CFBinaryHeapCallBacks

type CFBinaryHeapCallBacks struct {
	Version         int
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Compare         unsafe.Pointer
}

@typedef CFBinaryHeapCallBacks Structure containing the callbacks for values of a CFBinaryHeap. @field version The version number of the structure type being passed in as a parameter to the CFBinaryHeap creation functions. This structure is version 0. @field retain The callback used to add a retain for the binary heap on values as they are put into the binary heap. This callback returns the value to use as the value in the binary heap, which is usually the value parameter passed to this callback, but may be a different value if a different value should be added to the binary heap. The binary heap's allocator is passed as the first argument. @field release The callback used to remove a retain previously added for the binary heap from values as they are removed from the binary heap. The binary heap's allocator is passed as the first argument. @field copyDescription The callback used to create a descriptive string representation of each value in the binary heap. This is used by the CFCopyDescription() function. @field compare The callback used to compare values in the binary heap for equality in some operations.

func KCFStringBinaryHeapCallBacks

func KCFStringBinaryHeapCallBacks() CFBinaryHeapCallBacks

@constant kCFStringBinaryHeapCallBacks Predefined CFBinaryHeapCallBacks structure containing a set of callbacks appropriate for use when the values in a CFBinaryHeap are all CFString types.

type CFBinaryHeapCompareContext

type CFBinaryHeapCompareContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFBitVector

type CFBitVector struct{}

C struct: __CFBitVector CFBitVector is an opaque type.

type CFBoolean

type CFBoolean struct{}

C struct: __CFBoolean CFBoolean is an opaque type.

type CFBundle

type CFBundle struct{}

C struct: __CFBundle CFBundle is an opaque type.

type CFCalendar

type CFCalendar struct{}

C struct: __CFCalendar CFCalendar is an opaque type.

type CFCalendarUnit

type CFCalendarUnit int64
const (
	KCFCalendarUnitEra               CFCalendarUnit = 2
	KCFCalendarUnitYear              CFCalendarUnit = 4
	KCFCalendarUnitMonth             CFCalendarUnit = 8
	KCFCalendarUnitDay               CFCalendarUnit = 16
	KCFCalendarUnitHour              CFCalendarUnit = 32
	KCFCalendarUnitMinute            CFCalendarUnit = 64
	KCFCalendarUnitSecond            CFCalendarUnit = 128
	KCFCalendarUnitWeek              CFCalendarUnit = 256
	KCFCalendarUnitWeekday           CFCalendarUnit = 512
	KCFCalendarUnitWeekdayOrdinal    CFCalendarUnit = 1024
	KCFCalendarUnitQuarter           CFCalendarUnit = 2048
	KCFCalendarUnitWeekOfMonth       CFCalendarUnit = 4096
	KCFCalendarUnitWeekOfYear        CFCalendarUnit = 8192
	KCFCalendarUnitYearForWeekOfYear CFCalendarUnit = 16384
	KCFCalendarUnitDayOfYear         CFCalendarUnit = 65536
)

func (CFCalendarUnit) String

func (e CFCalendarUnit) String() string

type CFCharacterSet

type CFCharacterSet struct{}

@typedef CFCharacterSetRef This is the type of a reference to immutable CFCharacterSets. C struct: __CFCharacterSet CFCharacterSet is an opaque type.

type CFCharacterSetPredefinedSet

type CFCharacterSetPredefinedSet int64
const (
	KCFCharacterSetControl              CFCharacterSetPredefinedSet = 1
	KCFCharacterSetWhitespace           CFCharacterSetPredefinedSet = 2
	KCFCharacterSetWhitespaceAndNewline CFCharacterSetPredefinedSet = 3
	KCFCharacterSetDecimalDigit         CFCharacterSetPredefinedSet = 4
	KCFCharacterSetLetter               CFCharacterSetPredefinedSet = 5
	KCFCharacterSetLowercaseLetter      CFCharacterSetPredefinedSet = 6
	KCFCharacterSetUppercaseLetter      CFCharacterSetPredefinedSet = 7
	KCFCharacterSetNonBase              CFCharacterSetPredefinedSet = 8
	KCFCharacterSetDecomposable         CFCharacterSetPredefinedSet = 9
	KCFCharacterSetAlphaNumeric         CFCharacterSetPredefinedSet = 10
	KCFCharacterSetPunctuation          CFCharacterSetPredefinedSet = 11
	KCFCharacterSetCapitalizedLetter    CFCharacterSetPredefinedSet = 13
	KCFCharacterSetSymbol               CFCharacterSetPredefinedSet = 14
	KCFCharacterSetNewline              CFCharacterSetPredefinedSet = 15
	KCFCharacterSetIllegal              CFCharacterSetPredefinedSet = 12
)

func (CFCharacterSetPredefinedSet) String

type CFComparisonResult

type CFComparisonResult int64
const (
	KCFCompareLessThan    CFComparisonResult = -1
	KCFCompareEqualTo     CFComparisonResult = 0
	KCFCompareGreaterThan CFComparisonResult = 1
)

func CFDateCompare

func CFDateCompare(theDate unsafe.Pointer, otherDate unsafe.Pointer, context_ unsafe.Pointer) CFComparisonResult

func CFNumberCompare

func CFNumberCompare(number unsafe.Pointer, otherNumber unsafe.Pointer, context_ unsafe.Pointer) CFComparisonResult

func CFStringCompare

func CFStringCompare(theString1 unsafe.Pointer, theString2 unsafe.Pointer, compareOptions CFStringCompareFlags) CFComparisonResult

func CFStringCompareWithOptions

func CFStringCompareWithOptions(theString1 unsafe.Pointer, theString2 unsafe.Pointer, rangeToCompare CFRange, compareOptions CFStringCompareFlags) CFComparisonResult

func CFStringCompareWithOptionsAndLocale

func CFStringCompareWithOptionsAndLocale(theString1 unsafe.Pointer, theString2 unsafe.Pointer, rangeToCompare CFRange, compareOptions CFStringCompareFlags, locale unsafe.Pointer) CFComparisonResult

func (CFComparisonResult) String

func (e CFComparisonResult) String() string

type CFData

type CFData struct{}

C struct: __CFData CFData is an opaque type.

type CFDataSearchFlags

type CFDataSearchFlags int64
const (
	KCFDataSearchBackwards CFDataSearchFlags = 1
	KCFDataSearchAnchored  CFDataSearchFlags = 2
)

func (CFDataSearchFlags) String

func (e CFDataSearchFlags) String() string

type CFDate

type CFDate struct{}

C struct: __CFDate CFDate is an opaque type.

type CFDateFormatter

type CFDateFormatter struct{}

C struct: __CFDateFormatter CFDateFormatter is an opaque type.

type CFDateFormatterStyle

type CFDateFormatterStyle int64
const (
	KCFDateFormatterNoStyle     CFDateFormatterStyle = 0
	KCFDateFormatterShortStyle  CFDateFormatterStyle = 1
	KCFDateFormatterMediumStyle CFDateFormatterStyle = 2
	KCFDateFormatterLongStyle   CFDateFormatterStyle = 3
	KCFDateFormatterFullStyle   CFDateFormatterStyle = 4
)

func CFDateFormatterGetDateStyle

func CFDateFormatterGetDateStyle(formatter unsafe.Pointer) CFDateFormatterStyle

func CFDateFormatterGetTimeStyle

func CFDateFormatterGetTimeStyle(formatter unsafe.Pointer) CFDateFormatterStyle

func (CFDateFormatterStyle) String

func (e CFDateFormatterStyle) String() string

type CFDictionary

type CFDictionary struct{}

@typedef CFDictionaryRef This is the type of a reference to immutable CFDictionarys. C struct: __CFDictionary CFDictionary is an opaque type.

type CFDictionaryKeyCallBacks

type CFDictionaryKeyCallBacks struct {
	Version         int
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Equal           unsafe.Pointer
	Hash            unsafe.Pointer
}

func KCFCopyStringDictionaryKeyCallBacks

func KCFCopyStringDictionaryKeyCallBacks() CFDictionaryKeyCallBacks

func KCFTypeDictionaryKeyCallBacks

func KCFTypeDictionaryKeyCallBacks() CFDictionaryKeyCallBacks

type CFDictionaryValueCallBacks

type CFDictionaryValueCallBacks struct {
	Version         int
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Equal           unsafe.Pointer
}

@typedef CFDictionaryValueCallBacks Structure containing the callbacks for values of a CFDictionary. @field version The version number of the structure type being passed in as a parameter to the CFDictionary creation functions. This structure is version 0. @field retain The callback used to add a retain for the dictionary on values as they are put into the dictionary. This callback returns the value to use as the value in the dictionary, which is usually the value parameter passed to this callback, but may be a different value if a different value should be added to the dictionary. The dictionary's allocator is passed as the first argument. @field release The callback used to remove a retain previously added for the dictionary from values as they are removed from the dictionary. The dictionary's allocator is passed as the first argument. @field copyDescription The callback used to create a descriptive string representation of each value in the dictionary. This is used by the CFCopyDescription() function. @field equal The callback used to compare values in the dictionary for equality in some operations.

func KCFTypeDictionaryValueCallBacks

func KCFTypeDictionaryValueCallBacks() CFDictionaryValueCallBacks

type CFError

type CFError struct{}

@typedef CFErrorRef This is the type of a reference to CFErrors. CFErrorRef is toll-free bridged with NSError. C struct: __CFError CFError is an opaque type.

type CFFileDescriptor

type CFFileDescriptor struct{}

C struct: __CFFileDescriptor CFFileDescriptor is an opaque type.

type CFFileDescriptorContext

type CFFileDescriptorContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFFileSecurity

type CFFileSecurity struct{}

C struct: __CFFileSecurity CFFileSecurity is an opaque type.

type CFFileSecurityClearOptions

type CFFileSecurityClearOptions int64
const (
	KCFFileSecurityClearOwner             CFFileSecurityClearOptions = 1
	KCFFileSecurityClearGroup             CFFileSecurityClearOptions = 2
	KCFFileSecurityClearMode              CFFileSecurityClearOptions = 4
	KCFFileSecurityClearOwnerUUID         CFFileSecurityClearOptions = 8
	KCFFileSecurityClearGroupUUID         CFFileSecurityClearOptions = 16
	KCFFileSecurityClearAccessControlList CFFileSecurityClearOptions = 32
)

func (CFFileSecurityClearOptions) String

type CFGregorianDate

type CFGregorianDate struct {
	Year   int
	Month  int8
	Day    int8
	Hour   int8
	Minute int8
	Second float64
}

func CFAbsoluteTimeGetGregorianDate deprecated

func CFAbsoluteTimeGetGregorianDate(at float64, tz unsafe.Pointer) CFGregorianDate

Deprecated: Use CFCalendar or NSCalendar API instead

type CFGregorianUnitFlags

type CFGregorianUnitFlags int64
const (
	KCFGregorianUnitsYears   CFGregorianUnitFlags = 1
	KCFGregorianUnitsMonths  CFGregorianUnitFlags = 2
	KCFGregorianUnitsDays    CFGregorianUnitFlags = 4
	KCFGregorianUnitsHours   CFGregorianUnitFlags = 8
	KCFGregorianUnitsMinutes CFGregorianUnitFlags = 16
	KCFGregorianUnitsSeconds CFGregorianUnitFlags = 32
	KCFGregorianAllUnits     CFGregorianUnitFlags = 16777215
)

func (CFGregorianUnitFlags) String

func (e CFGregorianUnitFlags) String() string

type CFGregorianUnits deprecated

type CFGregorianUnits struct {
	Years   int
	Months  int
	Days    int
	Hours   int
	Minutes int
	Seconds float64
}

Deprecated: Use CFCalendar or NSCalendar API instead

func CFAbsoluteTimeGetDifferenceAsGregorianUnits deprecated

func CFAbsoluteTimeGetDifferenceAsGregorianUnits(at1 float64, at2 float64, tz unsafe.Pointer, unitFlags uint) CFGregorianUnits

Deprecated: Use CFCalendar or NSCalendar API instead

type CFISO8601DateFormatOptions

type CFISO8601DateFormatOptions int64
const (
	KCFISO8601DateFormatWithYear                     CFISO8601DateFormatOptions = 1
	KCFISO8601DateFormatWithMonth                    CFISO8601DateFormatOptions = 2
	KCFISO8601DateFormatWithWeekOfYear               CFISO8601DateFormatOptions = 4
	KCFISO8601DateFormatWithDay                      CFISO8601DateFormatOptions = 16
	KCFISO8601DateFormatWithTime                     CFISO8601DateFormatOptions = 32
	KCFISO8601DateFormatWithTimeZone                 CFISO8601DateFormatOptions = 64
	KCFISO8601DateFormatWithSpaceBetweenDateAndTime  CFISO8601DateFormatOptions = 128
	KCFISO8601DateFormatWithDashSeparatorInDate      CFISO8601DateFormatOptions = 256
	KCFISO8601DateFormatWithColonSeparatorInTime     CFISO8601DateFormatOptions = 512
	KCFISO8601DateFormatWithColonSeparatorInTimeZone CFISO8601DateFormatOptions = 1024
	KCFISO8601DateFormatWithFractionalSeconds        CFISO8601DateFormatOptions = 2048
	KCFISO8601DateFormatWithFullDate                 CFISO8601DateFormatOptions = 275
	KCFISO8601DateFormatWithFullTime                 CFISO8601DateFormatOptions = 1632
	KCFISO8601DateFormatWithInternetDateTime         CFISO8601DateFormatOptions = 1907
)

func (CFISO8601DateFormatOptions) String

type CFLocale

type CFLocale struct{}

C struct: __CFLocale CFLocale is an opaque type.

type CFLocaleLanguageDirection

type CFLocaleLanguageDirection int64
const (
	KCFLocaleLanguageDirectionUnknown     CFLocaleLanguageDirection = 0
	KCFLocaleLanguageDirectionLeftToRight CFLocaleLanguageDirection = 1
	KCFLocaleLanguageDirectionRightToLeft CFLocaleLanguageDirection = 2
	KCFLocaleLanguageDirectionTopToBottom CFLocaleLanguageDirection = 3
	KCFLocaleLanguageDirectionBottomToTop CFLocaleLanguageDirection = 4
)

func CFLocaleGetLanguageCharacterDirection

func CFLocaleGetLanguageCharacterDirection(isoLangCode unsafe.Pointer) CFLocaleLanguageDirection

func CFLocaleGetLanguageLineDirection

func CFLocaleGetLanguageLineDirection(isoLangCode unsafe.Pointer) CFLocaleLanguageDirection

func (CFLocaleLanguageDirection) String

func (e CFLocaleLanguageDirection) String() string

type CFMachPort

type CFMachPort struct{}

C struct: __CFMachPort CFMachPort is an opaque type.

type CFMachPortContext

type CFMachPortContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFMessagePort

type CFMessagePort struct{}

C struct: __CFMessagePort CFMessagePort is an opaque type.

type CFMessagePortContext

type CFMessagePortContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFNotificationCenter

type CFNotificationCenter struct{}

C struct: __CFNotificationCenter CFNotificationCenter is an opaque type.

type CFNotificationSuspensionBehavior

type CFNotificationSuspensionBehavior int64
const (
	CFNotificationSuspensionBehaviorDrop               CFNotificationSuspensionBehavior = 1
	CFNotificationSuspensionBehaviorCoalesce           CFNotificationSuspensionBehavior = 2
	CFNotificationSuspensionBehaviorHold               CFNotificationSuspensionBehavior = 3
	CFNotificationSuspensionBehaviorDeliverImmediately CFNotificationSuspensionBehavior = 4
)

func (CFNotificationSuspensionBehavior) String

type CFNull

type CFNull struct{}

C struct: __CFNull CFNull is an opaque type.

type CFNumber

type CFNumber struct{}

C struct: __CFNumber CFNumber is an opaque type.

type CFNumberFormatter

type CFNumberFormatter struct{}

C struct: __CFNumberFormatter CFNumberFormatter is an opaque type.

type CFNumberFormatterOptionFlags

type CFNumberFormatterOptionFlags int64
const (
	KCFNumberFormatterParseIntegersOnly CFNumberFormatterOptionFlags = 1
)

func (CFNumberFormatterOptionFlags) String

type CFNumberFormatterPadPosition

type CFNumberFormatterPadPosition int64
const (
	KCFNumberFormatterPadBeforePrefix CFNumberFormatterPadPosition = 0
	KCFNumberFormatterPadAfterPrefix  CFNumberFormatterPadPosition = 1
	KCFNumberFormatterPadBeforeSuffix CFNumberFormatterPadPosition = 2
	KCFNumberFormatterPadAfterSuffix  CFNumberFormatterPadPosition = 3
)

func (CFNumberFormatterPadPosition) String

type CFNumberFormatterRoundingMode

type CFNumberFormatterRoundingMode int64
const (
	KCFNumberFormatterRoundCeiling  CFNumberFormatterRoundingMode = 0
	KCFNumberFormatterRoundFloor    CFNumberFormatterRoundingMode = 1
	KCFNumberFormatterRoundDown     CFNumberFormatterRoundingMode = 2
	KCFNumberFormatterRoundUp       CFNumberFormatterRoundingMode = 3
	KCFNumberFormatterRoundHalfEven CFNumberFormatterRoundingMode = 4
	KCFNumberFormatterRoundHalfDown CFNumberFormatterRoundingMode = 5
	KCFNumberFormatterRoundHalfUp   CFNumberFormatterRoundingMode = 6
)

func (CFNumberFormatterRoundingMode) String

type CFNumberFormatterStyle

type CFNumberFormatterStyle int64
const (
	KCFNumberFormatterNoStyle                 CFNumberFormatterStyle = 0
	KCFNumberFormatterDecimalStyle            CFNumberFormatterStyle = 1
	KCFNumberFormatterCurrencyStyle           CFNumberFormatterStyle = 2
	KCFNumberFormatterPercentStyle            CFNumberFormatterStyle = 3
	KCFNumberFormatterScientificStyle         CFNumberFormatterStyle = 4
	KCFNumberFormatterSpellOutStyle           CFNumberFormatterStyle = 5
	KCFNumberFormatterOrdinalStyle            CFNumberFormatterStyle = 6
	KCFNumberFormatterCurrencyISOCodeStyle    CFNumberFormatterStyle = 8
	KCFNumberFormatterCurrencyPluralStyle     CFNumberFormatterStyle = 9
	KCFNumberFormatterCurrencyAccountingStyle CFNumberFormatterStyle = 10
)

func CFNumberFormatterGetStyle

func CFNumberFormatterGetStyle(formatter unsafe.Pointer) CFNumberFormatterStyle

func (CFNumberFormatterStyle) String

func (e CFNumberFormatterStyle) String() string

type CFNumberType

type CFNumberType int64
const (
	KCFNumberSInt8Type     CFNumberType = 1
	KCFNumberSInt16Type    CFNumberType = 2
	KCFNumberSInt32Type    CFNumberType = 3
	KCFNumberSInt64Type    CFNumberType = 4
	KCFNumberFloat32Type   CFNumberType = 5
	KCFNumberFloat64Type   CFNumberType = 6
	KCFNumberCharType      CFNumberType = 7
	KCFNumberShortType     CFNumberType = 8
	KCFNumberIntType       CFNumberType = 9
	KCFNumberLongType      CFNumberType = 10
	KCFNumberLongLongType  CFNumberType = 11
	KCFNumberFloatType     CFNumberType = 12
	KCFNumberDoubleType    CFNumberType = 13
	KCFNumberCFIndexType   CFNumberType = 14
	KCFNumberNSIntegerType CFNumberType = 15
	KCFNumberCGFloatType   CFNumberType = 16
	KCFNumberMaxType       CFNumberType = 16
)

func CFNumberGetType

func CFNumberGetType(number unsafe.Pointer) CFNumberType

func (CFNumberType) String

func (e CFNumberType) String() string

type CFPlugInInstance

type CFPlugInInstance struct{}

C struct: __CFPlugInInstance CFPlugInInstance is an opaque type.

type CFPropertyListFormat

type CFPropertyListFormat int64
const (
	KCFPropertyListOpenStepFormat    CFPropertyListFormat = 1
	KCFPropertyListXMLFormat_v1_0    CFPropertyListFormat = 100
	KCFPropertyListBinaryFormat_v1_0 CFPropertyListFormat = 200
)

func (CFPropertyListFormat) String

func (e CFPropertyListFormat) String() string

type CFPropertyListMutabilityOptions

type CFPropertyListMutabilityOptions int64
const (
	KCFPropertyListImmutable                  CFPropertyListMutabilityOptions = 0
	KCFPropertyListMutableContainers          CFPropertyListMutabilityOptions = 1
	KCFPropertyListMutableContainersAndLeaves CFPropertyListMutabilityOptions = 2
)

func (CFPropertyListMutabilityOptions) String

type CFRange

type CFRange struct {
	Location int
	Length   int
}

func CFCalendarGetMaximumRangeOfUnit

func CFCalendarGetMaximumRangeOfUnit(calendar unsafe.Pointer, unit CFCalendarUnit) CFRange

func CFCalendarGetMinimumRangeOfUnit

func CFCalendarGetMinimumRangeOfUnit(calendar unsafe.Pointer, unit CFCalendarUnit) CFRange

func CFCalendarGetRangeOfUnit

func CFCalendarGetRangeOfUnit(calendar unsafe.Pointer, smallerUnit CFCalendarUnit, biggerUnit CFCalendarUnit, at float64) CFRange

func CFDataFind

func CFDataFind(theData unsafe.Pointer, dataToFind unsafe.Pointer, searchRange CFRange, compareOptions CFDataSearchFlags) CFRange

func CFRangeMake

func CFRangeMake(loc int, len_ int) CFRange

func CFStringFind

func CFStringFind(theString unsafe.Pointer, stringToFind unsafe.Pointer, compareOptions CFStringCompareFlags) CFRange

func CFStringGetRangeOfComposedCharactersAtIndex

func CFStringGetRangeOfComposedCharactersAtIndex(theString unsafe.Pointer, theIndex int) CFRange

@function CFStringGetRangeOfComposedCharactersAtIndex Returns the range of the composed character sequence at the specified index. @param theString The CFString which is to be searched. If this parameter is not a valid CFString, the behavior is undefined. @param theIndex The index of the character contained in the composed character sequence. If the index is outside the index space of the string (0 to N-1 inclusive, where N is the length of the string), the behavior is undefined. @result The range of the composed character sequence.

func CFStringTokenizerGetCurrentTokenRange

func CFStringTokenizerGetCurrentTokenRange(tokenizer unsafe.Pointer) CFRange

func CFURLGetByteRangeForComponent

func CFURLGetByteRangeForComponent(url unsafe.Pointer, component CFURLComponentType, rangeIncludingSeparators *CFRange) CFRange

type CFReadStream

type CFReadStream struct{}

C struct: __CFReadStream CFReadStream is an opaque type.

type CFRunLoop

type CFRunLoop struct{}

C struct: __CFRunLoop CFRunLoop is an opaque type.

type CFRunLoopActivity

type CFRunLoopActivity int64
const (
	KCFRunLoopEntry         CFRunLoopActivity = 1
	KCFRunLoopBeforeTimers  CFRunLoopActivity = 2
	KCFRunLoopBeforeSources CFRunLoopActivity = 4
	KCFRunLoopBeforeWaiting CFRunLoopActivity = 32
	KCFRunLoopAfterWaiting  CFRunLoopActivity = 64
	KCFRunLoopExit          CFRunLoopActivity = 128
	KCFRunLoopAllActivities CFRunLoopActivity = 268435455
)

func (CFRunLoopActivity) String

func (e CFRunLoopActivity) String() string

type CFRunLoopObserver

type CFRunLoopObserver struct{}

C struct: __CFRunLoopObserver CFRunLoopObserver is an opaque type.

type CFRunLoopObserverContext

type CFRunLoopObserverContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFRunLoopRunResult

type CFRunLoopRunResult int64
const (
	KCFRunLoopRunFinished      CFRunLoopRunResult = 1
	KCFRunLoopRunStopped       CFRunLoopRunResult = 2
	KCFRunLoopRunTimedOut      CFRunLoopRunResult = 3
	KCFRunLoopRunHandledSource CFRunLoopRunResult = 4
)

func CFRunLoopRunInMode

func CFRunLoopRunInMode(mode unsafe.Pointer, seconds float64, returnAfterSourceHandled uint8) CFRunLoopRunResult

func (CFRunLoopRunResult) String

func (e CFRunLoopRunResult) String() string

type CFRunLoopSource

type CFRunLoopSource struct{}

C struct: __CFRunLoopSource CFRunLoopSource is an opaque type.

type CFRunLoopSourceContext

type CFRunLoopSourceContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Equal           unsafe.Pointer
	Hash            unsafe.Pointer
	Schedule        unsafe.Pointer
	Cancel          unsafe.Pointer
	Perform         unsafe.Pointer
}

type CFRunLoopSourceContext1

type CFRunLoopSourceContext1 struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Equal           unsafe.Pointer
	Hash            unsafe.Pointer
	GetPort         unsafe.Pointer
	Perform         unsafe.Pointer
}

type CFRunLoopTimer

type CFRunLoopTimer struct{}

C struct: __CFRunLoopTimer CFRunLoopTimer is an opaque type.

type CFRunLoopTimerContext

type CFRunLoopTimerContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFSet

type CFSet struct{}

@typedef CFSetRef This is the type of a reference to immutable CFSets. C struct: __CFSet CFSet is an opaque type.

type CFSetCallBacks

type CFSetCallBacks struct {
	Version         int
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
	Equal           unsafe.Pointer
	Hash            unsafe.Pointer
}

@typedef CFSetCallBacks Structure containing the callbacks of a CFSet. @field version The version number of the structure type being passed in as a parameter to the CFSet creation functions. This structure is version 0. @field retain The callback used to add a retain for the set on values as they are put into the set. This callback returns the value to store in the set, which is usually the value parameter passed to this callback, but may be a different value if a different value should be stored in the set. The set's allocator is passed as the first argument. @field release The callback used to remove a retain previously added for the set from values as they are removed from the set. The set's allocator is passed as the first argument. @field copyDescription The callback used to create a descriptive string representation of each value in the set. This is used by the CFCopyDescription() function. @field equal The callback used to compare values in the set for equality for some operations. @field hash The callback used to compare values in the set for uniqueness for some operations.

func KCFCopyStringSetCallBacks

func KCFCopyStringSetCallBacks() CFSetCallBacks

func KCFTypeSetCallBacks

func KCFTypeSetCallBacks() CFSetCallBacks

type CFSocket

type CFSocket struct{}

C struct: __CFSocket CFSocket is an opaque type.

type CFSocketCallBackType

type CFSocketCallBackType int64
const (
	KCFSocketNoCallBack      CFSocketCallBackType = 0
	KCFSocketReadCallBack    CFSocketCallBackType = 1
	KCFSocketAcceptCallBack  CFSocketCallBackType = 2
	KCFSocketDataCallBack    CFSocketCallBackType = 3
	KCFSocketConnectCallBack CFSocketCallBackType = 4
	KCFSocketWriteCallBack   CFSocketCallBackType = 8
)

func (CFSocketCallBackType) String

func (e CFSocketCallBackType) String() string

type CFSocketContext

type CFSocketContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFSocketError

type CFSocketError int64
const (
	KCFSocketSuccess CFSocketError = 0
	KCFSocketError   CFSocketError = -1
	KCFSocketTimeout CFSocketError = -2
)

func CFSocketConnectToAddress

func CFSocketConnectToAddress(s unsafe.Pointer, address unsafe.Pointer, timeout float64) CFSocketError

func CFSocketCopyRegisteredSocketSignature

func CFSocketCopyRegisteredSocketSignature(nameServerSignature *CFSocketSignature, timeout float64, name unsafe.Pointer, signature *CFSocketSignature, nameServerAddress unsafe.Pointer) CFSocketError

func CFSocketCopyRegisteredValue

func CFSocketCopyRegisteredValue(nameServerSignature *CFSocketSignature, timeout float64, name unsafe.Pointer, value unsafe.Pointer, nameServerAddress unsafe.Pointer) CFSocketError

func CFSocketRegisterSocketSignature

func CFSocketRegisterSocketSignature(nameServerSignature *CFSocketSignature, timeout float64, name unsafe.Pointer, signature *CFSocketSignature) CFSocketError

func CFSocketRegisterValue

func CFSocketRegisterValue(nameServerSignature *CFSocketSignature, timeout float64, name unsafe.Pointer, value unsafe.Pointer) CFSocketError

func CFSocketSendData

func CFSocketSendData(s unsafe.Pointer, address unsafe.Pointer, data unsafe.Pointer, timeout float64) CFSocketError

func CFSocketSetAddress

func CFSocketSetAddress(s unsafe.Pointer, address unsafe.Pointer) CFSocketError

func CFSocketUnregister

func CFSocketUnregister(nameServerSignature *CFSocketSignature, timeout float64, name unsafe.Pointer) CFSocketError

func (CFSocketError) String

func (e CFSocketError) String() string

type CFSocketSignature

type CFSocketSignature struct {
	ProtocolFamily int
	SocketType     int
	Protocol       int
	Address        unsafe.Pointer
}

type CFStreamClientContext

type CFStreamClientContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFStreamError

type CFStreamError struct {
	Domain int
	Error  int
}

func CFReadStreamGetError

func CFReadStreamGetError(stream unsafe.Pointer) CFStreamError

func CFWriteStreamGetError

func CFWriteStreamGetError(stream unsafe.Pointer) CFStreamError

type CFStreamErrorDomain

type CFStreamErrorDomain int64
const (
	KCFStreamErrorDomainCustom      CFStreamErrorDomain = -1
	KCFStreamErrorDomainPOSIX       CFStreamErrorDomain = 1
	KCFStreamErrorDomainMacOSStatus CFStreamErrorDomain = 2
)

func (CFStreamErrorDomain) String

func (e CFStreamErrorDomain) String() string

type CFStreamEventType

type CFStreamEventType int64
const (
	KCFStreamEventNone              CFStreamEventType = 0
	KCFStreamEventOpenCompleted     CFStreamEventType = 1
	KCFStreamEventHasBytesAvailable CFStreamEventType = 2
	KCFStreamEventCanAcceptBytes    CFStreamEventType = 4
	KCFStreamEventErrorOccurred     CFStreamEventType = 8
	KCFStreamEventEndEncountered    CFStreamEventType = 16
)

func (CFStreamEventType) String

func (e CFStreamEventType) String() string

type CFStreamStatus

type CFStreamStatus int64
const (
	KCFStreamStatusNotOpen CFStreamStatus = 0
	KCFStreamStatusOpening CFStreamStatus = 1
	KCFStreamStatusOpen    CFStreamStatus = 2
	KCFStreamStatusReading CFStreamStatus = 3
	KCFStreamStatusWriting CFStreamStatus = 4
	KCFStreamStatusAtEnd   CFStreamStatus = 5
	KCFStreamStatusClosed  CFStreamStatus = 6
	KCFStreamStatusError   CFStreamStatus = 7
)

func CFReadStreamGetStatus

func CFReadStreamGetStatus(stream unsafe.Pointer) CFStreamStatus

func CFWriteStreamGetStatus

func CFWriteStreamGetStatus(stream unsafe.Pointer) CFStreamStatus

func (CFStreamStatus) String

func (e CFStreamStatus) String() string

type CFString

type CFString struct{}

C struct: __CFString CFString is an opaque type.

type CFStringBuiltInEncodings

type CFStringBuiltInEncodings int64
const (
	KCFStringEncodingMacRoman      CFStringBuiltInEncodings = 0
	KCFStringEncodingWindowsLatin1 CFStringBuiltInEncodings = 1280
	KCFStringEncodingISOLatin1     CFStringBuiltInEncodings = 513
	KCFStringEncodingNextStepLatin CFStringBuiltInEncodings = 2817
	KCFStringEncodingASCII         CFStringBuiltInEncodings = 1536
	KCFStringEncodingUnicode       CFStringBuiltInEncodings = 256
	KCFStringEncodingUTF8          CFStringBuiltInEncodings = 134217984
	KCFStringEncodingNonLossyASCII CFStringBuiltInEncodings = 3071
	KCFStringEncodingUTF16         CFStringBuiltInEncodings = 256
	KCFStringEncodingUTF16BE       CFStringBuiltInEncodings = 268435712
	KCFStringEncodingUTF16LE       CFStringBuiltInEncodings = 335544576
	KCFStringEncodingUTF32         CFStringBuiltInEncodings = 201326848
	KCFStringEncodingUTF32BE       CFStringBuiltInEncodings = 402653440
	KCFStringEncodingUTF32LE       CFStringBuiltInEncodings = 469762304
)

func (CFStringBuiltInEncodings) String

func (e CFStringBuiltInEncodings) String() string

type CFStringCompareFlags

type CFStringCompareFlags int64
const (
	KCFCompareCaseInsensitive      CFStringCompareFlags = 1
	KCFCompareBackwards            CFStringCompareFlags = 4
	KCFCompareAnchored             CFStringCompareFlags = 8
	KCFCompareNonliteral           CFStringCompareFlags = 16
	KCFCompareLocalized            CFStringCompareFlags = 32
	KCFCompareNumerically          CFStringCompareFlags = 64
	KCFCompareDiacriticInsensitive CFStringCompareFlags = 128
	KCFCompareWidthInsensitive     CFStringCompareFlags = 256
	KCFCompareForcedOrdering       CFStringCompareFlags = 512
)

func (CFStringCompareFlags) String

func (e CFStringCompareFlags) String() string

type CFStringEncodings

type CFStringEncodings int64
const (
	KCFStringEncodingMacJapanese             CFStringEncodings = 1
	KCFStringEncodingMacChineseTrad          CFStringEncodings = 2
	KCFStringEncodingMacKorean               CFStringEncodings = 3
	KCFStringEncodingMacArabic               CFStringEncodings = 4
	KCFStringEncodingMacHebrew               CFStringEncodings = 5
	KCFStringEncodingMacGreek                CFStringEncodings = 6
	KCFStringEncodingMacCyrillic             CFStringEncodings = 7
	KCFStringEncodingMacDevanagari           CFStringEncodings = 9
	KCFStringEncodingMacGurmukhi             CFStringEncodings = 10
	KCFStringEncodingMacGujarati             CFStringEncodings = 11
	KCFStringEncodingMacOriya                CFStringEncodings = 12
	KCFStringEncodingMacBengali              CFStringEncodings = 13
	KCFStringEncodingMacTamil                CFStringEncodings = 14
	KCFStringEncodingMacTelugu               CFStringEncodings = 15
	KCFStringEncodingMacKannada              CFStringEncodings = 16
	KCFStringEncodingMacMalayalam            CFStringEncodings = 17
	KCFStringEncodingMacSinhalese            CFStringEncodings = 18
	KCFStringEncodingMacBurmese              CFStringEncodings = 19
	KCFStringEncodingMacKhmer                CFStringEncodings = 20
	KCFStringEncodingMacThai                 CFStringEncodings = 21
	KCFStringEncodingMacLaotian              CFStringEncodings = 22
	KCFStringEncodingMacGeorgian             CFStringEncodings = 23
	KCFStringEncodingMacArmenian             CFStringEncodings = 24
	KCFStringEncodingMacChineseSimp          CFStringEncodings = 25
	KCFStringEncodingMacTibetan              CFStringEncodings = 26
	KCFStringEncodingMacMongolian            CFStringEncodings = 27
	KCFStringEncodingMacEthiopic             CFStringEncodings = 28
	KCFStringEncodingMacCentralEurRoman      CFStringEncodings = 29
	KCFStringEncodingMacVietnamese           CFStringEncodings = 30
	KCFStringEncodingMacExtArabic            CFStringEncodings = 31
	KCFStringEncodingMacSymbol               CFStringEncodings = 33
	KCFStringEncodingMacDingbats             CFStringEncodings = 34
	KCFStringEncodingMacTurkish              CFStringEncodings = 35
	KCFStringEncodingMacCroatian             CFStringEncodings = 36
	KCFStringEncodingMacIcelandic            CFStringEncodings = 37
	KCFStringEncodingMacRomanian             CFStringEncodings = 38
	KCFStringEncodingMacCeltic               CFStringEncodings = 39
	KCFStringEncodingMacGaelic               CFStringEncodings = 40
	KCFStringEncodingMacFarsi                CFStringEncodings = 140
	KCFStringEncodingMacUkrainian            CFStringEncodings = 152
	KCFStringEncodingMacInuit                CFStringEncodings = 236
	KCFStringEncodingMacVT100                CFStringEncodings = 252
	KCFStringEncodingMacHFS                  CFStringEncodings = 255
	KCFStringEncodingISOLatin2               CFStringEncodings = 514
	KCFStringEncodingISOLatin3               CFStringEncodings = 515
	KCFStringEncodingISOLatin4               CFStringEncodings = 516
	KCFStringEncodingISOLatinCyrillic        CFStringEncodings = 517
	KCFStringEncodingISOLatinArabic          CFStringEncodings = 518
	KCFStringEncodingISOLatinGreek           CFStringEncodings = 519
	KCFStringEncodingISOLatinHebrew          CFStringEncodings = 520
	KCFStringEncodingISOLatin5               CFStringEncodings = 521
	KCFStringEncodingISOLatin6               CFStringEncodings = 522
	KCFStringEncodingISOLatinThai            CFStringEncodings = 523
	KCFStringEncodingISOLatin7               CFStringEncodings = 525
	KCFStringEncodingISOLatin8               CFStringEncodings = 526
	KCFStringEncodingISOLatin9               CFStringEncodings = 527
	KCFStringEncodingISOLatin10              CFStringEncodings = 528
	KCFStringEncodingDOSLatinUS              CFStringEncodings = 1024
	KCFStringEncodingDOSGreek                CFStringEncodings = 1029
	KCFStringEncodingDOSBalticRim            CFStringEncodings = 1030
	KCFStringEncodingDOSLatin1               CFStringEncodings = 1040
	KCFStringEncodingDOSGreek1               CFStringEncodings = 1041
	KCFStringEncodingDOSLatin2               CFStringEncodings = 1042
	KCFStringEncodingDOSCyrillic             CFStringEncodings = 1043
	KCFStringEncodingDOSTurkish              CFStringEncodings = 1044
	KCFStringEncodingDOSPortuguese           CFStringEncodings = 1045
	KCFStringEncodingDOSIcelandic            CFStringEncodings = 1046
	KCFStringEncodingDOSHebrew               CFStringEncodings = 1047
	KCFStringEncodingDOSCanadianFrench       CFStringEncodings = 1048
	KCFStringEncodingDOSArabic               CFStringEncodings = 1049
	KCFStringEncodingDOSNordic               CFStringEncodings = 1050
	KCFStringEncodingDOSRussian              CFStringEncodings = 1051
	KCFStringEncodingDOSGreek2               CFStringEncodings = 1052
	KCFStringEncodingDOSThai                 CFStringEncodings = 1053
	KCFStringEncodingDOSJapanese             CFStringEncodings = 1056
	KCFStringEncodingDOSChineseSimplif       CFStringEncodings = 1057
	KCFStringEncodingDOSKorean               CFStringEncodings = 1058
	KCFStringEncodingDOSChineseTrad          CFStringEncodings = 1059
	KCFStringEncodingWindowsLatin2           CFStringEncodings = 1281
	KCFStringEncodingWindowsCyrillic         CFStringEncodings = 1282
	KCFStringEncodingWindowsGreek            CFStringEncodings = 1283
	KCFStringEncodingWindowsLatin5           CFStringEncodings = 1284
	KCFStringEncodingWindowsHebrew           CFStringEncodings = 1285
	KCFStringEncodingWindowsArabic           CFStringEncodings = 1286
	KCFStringEncodingWindowsBalticRim        CFStringEncodings = 1287
	KCFStringEncodingWindowsVietnamese       CFStringEncodings = 1288
	KCFStringEncodingWindowsKoreanJohab      CFStringEncodings = 1296
	KCFStringEncodingANSEL                   CFStringEncodings = 1537
	KCFStringEncodingJIS_X0201_76            CFStringEncodings = 1568
	KCFStringEncodingJIS_X0208_83            CFStringEncodings = 1569
	KCFStringEncodingJIS_X0208_90            CFStringEncodings = 1570
	KCFStringEncodingJIS_X0212_90            CFStringEncodings = 1571
	KCFStringEncodingJIS_C6226_78            CFStringEncodings = 1572
	KCFStringEncodingShiftJIS_X0213          CFStringEncodings = 1576
	KCFStringEncodingShiftJIS_X0213_MenKuTen CFStringEncodings = 1577
	KCFStringEncodingGB_2312_80              CFStringEncodings = 1584
	KCFStringEncodingGBK_95                  CFStringEncodings = 1585
	KCFStringEncodingGB_18030_2000           CFStringEncodings = 1586
	KCFStringEncodingKSC_5601_87             CFStringEncodings = 1600
	KCFStringEncodingKSC_5601_92_Johab       CFStringEncodings = 1601
	KCFStringEncodingCNS_11643_92_P1         CFStringEncodings = 1617
	KCFStringEncodingCNS_11643_92_P2         CFStringEncodings = 1618
	KCFStringEncodingCNS_11643_92_P3         CFStringEncodings = 1619
	KCFStringEncodingISO_2022_JP             CFStringEncodings = 2080
	KCFStringEncodingISO_2022_JP_2           CFStringEncodings = 2081
	KCFStringEncodingISO_2022_JP_1           CFStringEncodings = 2082
	KCFStringEncodingISO_2022_JP_3           CFStringEncodings = 2083
	KCFStringEncodingISO_2022_CN             CFStringEncodings = 2096
	KCFStringEncodingISO_2022_CN_EXT         CFStringEncodings = 2097
	KCFStringEncodingISO_2022_KR             CFStringEncodings = 2112
	KCFStringEncodingEUC_JP                  CFStringEncodings = 2336
	KCFStringEncodingEUC_CN                  CFStringEncodings = 2352
	KCFStringEncodingEUC_TW                  CFStringEncodings = 2353
	KCFStringEncodingEUC_KR                  CFStringEncodings = 2368
	KCFStringEncodingShiftJIS                CFStringEncodings = 2561
	KCFStringEncodingKOI8_R                  CFStringEncodings = 2562
	KCFStringEncodingBig5                    CFStringEncodings = 2563
	KCFStringEncodingMacRomanLatin1          CFStringEncodings = 2564
	KCFStringEncodingHZ_GB_2312              CFStringEncodings = 2565
	KCFStringEncodingBig5_HKSCS_1999         CFStringEncodings = 2566
	KCFStringEncodingVISCII                  CFStringEncodings = 2567
	KCFStringEncodingKOI8_U                  CFStringEncodings = 2568
	KCFStringEncodingBig5_E                  CFStringEncodings = 2569
	KCFStringEncodingNextStepJapanese        CFStringEncodings = 2818
	KCFStringEncodingEBCDIC_US               CFStringEncodings = 3073
	KCFStringEncodingEBCDIC_CP037            CFStringEncodings = 3074
	KCFStringEncodingUTF7                    CFStringEncodings = 67109120
	KCFStringEncodingUTF7_IMAP               CFStringEncodings = 2576
	KCFStringEncodingShiftJIS_X0213_00       CFStringEncodings = 1576
)

func (CFStringEncodings) String

func (e CFStringEncodings) String() string

type CFStringInlineBuffer

type CFStringInlineBuffer struct {
	Buffer              [64]uint16
	TheString           unsafe.Pointer
	DirectUniCharBuffer *uint16
	DirectCStringBuffer string
	RangeToBuffer       CFRange
	BufferedRangeStart  int
	BufferedRangeEnd    int
}

type CFStringNormalizationForm

type CFStringNormalizationForm int64
const (
	KCFStringNormalizationFormD  CFStringNormalizationForm = 0
	KCFStringNormalizationFormKD CFStringNormalizationForm = 1
	KCFStringNormalizationFormC  CFStringNormalizationForm = 2
	KCFStringNormalizationFormKC CFStringNormalizationForm = 3
)

func (CFStringNormalizationForm) String

func (e CFStringNormalizationForm) String() string

type CFStringTokenizer

type CFStringTokenizer struct{}

C struct: __CFStringTokenizer CFStringTokenizer is an opaque type.

type CFStringTokenizerTokenType

type CFStringTokenizerTokenType int64
const (
	KCFStringTokenizerTokenNone   CFStringTokenizerTokenType = 0
	KCFStringTokenizerTokenNormal CFStringTokenizerTokenType = 1
	// Compound token which may contain subtokens but with no derived subtokens. Its subtokens can be obtained by calling CFStringTokenizerGetCurrentSubTokens.
	KCFStringTokenizerTokenHasSubTokensMask CFStringTokenizerTokenType = 2
	// Compound token which may contain derived subtokens. Its subtokens and derived subtokens can be obtained by calling CFStringTokenizerGetCurrentSubTokens.
	KCFStringTokenizerTokenHasDerivedSubTokensMask CFStringTokenizerTokenType = 4
	KCFStringTokenizerTokenHasHasNumbersMask       CFStringTokenizerTokenType = 8
	KCFStringTokenizerTokenHasNonLettersMask       CFStringTokenizerTokenType = 16
	KCFStringTokenizerTokenIsCJWordMask            CFStringTokenizerTokenType = 32
)

func CFStringTokenizerAdvanceToNextToken

func CFStringTokenizerAdvanceToNextToken(tokenizer unsafe.Pointer) CFStringTokenizerTokenType

func CFStringTokenizerGoToTokenAtIndex

func CFStringTokenizerGoToTokenAtIndex(tokenizer unsafe.Pointer, index int) CFStringTokenizerTokenType

func (CFStringTokenizerTokenType) String

type CFSwappedFloat32

type CFSwappedFloat32 struct {
	V uint32
}

func CFConvertFloat32HostToSwapped

func CFConvertFloat32HostToSwapped(arg float32) CFSwappedFloat32

func CFConvertFloatHostToSwapped

func CFConvertFloatHostToSwapped(arg float32) CFSwappedFloat32

type CFSwappedFloat64

type CFSwappedFloat64 struct {
	V uint64
}

func CFConvertDoubleHostToSwapped

func CFConvertDoubleHostToSwapped(arg float64) CFSwappedFloat64

func CFConvertFloat64HostToSwapped

func CFConvertFloat64HostToSwapped(arg float64) CFSwappedFloat64

type CFTimeZone

type CFTimeZone struct{}

C struct: __CFTimeZone CFTimeZone is an opaque type.

type CFTimeZoneNameStyle

type CFTimeZoneNameStyle int64
const (
	KCFTimeZoneNameStyleStandard            CFTimeZoneNameStyle = 0
	KCFTimeZoneNameStyleShortStandard       CFTimeZoneNameStyle = 1
	KCFTimeZoneNameStyleDaylightSaving      CFTimeZoneNameStyle = 2
	KCFTimeZoneNameStyleShortDaylightSaving CFTimeZoneNameStyle = 3
	KCFTimeZoneNameStyleGeneric             CFTimeZoneNameStyle = 4
	KCFTimeZoneNameStyleShortGeneric        CFTimeZoneNameStyle = 5
)

func (CFTimeZoneNameStyle) String

func (e CFTimeZoneNameStyle) String() string

type CFTree

type CFTree struct{}

@typedef CFTreeRef This is the type of a reference to CFTrees. C struct: __CFTree CFTree is an opaque type.

type CFTreeContext

type CFTreeContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

@typedef CFTreeContext Structure containing user-specified data and callbacks for a CFTree. @field version The version number of the structure type being passed in as a parameter to the CFTree creation function. This structure is version 0. @field info A C pointer to a user-specified block of data. @field retain The callback used to add a retain for the info field. If this parameter is not a pointer to a function of the correct prototype, the behavior is undefined. The value may be NULL. @field release The calllback used to remove a retain previously added for the info field. If this parameter is not a pointer to a function of the correct prototype, the behavior is undefined. The value may be NULL. @field copyDescription The callback used to provide a description of the info field.

type CFURL deprecated

type CFURL struct{}

Deprecated: Carbon File Manager is deprecated, use kCFURLPOSIXPathStyle where possible C struct: __CFURL CFURL is an opaque type.

type CFURLBookmarkCreationOptions

type CFURLBookmarkCreationOptions int64
const (
	KCFURLBookmarkCreationMinimalBookmarkMask              CFURLBookmarkCreationOptions = 512
	KCFURLBookmarkCreationSuitableForBookmarkFile          CFURLBookmarkCreationOptions = 1024
	KCFURLBookmarkCreationWithSecurityScope                CFURLBookmarkCreationOptions = 2048
	KCFURLBookmarkCreationSecurityScopeAllowOnlyReadAccess CFURLBookmarkCreationOptions = 4096
	KCFURLBookmarkCreationWithoutImplicitSecurityScope     CFURLBookmarkCreationOptions = 536870912
	KCFURLBookmarkCreationPreferFileIDResolutionMask       CFURLBookmarkCreationOptions = 256
)

func (CFURLBookmarkCreationOptions) String

type CFURLBookmarkResolutionOptions

type CFURLBookmarkResolutionOptions int64
const (
	KCFURLBookmarkResolutionWithoutUIMask                 CFURLBookmarkResolutionOptions = 256
	KCFURLBookmarkResolutionWithoutMountingMask           CFURLBookmarkResolutionOptions = 512
	KCFURLBookmarkResolutionWithSecurityScope             CFURLBookmarkResolutionOptions = 1024
	KCFURLBookmarkResolutionWithoutImplicitStartAccessing CFURLBookmarkResolutionOptions = 32768
	KCFBookmarkResolutionWithoutUIMask                    CFURLBookmarkResolutionOptions = 256
	KCFBookmarkResolutionWithoutMountingMask              CFURLBookmarkResolutionOptions = 512
)

func (CFURLBookmarkResolutionOptions) String

type CFURLComponentType

type CFURLComponentType int64
const (
	KCFURLComponentScheme            CFURLComponentType = 1
	KCFURLComponentNetLocation       CFURLComponentType = 2
	KCFURLComponentPath              CFURLComponentType = 3
	KCFURLComponentResourceSpecifier CFURLComponentType = 4
	KCFURLComponentUser              CFURLComponentType = 5
	KCFURLComponentPassword          CFURLComponentType = 6
	KCFURLComponentUserInfo          CFURLComponentType = 7
	KCFURLComponentHost              CFURLComponentType = 8
	KCFURLComponentPort              CFURLComponentType = 9
	KCFURLComponentParameterString   CFURLComponentType = 10
	KCFURLComponentQuery             CFURLComponentType = 11
	KCFURLComponentFragment          CFURLComponentType = 12
)

func (CFURLComponentType) String

func (e CFURLComponentType) String() string

type CFURLEnumerator

type CFURLEnumerator struct{}

C struct: __CFURLEnumerator CFURLEnumerator is an opaque type.

type CFURLEnumeratorOptions

type CFURLEnumeratorOptions int64
const (
	KCFURLEnumeratorDefaultBehavior             CFURLEnumeratorOptions = 0
	KCFURLEnumeratorDescendRecursively          CFURLEnumeratorOptions = 1
	KCFURLEnumeratorSkipInvisibles              CFURLEnumeratorOptions = 2
	KCFURLEnumeratorGenerateFileReferenceURLs   CFURLEnumeratorOptions = 4
	KCFURLEnumeratorSkipPackageContents         CFURLEnumeratorOptions = 8
	KCFURLEnumeratorIncludeDirectoriesPreOrder  CFURLEnumeratorOptions = 16
	KCFURLEnumeratorIncludeDirectoriesPostOrder CFURLEnumeratorOptions = 32
	KCFURLEnumeratorGenerateRelativePathURLs    CFURLEnumeratorOptions = 64
)

func (CFURLEnumeratorOptions) String

func (e CFURLEnumeratorOptions) String() string

type CFURLEnumeratorResult

type CFURLEnumeratorResult int64
const (
	KCFURLEnumeratorSuccess                   CFURLEnumeratorResult = 1
	KCFURLEnumeratorEnd                       CFURLEnumeratorResult = 2
	KCFURLEnumeratorError                     CFURLEnumeratorResult = 3
	KCFURLEnumeratorDirectoryPostOrderSuccess CFURLEnumeratorResult = 4
)

func CFURLEnumeratorGetNextURL

func CFURLEnumeratorGetNextURL(enumerator unsafe.Pointer, url unsafe.Pointer, error_ unsafe.Pointer) CFURLEnumeratorResult

func (CFURLEnumeratorResult) String

func (e CFURLEnumeratorResult) String() string

type CFURLError deprecated

type CFURLError int64

Deprecated: Use CFError codes instead

const (
	KCFURLUnknownError                 CFURLError = -10
	KCFURLUnknownSchemeError           CFURLError = -11
	KCFURLResourceNotFoundError        CFURLError = -12
	KCFURLResourceAccessViolationError CFURLError = -13
	KCFURLRemoteHostUnavailableError   CFURLError = -14
	KCFURLImproperArgumentsError       CFURLError = -15
	KCFURLUnknownPropertyKeyError      CFURLError = -16
	KCFURLPropertyKeyUnavailableError  CFURLError = -17
	KCFURLTimeoutError                 CFURLError = -18
)

func (CFURLError) String

func (e CFURLError) String() string

type CFURLPathStyle

type CFURLPathStyle int64
const (
	KCFURLPOSIXPathStyle   CFURLPathStyle = 0
	KCFURLHFSPathStyle     CFURLPathStyle = 1
	KCFURLWindowsPathStyle CFURLPathStyle = 2
)

func (CFURLPathStyle) String

func (e CFURLPathStyle) String() string

type CFUUID

type CFUUID struct{}

C struct: __CFUUID CFUUID is an opaque type.

type CFUUIDBytes

type CFUUIDBytes struct {
	Byte0  uint8
	Byte1  uint8
	Byte2  uint8
	Byte3  uint8
	Byte4  uint8
	Byte5  uint8
	Byte6  uint8
	Byte7  uint8
	Byte8  uint8
	Byte9  uint8
	Byte10 uint8
	Byte11 uint8
	Byte12 uint8
	Byte13 uint8
	Byte14 uint8
	Byte15 uint8
}

func CFUUIDGetUUIDBytes

func CFUUIDGetUUIDBytes(uuid unsafe.Pointer) CFUUIDBytes

type CFUserNotification

type CFUserNotification struct{}

C struct: __CFUserNotification CFUserNotification is an opaque type.

type CFWriteStream

type CFWriteStream struct{}

C struct: __CFWriteStream CFWriteStream is an opaque type.

type CFXMLAttributeDeclarationInfo

type CFXMLAttributeDeclarationInfo struct {
	AttributeName unsafe.Pointer
	TypeString    unsafe.Pointer
	DefaultString unsafe.Pointer
}

type CFXMLAttributeListDeclarationInfo

type CFXMLAttributeListDeclarationInfo struct {
	NumberOfAttributes int
	Attributes         *CFXMLAttributeDeclarationInfo
}

type CFXMLDocumentInfo

type CFXMLDocumentInfo struct {
	SourceURL unsafe.Pointer
	Encoding  uint
}

type CFXMLDocumentTypeInfo

type CFXMLDocumentTypeInfo struct {
	ExternalID CFXMLExternalID
}

type CFXMLElementInfo

type CFXMLElementInfo struct {
	Attributes     unsafe.Pointer
	AttributeOrder unsafe.Pointer
	IsEmpty        uint8
}

type CFXMLElementTypeDeclarationInfo

type CFXMLElementTypeDeclarationInfo struct {
	ContentDescription unsafe.Pointer
}

type CFXMLEntityInfo

type CFXMLEntityInfo struct {
	EntityType      CFXMLEntityTypeCode
	ReplacementText unsafe.Pointer
	EntityID        CFXMLExternalID
	NotationName    unsafe.Pointer
}

type CFXMLEntityReferenceInfo

type CFXMLEntityReferenceInfo struct {
	EntityType CFXMLEntityTypeCode
}

type CFXMLEntityTypeCode

type CFXMLEntityTypeCode int64
const (
	KCFXMLEntityTypeParameter      CFXMLEntityTypeCode = 0
	KCFXMLEntityTypeParsedInternal CFXMLEntityTypeCode = 1
	KCFXMLEntityTypeParsedExternal CFXMLEntityTypeCode = 2
	KCFXMLEntityTypeUnparsed       CFXMLEntityTypeCode = 3
	KCFXMLEntityTypeCharacter      CFXMLEntityTypeCode = 4
)

func (CFXMLEntityTypeCode) String

func (e CFXMLEntityTypeCode) String() string

type CFXMLExternalID

type CFXMLExternalID struct {
	SystemID unsafe.Pointer
	PublicID unsafe.Pointer
}

type CFXMLNode

type CFXMLNode struct{}

C struct: __CFXMLNode CFXMLNode is an opaque type.

type CFXMLNodeTypeCode

type CFXMLNodeTypeCode int64
const (
	KCFXMLNodeTypeDocument                 CFXMLNodeTypeCode = 1
	KCFXMLNodeTypeElement                  CFXMLNodeTypeCode = 2
	KCFXMLNodeTypeAttribute                CFXMLNodeTypeCode = 3
	KCFXMLNodeTypeProcessingInstruction    CFXMLNodeTypeCode = 4
	KCFXMLNodeTypeComment                  CFXMLNodeTypeCode = 5
	KCFXMLNodeTypeText                     CFXMLNodeTypeCode = 6
	KCFXMLNodeTypeCDATASection             CFXMLNodeTypeCode = 7
	KCFXMLNodeTypeDocumentFragment         CFXMLNodeTypeCode = 8
	KCFXMLNodeTypeEntity                   CFXMLNodeTypeCode = 9
	KCFXMLNodeTypeEntityReference          CFXMLNodeTypeCode = 10
	KCFXMLNodeTypeDocumentType             CFXMLNodeTypeCode = 11
	KCFXMLNodeTypeWhitespace               CFXMLNodeTypeCode = 12
	KCFXMLNodeTypeNotation                 CFXMLNodeTypeCode = 13
	KCFXMLNodeTypeElementTypeDeclaration   CFXMLNodeTypeCode = 14
	KCFXMLNodeTypeAttributeListDeclaration CFXMLNodeTypeCode = 15
)

func CFXMLNodeGetTypeCode deprecated

func CFXMLNodeGetTypeCode(node unsafe.Pointer) CFXMLNodeTypeCode

Deprecated: since macOS 10.8.

func (CFXMLNodeTypeCode) String

func (e CFXMLNodeTypeCode) String() string

type CFXMLNotationInfo

type CFXMLNotationInfo struct {
	ExternalID CFXMLExternalID
}

type CFXMLParser

type CFXMLParser struct{}

C struct: __CFXMLParser CFXMLParser is an opaque type.

type CFXMLParserCallBacks

type CFXMLParserCallBacks struct {
	Version               int
	CreateXMLStructure    unsafe.Pointer
	AddChild              unsafe.Pointer
	EndXMLStructure       unsafe.Pointer
	ResolveExternalEntity unsafe.Pointer
	HandleError           unsafe.Pointer
}

type CFXMLParserContext

type CFXMLParserContext struct {
	Version         int
	Info            unsafe.Pointer
	Retain          unsafe.Pointer
	Release         unsafe.Pointer
	CopyDescription unsafe.Pointer
}

type CFXMLParserOptions

type CFXMLParserOptions int64
const (
	KCFXMLParserValidateDocument        CFXMLParserOptions = 1
	KCFXMLParserSkipMetaData            CFXMLParserOptions = 2
	KCFXMLParserReplacePhysicalEntities CFXMLParserOptions = 4
	KCFXMLParserSkipWhitespace          CFXMLParserOptions = 8
	KCFXMLParserResolveExternalEntities CFXMLParserOptions = 16
	KCFXMLParserAddImpliedAttributes    CFXMLParserOptions = 32
	KCFXMLParserAllOptions              CFXMLParserOptions = 16777215
	KCFXMLParserNoOptions               CFXMLParserOptions = 0
)

func (CFXMLParserOptions) String

func (e CFXMLParserOptions) String() string

type CFXMLParserStatusCode

type CFXMLParserStatusCode int64
const (
	KCFXMLStatusParseNotBegun                 CFXMLParserStatusCode = -2
	KCFXMLStatusParseInProgress               CFXMLParserStatusCode = -1
	KCFXMLStatusParseSuccessful               CFXMLParserStatusCode = 0
	KCFXMLErrorUnexpectedEOF                  CFXMLParserStatusCode = 1
	KCFXMLErrorUnknownEncoding                CFXMLParserStatusCode = 2
	KCFXMLErrorEncodingConversionFailure      CFXMLParserStatusCode = 3
	KCFXMLErrorMalformedProcessingInstruction CFXMLParserStatusCode = 4
	KCFXMLErrorMalformedDTD                   CFXMLParserStatusCode = 5
	KCFXMLErrorMalformedName                  CFXMLParserStatusCode = 6
	KCFXMLErrorMalformedCDSect                CFXMLParserStatusCode = 7
	KCFXMLErrorMalformedCloseTag              CFXMLParserStatusCode = 8
	KCFXMLErrorMalformedStartTag              CFXMLParserStatusCode = 9
	KCFXMLErrorMalformedDocument              CFXMLParserStatusCode = 10
	KCFXMLErrorElementlessDocument            CFXMLParserStatusCode = 11
	KCFXMLErrorMalformedComment               CFXMLParserStatusCode = 12
	KCFXMLErrorMalformedCharacterReference    CFXMLParserStatusCode = 13
	KCFXMLErrorMalformedParsedCharacterData   CFXMLParserStatusCode = 14
	KCFXMLErrorNoData                         CFXMLParserStatusCode = 15
)

func CFXMLParserGetStatusCode deprecated

func CFXMLParserGetStatusCode(parser unsafe.Pointer) CFXMLParserStatusCode

Deprecated: since macOS 10.8.

func (CFXMLParserStatusCode) String

func (e CFXMLParserStatusCode) String() string

type CFXMLProcessingInstructionInfo

type CFXMLProcessingInstructionInfo struct {
	DataString unsafe.Pointer
}

type CGAffineTransform

type CGAffineTransform struct {
	A  float64
	B  float64
	C  float64
	D  float64
	Tx float64
	Ty float64
}

type CGAffineTransformComponents

type CGAffineTransformComponents struct {
	Scale           CGSize
	HorizontalShear float64
	Rotation        float64
	Translation     CGVector
}

type CGPoint

type CGPoint struct {
	X float64
	Y float64
}

type CGRect

type CGRect struct {
	Origin CGPoint
	Size   CGSize
}

type CGRectEdge

type CGRectEdge int64
const (
	CGRectMinXEdge CGRectEdge = 0
	CGRectMinYEdge CGRectEdge = 1
	CGRectMaxXEdge CGRectEdge = 2
	CGRectMaxYEdge CGRectEdge = 3
)

func (CGRectEdge) String

func (e CGRectEdge) String() string

type CGSize

type CGSize struct {
	Width  float64
	Height float64
}

type CGVector

type CGVector struct {
	Dx float64
	Dy float64
}

type Clockid_t

type Clockid_t int64

func (Clockid_t) String

func (e Clockid_t) String() string

type Dispatch_autorelease_frequency_t

type Dispatch_autorelease_frequency_t uint64
const (
	DISPATCH_AUTORELEASE_FREQUENCY_INHERIT   Dispatch_autorelease_frequency_t = 0
	DISPATCH_AUTORELEASE_FREQUENCY_WORK_ITEM Dispatch_autorelease_frequency_t = 1
	DISPATCH_AUTORELEASE_FREQUENCY_NEVER     Dispatch_autorelease_frequency_t = 2
)

func (Dispatch_autorelease_frequency_t) String

type Dispatch_block_flags_t

type Dispatch_block_flags_t uint64
const (
	DISPATCH_BLOCK_BARRIER           Dispatch_block_flags_t = 1
	DISPATCH_BLOCK_DETACHED          Dispatch_block_flags_t = 2
	DISPATCH_BLOCK_ASSIGN_CURRENT    Dispatch_block_flags_t = 4
	DISPATCH_BLOCK_NO_QOS_CLASS      Dispatch_block_flags_t = 8
	DISPATCH_BLOCK_INHERIT_QOS_CLASS Dispatch_block_flags_t = 16
	DISPATCH_BLOCK_ENFORCE_QOS_CLASS Dispatch_block_flags_t = 32
)

func (Dispatch_block_flags_t) String

func (e Dispatch_block_flags_t) String() string

type FSRef

type FSRef struct{}

FSRef is an opaque type.

type Filesec_property_t

type Filesec_property_t int64
const (
	FILESEC_OWNER         Filesec_property_t = 1
	FILESEC_GROUP         Filesec_property_t = 2
	FILESEC_UUID          Filesec_property_t = 3
	FILESEC_MODE          Filesec_property_t = 4
	FILESEC_ACL           Filesec_property_t = 5
	FILESEC_GRPUUID       Filesec_property_t = 6
	FILESEC_ACL_RAW       Filesec_property_t = 100
	FILESEC_ACL_ALLOCSIZE Filesec_property_t = 101
)

func (Filesec_property_t) String

func (e Filesec_property_t) String() string

type Idtype_t

type Idtype_t int64
const (
	P_ALL  Idtype_t = 0
	P_PID  Idtype_t = 1
	P_PGID Idtype_t = 2
)

func (Idtype_t) String

func (e Idtype_t) String() string

type MallocZoneT

type MallocZoneT struct{}

C struct: _malloc_zone_t MallocZoneT is an opaque type.

type Mpo_flags_t

type Mpo_flags_t int64
const (
	MPO_PORT                            Mpo_flags_t = 0
	MPO_SERVICE_PORT                    Mpo_flags_t = 1024
	MPO_CONNECTION_PORT                 Mpo_flags_t = 2048
	MPO_REPLY_PORT                      Mpo_flags_t = 4096
	MPO_WEAK_REPLY_PORT                 Mpo_flags_t = 16384
	MPO_NOTIFICATION_PORT               Mpo_flags_t = 17408
	MPO_EXCEPTION_PORT                  Mpo_flags_t = 32768
	MPO_CONNECTION_PORT_WITH_PORT_ARRAY Mpo_flags_t = 65536
)

func (Mpo_flags_t) String

func (e Mpo_flags_t) String() string

type Os_clockid_t

type Os_clockid_t int64
const (
	OS_CLOCK_MACH_ABSOLUTE_TIME Os_clockid_t = 32
)

func (Os_clockid_t) String

func (e Os_clockid_t) String() string

type Ptrauth_key

type Ptrauth_key int64
const (
	Ptrauth_key_none                     Ptrauth_key = -1
	Ptrauth_key_asia                     Ptrauth_key = 0
	Ptrauth_key_asib                     Ptrauth_key = 1
	Ptrauth_key_asda                     Ptrauth_key = 2
	Ptrauth_key_asdb                     Ptrauth_key = 3
	Ptrauth_key_process_independent_code Ptrauth_key = 0
	Ptrauth_key_process_dependent_code   Ptrauth_key = 1
	Ptrauth_key_process_independent_data Ptrauth_key = 2
	Ptrauth_key_process_dependent_data   Ptrauth_key = 3
	Ptrauth_key_return_address           Ptrauth_key = 1
	Ptrauth_key_frame_pointer            Ptrauth_key = 3
	Ptrauth_key_function_pointer         Ptrauth_key = 0
	Ptrauth_key_block_function           Ptrauth_key = 0
	Ptrauth_key_cxx_vtable_pointer       Ptrauth_key = 2
	Ptrauth_key_method_list_pointer      Ptrauth_key = 2
	Ptrauth_key_objc_isa_pointer         Ptrauth_key = 2
	Ptrauth_key_objc_super_pointer       Ptrauth_key = 2
	Ptrauth_key_objc_sel_pointer         Ptrauth_key = 3
	Ptrauth_key_objc_class_ro_pointer    Ptrauth_key = 2
	Ptrauth_key_block_descriptor_pointer Ptrauth_key = 2
	Ptrauth_key_init_fini_pointer        Ptrauth_key = 0
)

func (Ptrauth_key) String

func (e Ptrauth_key) String() string

type Qos_class_t

type Qos_class_t uint32
const (
	QOS_CLASS_USER_INTERACTIVE Qos_class_t = 33
	QOS_CLASS_USER_INITIATED   Qos_class_t = 25
	QOS_CLASS_DEFAULT          Qos_class_t = 21
	QOS_CLASS_UTILITY          Qos_class_t = 17
	QOS_CLASS_BACKGROUND       Qos_class_t = 9
	QOS_CLASS_UNSPECIFIED      Qos_class_t = 0
)

func (Qos_class_t) String

func (e Qos_class_t) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL