Documentation
¶
Overview ¶
Package corefoundation provides a fluent Go API over the macOS CoreFoundation framework.
Construction ¶
New… functions create objects; each With… method sets one property and returns its receiver, so configuration calls chain. A <Type>FromID constructor adopts an Objective-C object obtained elsewhere.
Lifecycle ¶
A wrapper releases its Objective-C object automatically once the garbage collector finds it unreachable. Call Release to relinquish the reference deterministically (for objects holding scarce resources); Release is idempotent, and afterwards the wrapper's methods are no-ops returning zero values.
Index ¶
- Constants
- func BuiltinConstantP() int
- func CFAbsoluteTimeAddGregorianUnits(at float64, tz obj.Object, units unsafe.Pointer) float64
- func CFAbsoluteTimeGetCurrent() float64
- func CFAbsoluteTimeGetDayOfWeek(at float64, tz obj.Object) int
- func CFAbsoluteTimeGetDayOfYear(at float64, tz obj.Object) int
- func CFAbsoluteTimeGetDifferenceAsGregorianUnits(at1 float64, at2 float64, tz obj.Object, unitFlags int) unsafe.Pointer
- func CFAbsoluteTimeGetGregorianDate(at float64, tz obj.Object) unsafe.Pointer
- func CFAbsoluteTimeGetWeekOfYear(at float64, tz obj.Object) int
- func CFAllocatorAllocate(allocator obj.Object, size int, hint int) unsafe.Pointer
- func CFAllocatorAllocateBytes(allocator obj.Object, size int, hint int) unsafe.Pointer
- func CFAllocatorAllocateTyped(allocator obj.Object, size int, descriptor uint64, hint int) unsafe.Pointer
- func CFAllocatorCreate(allocator obj.Object, context_ unsafe.Pointer) obj.Object
- func CFAllocatorDeallocate(allocator obj.Object, ptr unsafe.Pointer)
- func CFAllocatorGetContext(allocator obj.Object, context_ unsafe.Pointer)
- func CFAllocatorGetDefault() obj.Object
- func CFAllocatorGetPreferredSizeForSize(allocator obj.Object, size int, hint int) int
- func CFAllocatorGetTypeID() int
- func CFAllocatorReallocate(allocator obj.Object, ptr unsafe.Pointer, newsize int, hint int) unsafe.Pointer
- func CFAllocatorReallocateBytes(allocator obj.Object, ptr unsafe.Pointer, newsize int, hint int) unsafe.Pointer
- func CFAllocatorReallocateTyped(allocator obj.Object, ptr unsafe.Pointer, newsize int, descriptor uint64, ...) unsafe.Pointer
- func CFAllocatorSetDefault(allocator obj.Object)
- func CFArrayAppendArray(theArray obj.Object, otherArray obj.Object, otherRange unsafe.Pointer)
- func CFArrayAppendValue(theArray obj.Object, value unsafe.Pointer)
- func CFArrayApplyFunction(theArray obj.Object, range_ unsafe.Pointer, applier unsafe.Pointer, ...)
- func CFArrayBSearchValues(theArray obj.Object, range_ unsafe.Pointer, value unsafe.Pointer, ...) int
- func CFArrayContainsValue(theArray obj.Object, range_ unsafe.Pointer, value unsafe.Pointer) uint8
- func CFArrayCreate(allocator obj.Object, values unsafe.Pointer, numValues int, ...) obj.Object
- func CFArrayCreateCopy(allocator obj.Object, theArray obj.Object) obj.Object
- func CFArrayCreateMutable(allocator obj.Object, capacity int, callBacks unsafe.Pointer) obj.Object
- func CFArrayCreateMutableCopy(allocator obj.Object, capacity int, theArray obj.Object) obj.Object
- func CFArrayExchangeValuesAtIndices(theArray obj.Object, idx1 int, idx2 int)
- func CFArrayGetCount(theArray obj.Object) int
- func CFArrayGetCountOfValue(theArray obj.Object, range_ unsafe.Pointer, value unsafe.Pointer) int
- func CFArrayGetFirstIndexOfValue(theArray obj.Object, range_ unsafe.Pointer, value unsafe.Pointer) int
- func CFArrayGetLastIndexOfValue(theArray obj.Object, range_ unsafe.Pointer, value unsafe.Pointer) int
- func CFArrayGetTypeID() int
- func CFArrayGetValueAtIndex(theArray obj.Object, idx int) unsafe.Pointer
- func CFArrayGetValues(theArray obj.Object, range_ unsafe.Pointer, values unsafe.Pointer)
- func CFArrayInsertValueAtIndex(theArray obj.Object, idx int, value unsafe.Pointer)
- func CFArrayRemoveAllValues(theArray obj.Object)
- func CFArrayRemoveValueAtIndex(theArray obj.Object, idx int)
- func CFArrayReplaceValues(theArray obj.Object, range_ unsafe.Pointer, newValues unsafe.Pointer, ...)
- func CFArraySetValueAtIndex(theArray obj.Object, idx int, value unsafe.Pointer)
- func CFArraySortValues(theArray obj.Object, range_ unsafe.Pointer, comparator unsafe.Pointer, ...)
- func CFAttributedStringBeginEditing(aStr obj.Object)
- func CFAttributedStringCreate(alloc obj.Object, str obj.Object, attributes obj.Object) obj.Object
- func CFAttributedStringCreateCopy(alloc obj.Object, aStr obj.Object) obj.Object
- func CFAttributedStringCreateMutable(alloc obj.Object, maxLength int) obj.Object
- func CFAttributedStringCreateMutableCopy(alloc obj.Object, maxLength int, aStr obj.Object) obj.Object
- func CFAttributedStringCreateWithSubstring(alloc obj.Object, aStr obj.Object, range_ unsafe.Pointer) obj.Object
- func CFAttributedStringEndEditing(aStr obj.Object)
- func CFAttributedStringGetBidiLevelsAndResolvedDirections(attributedString obj.Object, range_ unsafe.Pointer, baseDirection int8) (ok bool, bidiLevels uint8, baseDirections uint8)
- func CFAttributedStringGetLength(aStr obj.Object) int
- func CFAttributedStringGetMutableString(aStr obj.Object) obj.Object
- func CFAttributedStringGetStatisticalWritingDirections(attributedString obj.Object, range_ unsafe.Pointer, baseDirection int8) (ok bool, bidiLevels uint8, baseDirections uint8)
- func CFAttributedStringGetString(aStr obj.Object) obj.Object
- func CFAttributedStringGetTypeID() int
- func CFAttributedStringRemoveAttribute(aStr obj.Object, range_ unsafe.Pointer, attrName obj.Object)
- func CFAttributedStringReplaceAttributedString(aStr obj.Object, range_ unsafe.Pointer, replacement obj.Object)
- func CFAttributedStringReplaceString(aStr obj.Object, range_ unsafe.Pointer, replacement obj.Object)
- func CFAttributedStringSetAttribute(aStr obj.Object, range_ unsafe.Pointer, attrName obj.Object, value obj.Object)
- func CFAttributedStringSetAttributes(aStr obj.Object, range_ unsafe.Pointer, replacement obj.Object, ...)
- func CFAutorelease(arg obj.Object) obj.Object
- func CFBagAddValue(theBag obj.Object, value unsafe.Pointer)
- func CFBagApplyFunction(theBag obj.Object, applier unsafe.Pointer, context_ unsafe.Pointer)
- func CFBagContainsValue(theBag obj.Object, value unsafe.Pointer) uint8
- func CFBagCreate(allocator obj.Object, values unsafe.Pointer, numValues int, ...) obj.Object
- func CFBagCreateCopy(allocator obj.Object, theBag obj.Object) obj.Object
- func CFBagCreateMutable(allocator obj.Object, capacity int, callBacks unsafe.Pointer) obj.Object
- func CFBagCreateMutableCopy(allocator obj.Object, capacity int, theBag obj.Object) obj.Object
- func CFBagGetCount(theBag obj.Object) int
- func CFBagGetCountOfValue(theBag obj.Object, value unsafe.Pointer) int
- func CFBagGetTypeID() int
- func CFBagGetValue(theBag obj.Object, value unsafe.Pointer) unsafe.Pointer
- func CFBagGetValueIfPresent(theBag obj.Object, candidate unsafe.Pointer, value unsafe.Pointer) uint8
- func CFBagGetValues(theBag obj.Object, values unsafe.Pointer)
- func CFBagRemoveAllValues(theBag obj.Object)
- func CFBagRemoveValue(theBag obj.Object, value unsafe.Pointer)
- func CFBagReplaceValue(theBag obj.Object, value unsafe.Pointer)
- func CFBagSetValue(theBag obj.Object, value unsafe.Pointer)
- func CFBinaryHeapAddValue(heap obj.Object, value unsafe.Pointer)
- func CFBinaryHeapApplyFunction(heap obj.Object, applier unsafe.Pointer, context_ unsafe.Pointer)
- func CFBinaryHeapContainsValue(heap obj.Object, value unsafe.Pointer) uint8
- func CFBinaryHeapCreate(allocator obj.Object, capacity int, callBacks unsafe.Pointer, ...) obj.Object
- func CFBinaryHeapCreateCopy(allocator obj.Object, capacity int, heap obj.Object) obj.Object
- func CFBinaryHeapGetCount(heap obj.Object) int
- func CFBinaryHeapGetCountOfValue(heap obj.Object, value unsafe.Pointer) int
- func CFBinaryHeapGetMinimum(heap obj.Object) unsafe.Pointer
- func CFBinaryHeapGetMinimumIfPresent(heap obj.Object, value unsafe.Pointer) uint8
- func CFBinaryHeapGetTypeID() int
- func CFBinaryHeapGetValues(heap obj.Object, values unsafe.Pointer)
- func CFBinaryHeapRemoveAllValues(heap obj.Object)
- func CFBinaryHeapRemoveMinimumValue(heap obj.Object)
- func CFBitVectorContainsBit(bv obj.Object, range_ unsafe.Pointer, value int) uint8
- func CFBitVectorCreate(allocator obj.Object, numBits int) (result obj.Object, data uint8)
- func CFBitVectorCreateCopy(allocator obj.Object, bv obj.Object) obj.Object
- func CFBitVectorCreateMutable(allocator obj.Object, capacity int) obj.Object
- func CFBitVectorCreateMutableCopy(allocator obj.Object, capacity int, bv obj.Object) obj.Object
- func CFBitVectorFlipBitAtIndex(bv obj.Object, idx int)
- func CFBitVectorFlipBits(bv obj.Object, range_ unsafe.Pointer)
- func CFBitVectorGetBitAtIndex(bv obj.Object, idx int) int
- func CFBitVectorGetBits(bv obj.Object, range_ unsafe.Pointer) (data uint8)
- func CFBitVectorGetCount(bv obj.Object) int
- func CFBitVectorGetCountOfBit(bv obj.Object, range_ unsafe.Pointer, value int) int
- func CFBitVectorGetFirstIndexOfBit(bv obj.Object, range_ unsafe.Pointer, value int) int
- func CFBitVectorGetLastIndexOfBit(bv obj.Object, range_ unsafe.Pointer, value int) int
- func CFBitVectorGetTypeID() int
- func CFBitVectorSetAllBits(bv obj.Object, value int)
- func CFBitVectorSetBitAtIndex(bv obj.Object, idx int, value int)
- func CFBitVectorSetBits(bv obj.Object, range_ unsafe.Pointer, value int)
- func CFBitVectorSetCount(bv obj.Object, count int)
- func CFBooleanGetTypeID() int
- func CFBooleanGetValue(boolean obj.Object) uint8
- func CFBundleCloseBundleResourceMap(bundle obj.Object, refNum int)
- func CFBundleCopyAuxiliaryExecutableURL(bundle obj.Object, executableName obj.Object) obj.Object
- func CFBundleCopyBuiltInPlugInsURL(bundle obj.Object) obj.Object
- func CFBundleCopyBundleLocalizations(bundle obj.Object) obj.Object
- func CFBundleCopyBundleURL(bundle obj.Object) obj.Object
- func CFBundleCopyExecutableArchitectures(bundle obj.Object) obj.Object
- func CFBundleCopyExecutableArchitecturesForURL(url obj.Object) obj.Object
- func CFBundleCopyExecutableURL(bundle obj.Object) obj.Object
- func CFBundleCopyInfoDictionaryForURL(url obj.Object) obj.Object
- func CFBundleCopyInfoDictionaryInDirectory(bundleURL obj.Object) obj.Object
- func CFBundleCopyLocalizationsForPreferences(locArray obj.Object, prefArray obj.Object) obj.Object
- func CFBundleCopyLocalizationsForURL(url obj.Object) obj.Object
- func CFBundleCopyLocalizedString(bundle obj.Object, key obj.Object, value obj.Object, tableName obj.Object) obj.Object
- func CFBundleCopyLocalizedStringForLocalizations(bundle obj.Object, key obj.Object, value obj.Object, tableName obj.Object, ...) obj.Object
- func CFBundleCopyPreferredLocalizationsFromArray(locArray obj.Object) obj.Object
- func CFBundleCopyPrivateFrameworksURL(bundle obj.Object) obj.Object
- func CFBundleCopyResourceURL(bundle obj.Object, resourceName obj.Object, resourceType obj.Object, ...) obj.Object
- func CFBundleCopyResourceURLForLocalization(bundle obj.Object, resourceName obj.Object, resourceType obj.Object, ...) obj.Object
- func CFBundleCopyResourceURLInDirectory(bundleURL obj.Object, resourceName obj.Object, resourceType obj.Object, ...) obj.Object
- func CFBundleCopyResourceURLsOfType(bundle obj.Object, resourceType obj.Object, subDirName obj.Object) obj.Object
- func CFBundleCopyResourceURLsOfTypeForLocalization(bundle obj.Object, resourceType obj.Object, subDirName obj.Object, ...) obj.Object
- func CFBundleCopyResourceURLsOfTypeInDirectory(bundleURL obj.Object, resourceType obj.Object, subDirName obj.Object) obj.Object
- func CFBundleCopyResourcesDirectoryURL(bundle obj.Object) obj.Object
- func CFBundleCopySharedFrameworksURL(bundle obj.Object) obj.Object
- func CFBundleCopySharedSupportURL(bundle obj.Object) obj.Object
- func CFBundleCopySupportFilesDirectoryURL(bundle obj.Object) obj.Object
- func CFBundleCreate(allocator obj.Object, bundleURL obj.Object) obj.Object
- func CFBundleCreateBundlesFromDirectory(allocator obj.Object, directoryURL obj.Object, bundleType obj.Object) obj.Object
- func CFBundleGetAllBundles() obj.Object
- func CFBundleGetBundleWithIdentifier(bundleID obj.Object) obj.Object
- func CFBundleGetDataPointerForName(bundle obj.Object, symbolName obj.Object) unsafe.Pointer
- func CFBundleGetDataPointersForNames(bundle obj.Object, symbolNames obj.Object, stbl unsafe.Pointer)
- func CFBundleGetDevelopmentRegion(bundle obj.Object) obj.Object
- func CFBundleGetFunctionPointerForName(bundle obj.Object, functionName obj.Object) unsafe.Pointer
- func CFBundleGetFunctionPointersForNames(bundle obj.Object, functionNames obj.Object, ftbl unsafe.Pointer)
- func CFBundleGetIdentifier(bundle obj.Object) obj.Object
- func CFBundleGetInfoDictionary(bundle obj.Object) obj.Object
- func CFBundleGetLocalInfoDictionary(bundle obj.Object) obj.Object
- func CFBundleGetMainBundle() obj.Object
- func CFBundleGetPackageInfo(bundle obj.Object) (packageType int, packageCreator int)
- func CFBundleGetPackageInfoInDirectory(url obj.Object) (result uint8, packageType int, packageCreator int)
- func CFBundleGetPlugIn(bundle obj.Object) obj.Object
- func CFBundleGetTypeID() int
- func CFBundleGetValueForInfoDictionaryKey(bundle obj.Object, key obj.Object) obj.Object
- func CFBundleGetVersionNumber(bundle obj.Object) int
- func CFBundleIsArchitectureLoadable(arch int) uint8
- func CFBundleIsExecutableLoadable(bundle obj.Object) uint8
- func CFBundleIsExecutableLoadableForURL(url obj.Object) uint8
- func CFBundleIsExecutableLoaded(bundle obj.Object) uint8
- func CFBundleLoadExecutable(bundle obj.Object) uint8
- func CFBundleLoadExecutableAndReturnError(bundle obj.Object) error
- func CFBundleOpenBundleResourceFiles(bundle obj.Object) (result int, refNum int, localizedRefNum int)
- func CFBundleOpenBundleResourceMap(bundle obj.Object) int
- func CFBundlePreflightExecutable(bundle obj.Object) error
- func CFBundleUnloadExecutable(bundle obj.Object)
- func CFByteOrderGetCurrent() int
- func CFCalendarCopyCurrent() obj.Object
- func CFCalendarCopyLocale(calendar obj.Object) obj.Object
- func CFCalendarCopyTimeZone(calendar obj.Object) obj.Object
- func CFCalendarCreateWithIdentifier(allocator obj.Object, identifier unsafe.Pointer) obj.Object
- func CFCalendarGetFirstWeekday(calendar obj.Object) int
- func CFCalendarGetIdentifier(calendar obj.Object) unsafe.Pointer
- func CFCalendarGetMaximumRangeOfUnit(calendar obj.Object, unit CFCalendarUnit) unsafe.Pointer
- func CFCalendarGetMinimumDaysInFirstWeek(calendar obj.Object) int
- func CFCalendarGetMinimumRangeOfUnit(calendar obj.Object, unit CFCalendarUnit) unsafe.Pointer
- func CFCalendarGetOrdinalityOfUnit(calendar obj.Object, smallerUnit CFCalendarUnit, biggerUnit CFCalendarUnit, ...) int
- func CFCalendarGetRangeOfUnit(calendar obj.Object, smallerUnit CFCalendarUnit, biggerUnit CFCalendarUnit, ...) unsafe.Pointer
- func CFCalendarGetTimeRangeOfUnit(calendar obj.Object, unit CFCalendarUnit, at float64) (result uint8, startp float64, tip float64)
- func CFCalendarGetTypeID() int
- func CFCalendarSetFirstWeekday(calendar obj.Object, wkdy int)
- func CFCalendarSetLocale(calendar obj.Object, locale obj.Object)
- func CFCalendarSetMinimumDaysInFirstWeek(calendar obj.Object, mwd int)
- func CFCalendarSetTimeZone(calendar obj.Object, tz obj.Object)
- func CFCharacterSetAddCharactersInRange(theSet obj.Object, theRange unsafe.Pointer)
- func CFCharacterSetAddCharactersInString(theSet obj.Object, theString obj.Object)
- func CFCharacterSetCreateBitmapRepresentation(alloc obj.Object, theSet obj.Object) obj.Object
- func CFCharacterSetCreateCopy(alloc obj.Object, theSet obj.Object) obj.Object
- func CFCharacterSetCreateInvertedSet(alloc obj.Object, theSet obj.Object) obj.Object
- func CFCharacterSetCreateMutable(alloc obj.Object) obj.Object
- func CFCharacterSetCreateMutableCopy(alloc obj.Object, theSet obj.Object) obj.Object
- func CFCharacterSetCreateWithBitmapRepresentation(alloc obj.Object, theData obj.Object) obj.Object
- func CFCharacterSetCreateWithCharactersInRange(alloc obj.Object, theRange unsafe.Pointer) obj.Object
- func CFCharacterSetCreateWithCharactersInString(alloc obj.Object, theString obj.Object) obj.Object
- func CFCharacterSetGetPredefined(theSetIdentifier CFCharacterSetPredefinedSet) obj.Object
- func CFCharacterSetGetTypeID() int
- func CFCharacterSetHasMemberInPlane(theSet obj.Object, thePlane int) uint8
- func CFCharacterSetIntersect(theSet obj.Object, theOtherSet obj.Object)
- func CFCharacterSetInvert(theSet obj.Object)
- func CFCharacterSetIsCharacterMember(theSet obj.Object, theChar uint16) uint8
- func CFCharacterSetIsLongCharacterMember(theSet obj.Object, theChar int) uint8
- func CFCharacterSetIsSupersetOfSet(theSet obj.Object, theOtherset obj.Object) uint8
- func CFCharacterSetRemoveCharactersInRange(theSet obj.Object, theRange unsafe.Pointer)
- func CFCharacterSetRemoveCharactersInString(theSet obj.Object, theString obj.Object)
- func CFCharacterSetUnion(theSet obj.Object, theOtherSet obj.Object)
- func CFConvertDoubleHostToSwapped(arg float64) unsafe.Pointer
- func CFConvertDoubleSwappedToHost(arg unsafe.Pointer) float64
- func CFConvertFloat32HostToSwapped(arg float32) unsafe.Pointer
- func CFConvertFloat32SwappedToHost(arg unsafe.Pointer) float32
- func CFConvertFloat64HostToSwapped(arg float64) unsafe.Pointer
- func CFConvertFloat64SwappedToHost(arg unsafe.Pointer) float64
- func CFConvertFloatHostToSwapped(arg float32) unsafe.Pointer
- func CFConvertFloatSwappedToHost(arg unsafe.Pointer) float32
- func CFCopyDescription(cf obj.Object) obj.Object
- func CFCopyTypeIDDescription(typeId int) obj.Object
- func CFDataAppendBytes(theData obj.Object, data unsafe.Pointer, length int)
- func CFDataCreate(allocator obj.Object, data unsafe.Pointer, length int) obj.Object
- func CFDataCreateCopy(allocator obj.Object, theData obj.Object) obj.Object
- func CFDataCreateMutable(allocator obj.Object, capacity int) obj.Object
- func CFDataCreateMutableCopy(allocator obj.Object, capacity int, theData obj.Object) obj.Object
- func CFDataCreateWithBytesNoCopy(allocator obj.Object, data unsafe.Pointer, length int, ...) obj.Object
- func CFDataDeleteBytes(theData obj.Object, range_ unsafe.Pointer)
- func CFDataFind(theData obj.Object, dataToFind obj.Object, searchRange unsafe.Pointer, ...) unsafe.Pointer
- func CFDataGetBytePtr(theData obj.Object) unsafe.Pointer
- func CFDataGetBytes(theData obj.Object, range_ unsafe.Pointer) (buffer uint8)
- func CFDataGetLength(theData obj.Object) int
- func CFDataGetMutableBytePtr(theData obj.Object) unsafe.Pointer
- func CFDataGetTypeID() int
- func CFDataIncreaseLength(theData obj.Object, extraLength int)
- func CFDataReplaceBytes(theData obj.Object, range_ unsafe.Pointer, newLength int) (newBytes uint8)
- func CFDataSetLength(theData obj.Object, length int)
- func CFDateCreate(allocator obj.Object, at float64) obj.Object
- func CFDateFormatterCopyProperty(formatter obj.Object, key unsafe.Pointer) obj.Object
- func CFDateFormatterCreate(allocator obj.Object, locale obj.Object, dateStyle CFDateFormatterStyle, ...) obj.Object
- func CFDateFormatterCreateDateFormatFromTemplate(allocator obj.Object, tmplate obj.Object, options int, locale obj.Object) obj.Object
- func CFDateFormatterCreateISO8601Formatter(allocator obj.Object, formatOptions CFISO8601DateFormatOptions) obj.Object
- func CFDateFormatterCreateStringWithAbsoluteTime(allocator obj.Object, formatter obj.Object, at float64) obj.Object
- func CFDateFormatterCreateStringWithDate(allocator obj.Object, formatter obj.Object, date obj.Object) obj.Object
- func CFDateFormatterGetFormat(formatter obj.Object) obj.Object
- func CFDateFormatterGetLocale(formatter obj.Object) obj.Object
- func CFDateFormatterGetTypeID() int
- func CFDateFormatterSetFormat(formatter obj.Object, formatString obj.Object)
- func CFDateFormatterSetProperty(formatter obj.Object, key obj.Object, value obj.Object)
- func CFDateGetAbsoluteTime(theDate obj.Object) float64
- func CFDateGetTimeIntervalSinceDate(theDate obj.Object, otherDate obj.Object) float64
- func CFDateGetTypeID() int
- func CFDictionaryAddValue(theDict obj.Object, key unsafe.Pointer, value unsafe.Pointer)
- func CFDictionaryApplyFunction(theDict obj.Object, applier unsafe.Pointer, context_ unsafe.Pointer)
- func CFDictionaryContainsKey(theDict obj.Object, key unsafe.Pointer) uint8
- func CFDictionaryContainsValue(theDict obj.Object, value unsafe.Pointer) uint8
- func CFDictionaryCreate(allocator obj.Object, keys unsafe.Pointer, values unsafe.Pointer, ...) obj.Object
- func CFDictionaryCreateCopy(allocator obj.Object, theDict obj.Object) obj.Object
- func CFDictionaryCreateMutable(allocator obj.Object, capacity int, keyCallBacks unsafe.Pointer, ...) obj.Object
- func CFDictionaryCreateMutableCopy(allocator obj.Object, capacity int, theDict obj.Object) obj.Object
- func CFDictionaryGetCount(theDict obj.Object) int
- func CFDictionaryGetCountOfKey(theDict obj.Object, key unsafe.Pointer) int
- func CFDictionaryGetCountOfValue(theDict obj.Object, value unsafe.Pointer) int
- func CFDictionaryGetKeysAndValues(theDict obj.Object, keys unsafe.Pointer, values unsafe.Pointer)
- func CFDictionaryGetTypeID() int
- func CFDictionaryGetValue(theDict obj.Object, key unsafe.Pointer) unsafe.Pointer
- func CFDictionaryGetValueIfPresent(theDict obj.Object, key unsafe.Pointer, value unsafe.Pointer) uint8
- func CFDictionaryRemoveAllValues(theDict obj.Object)
- func CFDictionaryRemoveValue(theDict obj.Object, key unsafe.Pointer)
- func CFDictionaryReplaceValue(theDict obj.Object, key unsafe.Pointer, value unsafe.Pointer)
- func CFDictionarySetValue(theDict obj.Object, key unsafe.Pointer, value unsafe.Pointer)
- func CFEqual(cf1 obj.Object, cf2 obj.Object) uint8
- func CFErrorCopyDescription(err obj.Object) obj.Object
- func CFErrorCopyFailureReason(err obj.Object) obj.Object
- func CFErrorCopyRecoverySuggestion(err obj.Object) obj.Object
- func CFErrorCopyUserInfo(err obj.Object) obj.Object
- func CFErrorCreate(allocator obj.Object, domain unsafe.Pointer, code int, userInfo obj.Object) obj.Object
- func CFErrorCreateWithUserInfoKeysAndValues(allocator obj.Object, domain unsafe.Pointer, code int, ...) obj.Object
- func CFErrorGetCode(err obj.Object) int
- func CFErrorGetDomain(err obj.Object) unsafe.Pointer
- func CFErrorGetTypeID() int
- func CFFileDescriptorCreate(allocator obj.Object, fd int, closeOnInvalidate uint8, callout unsafe.Pointer, ...) obj.Object
- func CFFileDescriptorCreateRunLoopSource(allocator obj.Object, f obj.Object, order int) obj.Object
- func CFFileDescriptorDisableCallBacks(f obj.Object, callBackTypes int)
- func CFFileDescriptorEnableCallBacks(f obj.Object, callBackTypes int)
- func CFFileDescriptorGetContext(f obj.Object, context_ unsafe.Pointer)
- func CFFileDescriptorGetNativeDescriptor(f obj.Object) int
- func CFFileDescriptorGetTypeID() int
- func CFFileDescriptorInvalidate(f obj.Object)
- func CFFileDescriptorIsValid(f obj.Object) uint8
- func CFFileSecurityClearProperties(fileSec obj.Object, clearPropertyMask CFFileSecurityClearOptions) uint8
- func CFFileSecurityCopyAccessControlList(fileSec obj.Object, accessControlList unsafe.Pointer) uint8
- func CFFileSecurityCopyGroupUUID(fileSec obj.Object, groupUUID unsafe.Pointer) uint8
- func CFFileSecurityCopyOwnerUUID(fileSec obj.Object, ownerUUID unsafe.Pointer) uint8
- func CFFileSecurityCreate(allocator obj.Object) obj.Object
- func CFFileSecurityCreateCopy(allocator obj.Object, fileSec obj.Object) obj.Object
- func CFFileSecurityGetGroup(fileSec obj.Object) (result uint8, group int)
- func CFFileSecurityGetMode(fileSec obj.Object) (result uint8, mode uint16)
- func CFFileSecurityGetOwner(fileSec obj.Object) (result uint8, owner int)
- func CFFileSecurityGetTypeID() int
- func CFFileSecuritySetAccessControlList(fileSec obj.Object, accessControlList unsafe.Pointer) uint8
- func CFFileSecuritySetGroup(fileSec obj.Object, group int) uint8
- func CFFileSecuritySetGroupUUID(fileSec obj.Object, groupUUID obj.Object) uint8
- func CFFileSecuritySetMode(fileSec obj.Object, mode uint16) uint8
- func CFFileSecuritySetOwner(fileSec obj.Object, owner int) uint8
- func CFFileSecuritySetOwnerUUID(fileSec obj.Object, ownerUUID obj.Object) uint8
- func CFGetAllocator(cf obj.Object) obj.Object
- func CFGetRetainCount(cf obj.Object) int
- func CFGetTypeID(cf obj.Object) int
- func CFGregorianDateGetAbsoluteTime(gdate unsafe.Pointer, tz obj.Object) float64
- func CFGregorianDateIsValid(gdate unsafe.Pointer, unitFlags int) uint8
- func CFHash(cf obj.Object) int
- func CFLocaleCopyAvailableLocaleIdentifiers() obj.Object
- func CFLocaleCopyCommonISOCurrencyCodes() obj.Object
- func CFLocaleCopyCurrent() obj.Object
- func CFLocaleCopyDisplayNameForPropertyValue(displayLocale obj.Object, key unsafe.Pointer, value obj.Object) obj.Object
- func CFLocaleCopyISOCountryCodes() obj.Object
- func CFLocaleCopyISOCurrencyCodes() obj.Object
- func CFLocaleCopyISOLanguageCodes() obj.Object
- func CFLocaleCopyPreferredLanguages() obj.Object
- func CFLocaleCreate(allocator obj.Object, localeIdentifier unsafe.Pointer) obj.Object
- func CFLocaleCreateCanonicalLanguageIdentifierFromString(allocator obj.Object, localeIdentifier obj.Object) unsafe.Pointer
- func CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes(allocator obj.Object, lcode int16, rcode int16) unsafe.Pointer
- func CFLocaleCreateCanonicalLocaleIdentifierFromString(allocator obj.Object, localeIdentifier obj.Object) unsafe.Pointer
- func CFLocaleCreateComponentsFromLocaleIdentifier(allocator obj.Object, localeID unsafe.Pointer) obj.Object
- func CFLocaleCreateCopy(allocator obj.Object, locale obj.Object) obj.Object
- func CFLocaleCreateLocaleIdentifierFromComponents(allocator obj.Object, dictionary obj.Object) unsafe.Pointer
- func CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode(allocator obj.Object, lcid uint32) unsafe.Pointer
- func CFLocaleGetIdentifier(locale obj.Object) unsafe.Pointer
- func CFLocaleGetSystem() obj.Object
- func CFLocaleGetTypeID() int
- func CFLocaleGetValue(locale obj.Object, key unsafe.Pointer) obj.Object
- func CFLocaleGetWindowsLocaleCodeFromLocaleIdentifier(localeIdentifier unsafe.Pointer) uint32
- func CFMachPortCreate(allocator obj.Object, callout unsafe.Pointer, context_ unsafe.Pointer) (result obj.Object, shouldFreeInfo uint8)
- func CFMachPortCreateRunLoopSource(allocator obj.Object, port obj.Object, order int) obj.Object
- func CFMachPortCreateWithPort(allocator obj.Object, portNum int, callout unsafe.Pointer, ...) (result obj.Object, shouldFreeInfo uint8)
- func CFMachPortGetContext(port obj.Object, context_ unsafe.Pointer)
- func CFMachPortGetInvalidationCallBack(port obj.Object) unsafe.Pointer
- func CFMachPortGetPort(port obj.Object) int
- func CFMachPortGetTypeID() int
- func CFMachPortInvalidate(port obj.Object)
- func CFMachPortIsValid(port obj.Object) uint8
- func CFMachPortSetInvalidationCallBack(port obj.Object, callout unsafe.Pointer)
- func CFMakeCollectable(cf obj.Object) obj.Object
- func CFMessagePortCreateLocal(allocator obj.Object, name obj.Object, callout unsafe.Pointer, ...) (result obj.Object, shouldFreeInfo uint8)
- func CFMessagePortCreateRemote(allocator obj.Object, name obj.Object) obj.Object
- func CFMessagePortCreateRunLoopSource(allocator obj.Object, local obj.Object, order int) obj.Object
- func CFMessagePortGetContext(ms obj.Object, context_ unsafe.Pointer)
- func CFMessagePortGetInvalidationCallBack(ms obj.Object) unsafe.Pointer
- func CFMessagePortGetName(ms obj.Object) obj.Object
- func CFMessagePortGetTypeID() int
- func CFMessagePortInvalidate(ms obj.Object)
- func CFMessagePortIsRemote(ms obj.Object) uint8
- func CFMessagePortIsValid(ms obj.Object) uint8
- func CFMessagePortSendRequest(remote obj.Object, msgid int, data obj.Object, sendTimeout float64, ...) int
- func CFMessagePortSetDispatchQueue(ms obj.Object, queue unsafe.Pointer)
- func CFMessagePortSetInvalidationCallBack(ms obj.Object, callout unsafe.Pointer)
- func CFMessagePortSetName(ms obj.Object, newName obj.Object) uint8
- func CFNotificationCenterAddObserver(center obj.Object, observer unsafe.Pointer, callBack unsafe.Pointer, ...)
- func CFNotificationCenterGetDarwinNotifyCenter() obj.Object
- func CFNotificationCenterGetDistributedCenter() obj.Object
- func CFNotificationCenterGetLocalCenter() obj.Object
- func CFNotificationCenterGetTypeID() int
- func CFNotificationCenterPostNotification(center obj.Object, name unsafe.Pointer, object unsafe.Pointer, ...)
- func CFNotificationCenterPostNotificationWithOptions(center obj.Object, name unsafe.Pointer, object unsafe.Pointer, ...)
- func CFNotificationCenterRemoveEveryObserver(center obj.Object, observer unsafe.Pointer)
- func CFNotificationCenterRemoveObserver(center obj.Object, observer unsafe.Pointer, name unsafe.Pointer, ...)
- func CFNullGetTypeID() int
- func CFNumberCreate(allocator obj.Object, theType CFNumberType, valuePtr unsafe.Pointer) obj.Object
- func CFNumberFormatterCopyProperty(formatter obj.Object, key unsafe.Pointer) obj.Object
- func CFNumberFormatterCreate(allocator obj.Object, locale obj.Object, style CFNumberFormatterStyle) obj.Object
- func CFNumberFormatterCreateStringWithNumber(allocator obj.Object, formatter obj.Object, number obj.Object) obj.Object
- func CFNumberFormatterCreateStringWithValue(allocator obj.Object, formatter obj.Object, numberType CFNumberType, ...) obj.Object
- func CFNumberFormatterGetDecimalInfoForCurrencyCode(currencyCode obj.Object) (result uint8, defaultFractionDigits int32, roundingIncrement float64)
- func CFNumberFormatterGetFormat(formatter obj.Object) obj.Object
- func CFNumberFormatterGetLocale(formatter obj.Object) obj.Object
- func CFNumberFormatterGetTypeID() int
- func CFNumberFormatterSetFormat(formatter obj.Object, formatString obj.Object)
- func CFNumberFormatterSetProperty(formatter obj.Object, key unsafe.Pointer, value obj.Object)
- func CFNumberGetByteSize(number obj.Object) int
- func CFNumberGetTypeID() int
- func CFNumberGetValue(number obj.Object, theType CFNumberType, valuePtr unsafe.Pointer) uint8
- func CFNumberIsFloatType(number obj.Object) uint8
- func CFPlugInAddInstanceForFactory(factoryID obj.Object)
- func CFPlugInCreate(allocator obj.Object, plugInURL obj.Object) obj.Object
- func CFPlugInFindFactoriesForPlugInType(typeUUID obj.Object) obj.Object
- func CFPlugInFindFactoriesForPlugInTypeInPlugIn(typeUUID obj.Object, plugIn obj.Object) obj.Object
- func CFPlugInGetBundle(plugIn obj.Object) obj.Object
- func CFPlugInGetTypeID() int
- func CFPlugInInstanceCreate(allocator obj.Object, factoryUUID obj.Object, typeUUID obj.Object) unsafe.Pointer
- func CFPlugInInstanceCreateWithInstanceDataSize(allocator obj.Object, instanceDataSize int, ...) obj.Object
- func CFPlugInInstanceGetFactoryName(instance obj.Object) obj.Object
- func CFPlugInInstanceGetInstanceData(instance obj.Object) unsafe.Pointer
- func CFPlugInInstanceGetInterfaceFunctionTable(instance obj.Object, interfaceName obj.Object, ftbl unsafe.Pointer) uint8
- func CFPlugInInstanceGetTypeID() int
- func CFPlugInIsLoadOnDemand(plugIn obj.Object) uint8
- func CFPlugInRegisterFactoryFunction(factoryUUID obj.Object, func_ unsafe.Pointer) uint8
- func CFPlugInRegisterFactoryFunctionByName(factoryUUID obj.Object, plugIn obj.Object, functionName obj.Object) uint8
- func CFPlugInRegisterPlugInType(factoryUUID obj.Object, typeUUID obj.Object) uint8
- func CFPlugInRemoveInstanceForFactory(factoryID obj.Object)
- func CFPlugInSetLoadOnDemand(plugIn obj.Object, flag uint8)
- func CFPlugInUnregisterFactory(factoryUUID obj.Object) uint8
- func CFPlugInUnregisterPlugInType(factoryUUID obj.Object, typeUUID obj.Object) uint8
- func CFPreferencesAddSuitePreferencesToApp(applicationID obj.Object, suiteID obj.Object)
- func CFPreferencesAppSynchronize(applicationID obj.Object) uint8
- func CFPreferencesAppValueIsForced(key obj.Object, applicationID obj.Object) uint8
- func CFPreferencesCopyAppValue(key obj.Object, applicationID obj.Object) obj.Object
- func CFPreferencesCopyApplicationList(userName obj.Object, hostName obj.Object) obj.Object
- func CFPreferencesCopyKeyList(applicationID obj.Object, userName obj.Object, hostName obj.Object) obj.Object
- func CFPreferencesCopyMultiple(keysToFetch obj.Object, applicationID obj.Object, userName obj.Object, ...) obj.Object
- func CFPreferencesCopyValue(key obj.Object, applicationID obj.Object, userName obj.Object, ...) obj.Object
- func CFPreferencesGetAppBooleanValue(key obj.Object, applicationID obj.Object) (result uint8, keyExistsAndHasValidFormat uint8)
- func CFPreferencesGetAppIntegerValue(key obj.Object, applicationID obj.Object) (result int, keyExistsAndHasValidFormat uint8)
- func CFPreferencesRemoveSuitePreferencesFromApp(applicationID obj.Object, suiteID obj.Object)
- func CFPreferencesSetAppValue(key obj.Object, value obj.Object, applicationID obj.Object)
- func CFPreferencesSetMultiple(keysToSet obj.Object, keysToRemove obj.Object, applicationID obj.Object, ...)
- func CFPreferencesSetValue(key obj.Object, value obj.Object, applicationID obj.Object, ...)
- func CFPreferencesSynchronize(applicationID obj.Object, userName obj.Object, hostName obj.Object) uint8
- func CFPropertyListCreateData(allocator obj.Object, propertyList obj.Object, format CFPropertyListFormat, ...) (obj.Object, error)
- func CFPropertyListCreateDeepCopy(allocator obj.Object, propertyList obj.Object, mutabilityOption int) obj.Object
- func CFPropertyListCreateFromXMLData(allocator obj.Object, xmlData obj.Object, mutabilityOption int, ...) obj.Object
- func CFPropertyListCreateXMLData(allocator obj.Object, propertyList obj.Object) obj.Object
- func CFPropertyListIsValid(plist obj.Object, format CFPropertyListFormat) uint8
- func CFPropertyListWrite(propertyList obj.Object, stream obj.Object, format CFPropertyListFormat, ...) (obj.Object, error)
- func CFPropertyListWriteToStream(propertyList obj.Object, stream obj.Object, format CFPropertyListFormat, ...) int
- func CFRangeMake(loc int, length int) unsafe.Pointer
- func CFReadStreamClose(stream obj.Object)
- func CFReadStreamCopyDispatchQueue(stream obj.Object) unsafe.Pointer
- func CFReadStreamCopyError(stream obj.Object) obj.Object
- func CFReadStreamCopyProperty(stream obj.Object, propertyName unsafe.Pointer) obj.Object
- func CFReadStreamCreateWithBytesNoCopy(alloc obj.Object, data unsafe.Pointer, length int, bytesDeallocator obj.Object) obj.Object
- func CFReadStreamCreateWithFile(alloc obj.Object, fileURL obj.Object) obj.Object
- func CFReadStreamGetBuffer(stream obj.Object, maxBytesToRead int) (result unsafe.Pointer, numBytesRead int)
- func CFReadStreamGetError(stream obj.Object) unsafe.Pointer
- func CFReadStreamGetTypeID() int
- func CFReadStreamHasBytesAvailable(stream obj.Object) uint8
- func CFReadStreamOpen(stream obj.Object) uint8
- func CFReadStreamRead(stream obj.Object, bufferLength int) (result int, buffer uint8)
- func CFReadStreamScheduleWithRunLoop(stream obj.Object, runLoop obj.Object, runLoopMode unsafe.Pointer)
- func CFReadStreamSetClient(stream obj.Object, streamEvents int, clientCB unsafe.Pointer, ...) uint8
- func CFReadStreamSetDispatchQueue(stream obj.Object, q unsafe.Pointer)
- func CFReadStreamSetProperty(stream obj.Object, propertyName unsafe.Pointer, propertyValue obj.Object) uint8
- func CFReadStreamUnscheduleFromRunLoop(stream obj.Object, runLoop obj.Object, runLoopMode unsafe.Pointer)
- func CFRelease(cf obj.Object)
- func CFRetain(cf obj.Object) obj.Object
- func CFRunLoopAddCommonMode(rl obj.Object, mode unsafe.Pointer)
- func CFRunLoopAddObserver(rl obj.Object, observer obj.Object, mode unsafe.Pointer)
- func CFRunLoopAddSource(rl obj.Object, source obj.Object, mode unsafe.Pointer)
- func CFRunLoopAddTimer(rl obj.Object, timer obj.Object, mode unsafe.Pointer)
- func CFRunLoopContainsObserver(rl obj.Object, observer obj.Object, mode unsafe.Pointer) uint8
- func CFRunLoopContainsSource(rl obj.Object, source obj.Object, mode unsafe.Pointer) uint8
- func CFRunLoopContainsTimer(rl obj.Object, timer obj.Object, mode unsafe.Pointer) uint8
- func CFRunLoopCopyAllModes(rl obj.Object) obj.Object
- func CFRunLoopCopyCurrentMode(rl obj.Object) unsafe.Pointer
- func CFRunLoopGetCurrent() obj.Object
- func CFRunLoopGetMain() obj.Object
- func CFRunLoopGetNextTimerFireDate(rl obj.Object, mode unsafe.Pointer) float64
- func CFRunLoopGetTypeID() int
- func CFRunLoopIsWaiting(rl obj.Object) uint8
- func CFRunLoopObserverCreate(allocator obj.Object, activities int, repeats uint8, order int, ...) obj.Object
- func CFRunLoopObserverCreateWithHandler(allocator obj.Object, activities int, repeats uint8, order int, ...) obj.Object
- func CFRunLoopObserverDoesRepeat(observer obj.Object) uint8
- func CFRunLoopObserverGetActivities(observer obj.Object) int
- func CFRunLoopObserverGetContext(observer obj.Object, context_ unsafe.Pointer)
- func CFRunLoopObserverGetOrder(observer obj.Object) int
- func CFRunLoopObserverGetTypeID() int
- func CFRunLoopObserverInvalidate(observer obj.Object)
- func CFRunLoopObserverIsValid(observer obj.Object) uint8
- func CFRunLoopPerformBlock(rl obj.Object, mode obj.Object, block func())
- func CFRunLoopRemoveObserver(rl obj.Object, observer obj.Object, mode unsafe.Pointer)
- func CFRunLoopRemoveSource(rl obj.Object, source obj.Object, mode unsafe.Pointer)
- func CFRunLoopRemoveTimer(rl obj.Object, timer obj.Object, mode unsafe.Pointer)
- func CFRunLoopRun()
- func CFRunLoopSourceCreate(allocator obj.Object, order int, context_ unsafe.Pointer) obj.Object
- func CFRunLoopSourceGetContext(source obj.Object, context_ unsafe.Pointer)
- func CFRunLoopSourceGetOrder(source obj.Object) int
- func CFRunLoopSourceGetTypeID() int
- func CFRunLoopSourceInvalidate(source obj.Object)
- func CFRunLoopSourceIsValid(source obj.Object) uint8
- func CFRunLoopSourceSignal(source obj.Object)
- func CFRunLoopStop(rl obj.Object)
- func CFRunLoopTimerCreate(allocator obj.Object, fireDate float64, interval float64, flags int, order int, ...) obj.Object
- func CFRunLoopTimerCreateWithHandler(allocator obj.Object, fireDate float64, interval float64, flags int, order int, ...) obj.Object
- func CFRunLoopTimerDoesRepeat(timer obj.Object) uint8
- func CFRunLoopTimerGetContext(timer obj.Object, context_ unsafe.Pointer)
- func CFRunLoopTimerGetInterval(timer obj.Object) float64
- func CFRunLoopTimerGetNextFireDate(timer obj.Object) float64
- func CFRunLoopTimerGetOrder(timer obj.Object) int
- func CFRunLoopTimerGetTolerance(timer obj.Object) float64
- func CFRunLoopTimerGetTypeID() int
- func CFRunLoopTimerInvalidate(timer obj.Object)
- func CFRunLoopTimerIsValid(timer obj.Object) uint8
- func CFRunLoopTimerSetNextFireDate(timer obj.Object, fireDate float64)
- func CFRunLoopTimerSetTolerance(timer obj.Object, tolerance float64)
- func CFRunLoopWakeUp(rl obj.Object)
- func CFSetAddValue(theSet obj.Object, value unsafe.Pointer)
- func CFSetApplyFunction(theSet obj.Object, applier unsafe.Pointer, context_ unsafe.Pointer)
- func CFSetContainsValue(theSet obj.Object, value unsafe.Pointer) uint8
- func CFSetCreate(allocator obj.Object, values unsafe.Pointer, numValues int, ...) obj.Object
- func CFSetCreateCopy(allocator obj.Object, theSet obj.Object) obj.Object
- func CFSetCreateMutable(allocator obj.Object, capacity int, callBacks unsafe.Pointer) obj.Object
- func CFSetCreateMutableCopy(allocator obj.Object, capacity int, theSet obj.Object) obj.Object
- func CFSetGetCount(theSet obj.Object) int
- func CFSetGetCountOfValue(theSet obj.Object, value unsafe.Pointer) int
- func CFSetGetTypeID() int
- func CFSetGetValue(theSet obj.Object, value unsafe.Pointer) unsafe.Pointer
- func CFSetGetValueIfPresent(theSet obj.Object, candidate unsafe.Pointer, value unsafe.Pointer) uint8
- func CFSetGetValues(theSet obj.Object, values unsafe.Pointer)
- func CFSetRemoveAllValues(theSet obj.Object)
- func CFSetRemoveValue(theSet obj.Object, value unsafe.Pointer)
- func CFSetReplaceValue(theSet obj.Object, value unsafe.Pointer)
- func CFSetSetValue(theSet obj.Object, value unsafe.Pointer)
- func CFShow(object obj.Object)
- func CFShowStr(str obj.Object)
- func CFSocketCopyAddress(s obj.Object) obj.Object
- func CFSocketCopyPeerAddress(s obj.Object) obj.Object
- func CFSocketCreate(allocator obj.Object, protocolFamily int, socketType int, protocol int, ...) obj.Object
- func CFSocketCreateConnectedToSocketSignature(allocator obj.Object, signature unsafe.Pointer, callBackTypes int, ...) obj.Object
- func CFSocketCreateRunLoopSource(allocator obj.Object, s obj.Object, order int) obj.Object
- func CFSocketCreateWithNative(allocator obj.Object, sock int, callBackTypes int, callout unsafe.Pointer, ...) obj.Object
- func CFSocketCreateWithSocketSignature(allocator obj.Object, signature unsafe.Pointer, callBackTypes int, ...) obj.Object
- func CFSocketDisableCallBacks(s obj.Object, callBackTypes int)
- func CFSocketEnableCallBacks(s obj.Object, callBackTypes int)
- func CFSocketGetContext(s obj.Object, context_ unsafe.Pointer)
- func CFSocketGetDefaultNameRegistryPortNumber() uint16
- func CFSocketGetNative(s obj.Object) int
- func CFSocketGetSocketFlags(s obj.Object) int
- func CFSocketGetTypeID() int
- func CFSocketInvalidate(s obj.Object)
- func CFSocketIsValid(s obj.Object) uint8
- func CFSocketSetDefaultNameRegistryPortNumber(port uint16)
- func CFSocketSetSocketFlags(s obj.Object, flags int)
- func CFStreamCreateBoundPair(alloc obj.Object, readStream unsafe.Pointer, writeStream unsafe.Pointer, ...)
- func CFStreamCreatePairWithPeerSocketSignature(alloc obj.Object, signature unsafe.Pointer, readStream unsafe.Pointer, ...)
- func CFStreamCreatePairWithSocket(alloc obj.Object, sock int, readStream unsafe.Pointer, ...)
- func CFStreamCreatePairWithSocketToHost(alloc obj.Object, host obj.Object, port int, readStream unsafe.Pointer, ...)
- func CFStringAppend(theString obj.Object, appendedString obj.Object)
- func CFStringAppendCString(theString obj.Object, cStr string, encoding int)
- func CFStringAppendCharacters(theString obj.Object, numChars int) (chars uint16)
- func CFStringAppendFormat(theString obj.Object, formatOptions obj.Object, format obj.Object)
- func CFStringAppendFormatAndArguments(theString obj.Object, formatOptions obj.Object, format obj.Object, ...)
- func CFStringAppendPascalString(theString obj.Object, encoding int) (pStr uint8)
- func CFStringCapitalize(theString obj.Object, locale obj.Object)
- func CFStringConvertEncodingToIANACharSetName(encoding int) obj.Object
- func CFStringConvertEncodingToNSStringEncoding(encoding int) int
- func CFStringConvertEncodingToWindowsCodepage(encoding int) int
- func CFStringConvertIANACharSetNameToEncoding(theString obj.Object) int
- func CFStringConvertNSStringEncodingToEncoding(encoding int) int
- func CFStringConvertWindowsCodepageToEncoding(codepage int) int
- func CFStringCreateArrayBySeparatingStrings(alloc obj.Object, theString obj.Object, separatorString obj.Object) obj.Object
- func CFStringCreateArrayWithFindResults(alloc obj.Object, theString obj.Object, stringToFind obj.Object, ...) obj.Object
- func CFStringCreateByCombiningStrings(alloc obj.Object, theArray obj.Object, separatorString obj.Object) obj.Object
- func CFStringCreateCopy(alloc obj.Object, theString obj.Object) obj.Object
- func CFStringCreateExternalRepresentation(alloc obj.Object, theString obj.Object, encoding int, lossByte uint8) obj.Object
- func CFStringCreateFromExternalRepresentation(alloc obj.Object, data obj.Object, encoding int) obj.Object
- func CFStringCreateMutable(alloc obj.Object, maxLength int) obj.Object
- func CFStringCreateMutableCopy(alloc obj.Object, maxLength int, theString obj.Object) obj.Object
- func CFStringCreateMutableWithExternalCharactersNoCopy(alloc obj.Object, numChars int, capacity int, ...) (result obj.Object, chars uint16)
- func CFStringCreateStringWithValidatedFormat(alloc obj.Object, formatOptions obj.Object, validFormatSpecifiers obj.Object, ...) (obj.Object, error)
- func CFStringCreateStringWithValidatedFormatAndArguments(alloc obj.Object, formatOptions obj.Object, validFormatSpecifiers obj.Object, ...) (obj.Object, error)
- func CFStringCreateWithBytes(alloc obj.Object, numBytes int, encoding int, isExternalRepresentation uint8) (result obj.Object, data uint8)
- func CFStringCreateWithBytesNoCopy(alloc obj.Object, numBytes int, encoding int, isExternalRepresentation uint8, ...) (result obj.Object, data uint8)
- func CFStringCreateWithCString(alloc obj.Object, cStr string, encoding int) obj.Object
- func CFStringCreateWithCStringNoCopy(alloc obj.Object, cStr string, encoding int, contentsDeallocator obj.Object) obj.Object
- func CFStringCreateWithCharacters(alloc obj.Object, numChars int) (result obj.Object, chars uint16)
- func CFStringCreateWithCharactersNoCopy(alloc obj.Object, numChars int, contentsDeallocator obj.Object) (result obj.Object, chars uint16)
- func CFStringCreateWithFileSystemRepresentation(alloc obj.Object, buffer string) obj.Object
- func CFStringCreateWithFormat(alloc obj.Object, formatOptions obj.Object, format obj.Object) obj.Object
- func CFStringCreateWithFormatAndArguments(alloc obj.Object, formatOptions obj.Object, format obj.Object, ...) obj.Object
- func CFStringCreateWithPascalString(alloc obj.Object, encoding int) (result obj.Object, pStr uint8)
- func CFStringCreateWithPascalStringNoCopy(alloc obj.Object, encoding int, contentsDeallocator obj.Object) (result obj.Object, pStr uint8)
- func CFStringCreateWithSubstring(alloc obj.Object, str obj.Object, range_ unsafe.Pointer) obj.Object
- func CFStringDelete(theString obj.Object, range_ unsafe.Pointer)
- func CFStringFind(theString obj.Object, stringToFind obj.Object, ...) unsafe.Pointer
- func CFStringFindAndReplace(theString obj.Object, stringToFind obj.Object, replacementString obj.Object, ...) int
- func CFStringFold(theString obj.Object, theFlags CFStringCompareFlags, theLocale obj.Object)
- func CFStringGetBytes(theString obj.Object, range_ unsafe.Pointer, encoding int, lossByte uint8, ...) (result int, buffer uint8, usedBufLen int)
- func CFStringGetCString(theString obj.Object, buffer string, bufferSize int, encoding int) uint8
- func CFStringGetCStringPtr(theString obj.Object, encoding int) string
- func CFStringGetCharacterAtIndex(theString obj.Object, idx int) uint16
- func CFStringGetCharacterFromInlineBuffer(buf unsafe.Pointer, idx int) uint16
- func CFStringGetCharacters(theString obj.Object, range_ unsafe.Pointer) (buffer uint16)
- func CFStringGetCharactersPtr(theString obj.Object) unsafe.Pointer
- func CFStringGetDoubleValue(str obj.Object) float64
- func CFStringGetFastestEncoding(theString obj.Object) int
- func CFStringGetFileSystemRepresentation(str obj.Object, buffer string, maxBufLen int) uint8
- func CFStringGetHyphenationLocationBeforeIndex(str obj.Object, location int, limitRange unsafe.Pointer, options int, ...) (result int, character int)
- func CFStringGetIntValue(str obj.Object) int
- func CFStringGetLength(theString obj.Object) int
- func CFStringGetLineBounds(theString obj.Object, range_ unsafe.Pointer) (lineBeginIndex int, lineEndIndex int, contentsEndIndex int)
- func CFStringGetListOfAvailableEncodings() unsafe.Pointer
- func CFStringGetLongCharacterForSurrogatePair(surrogateHigh uint16, surrogateLow uint16) int
- func CFStringGetMaximumSizeForEncoding(length int, encoding int) int
- func CFStringGetMaximumSizeOfFileSystemRepresentation(str obj.Object) int
- func CFStringGetMostCompatibleMacStringEncoding(encoding int) int
- func CFStringGetNameOfEncoding(encoding int) obj.Object
- func CFStringGetParagraphBounds(str obj.Object, range_ unsafe.Pointer) (parBeginIndex int, parEndIndex int, contentsEndIndex int)
- func CFStringGetPascalString(theString obj.Object, bufferSize int, encoding int) (result uint8, buffer uint8)
- func CFStringGetPascalStringPtr(theString obj.Object, encoding int) unsafe.Pointer
- func CFStringGetRangeOfComposedCharactersAtIndex(theString obj.Object, theIndex int) unsafe.Pointer
- func CFStringGetSmallestEncoding(theString obj.Object) int
- func CFStringGetSurrogatePairForLongCharacter(character int) (result uint8, surrogates uint16)
- func CFStringGetSystemEncoding() int
- func CFStringGetTypeID() int
- func CFStringHasPrefix(theString obj.Object, prefix obj.Object) uint8
- func CFStringHasSuffix(theString obj.Object, suffix obj.Object) uint8
- func CFStringInitInlineBuffer(str obj.Object, buf unsafe.Pointer, range_ unsafe.Pointer)
- func CFStringInsert(str obj.Object, idx int, insertedStr obj.Object)
- func CFStringIsEncodingAvailable(encoding int) uint8
- func CFStringIsHyphenationAvailableForLocale(locale obj.Object) uint8
- func CFStringIsSurrogateHighCharacter(character uint16) uint8
- func CFStringIsSurrogateLowCharacter(character uint16) uint8
- func CFStringLowercase(theString obj.Object, locale obj.Object)
- func CFStringMakeConstantString(cStr string) obj.Object
- func CFStringNormalize(theString obj.Object, theForm CFStringNormalizationForm)
- func CFStringPad(theString obj.Object, padString obj.Object, length int, indexIntoPad int)
- func CFStringReplace(theString obj.Object, range_ unsafe.Pointer, replacement obj.Object)
- func CFStringReplaceAll(theString obj.Object, replacement obj.Object)
- func CFStringSetExternalCharactersNoCopy(theString obj.Object, chars unsafe.Pointer, length int, capacity int)
- func CFStringTokenizerCopyBestStringLanguage(str obj.Object, range_ unsafe.Pointer) obj.Object
- func CFStringTokenizerCopyCurrentTokenAttribute(tokenizer obj.Object, attribute int) obj.Object
- func CFStringTokenizerCreate(alloc obj.Object, str obj.Object, range_ unsafe.Pointer, options int, ...) obj.Object
- func CFStringTokenizerGetCurrentTokenRange(tokenizer obj.Object) unsafe.Pointer
- func CFStringTokenizerGetTypeID() int
- func CFStringTokenizerSetString(tokenizer obj.Object, str obj.Object, range_ unsafe.Pointer)
- func CFStringTrim(theString obj.Object, trimString obj.Object)
- func CFStringTrimWhitespace(theString obj.Object)
- func CFStringUppercase(theString obj.Object, locale obj.Object)
- func CFSwapInt16(arg uint16) uint16
- func CFSwapInt16BigToHost(arg uint16) uint16
- func CFSwapInt16HostToBig(arg uint16) uint16
- func CFSwapInt16HostToLittle(arg uint16) uint16
- func CFSwapInt16LittleToHost(arg uint16) uint16
- func CFSwapInt32(arg uint32) uint32
- func CFSwapInt32BigToHost(arg uint32) uint32
- func CFSwapInt32HostToBig(arg uint32) uint32
- func CFSwapInt32HostToLittle(arg uint32) uint32
- func CFSwapInt32LittleToHost(arg uint32) uint32
- func CFSwapInt64(arg uint64) uint64
- func CFSwapInt64BigToHost(arg uint64) uint64
- func CFSwapInt64HostToBig(arg uint64) uint64
- func CFSwapInt64HostToLittle(arg uint64) uint64
- func CFSwapInt64LittleToHost(arg uint64) uint64
- func CFTimeZoneCopyAbbreviation(tz obj.Object, at float64) obj.Object
- func CFTimeZoneCopyAbbreviationDictionary() obj.Object
- func CFTimeZoneCopyDefault() obj.Object
- func CFTimeZoneCopyKnownNames() obj.Object
- func CFTimeZoneCopyLocalizedName(tz obj.Object, style CFTimeZoneNameStyle, locale obj.Object) obj.Object
- func CFTimeZoneCopySystem() obj.Object
- func CFTimeZoneCreate(allocator obj.Object, name obj.Object, data obj.Object) obj.Object
- func CFTimeZoneCreateWithName(allocator obj.Object, name obj.Object, tryAbbrev uint8) obj.Object
- func CFTimeZoneCreateWithTimeIntervalFromGMT(allocator obj.Object, ti float64) obj.Object
- func CFTimeZoneGetData(tz obj.Object) obj.Object
- func CFTimeZoneGetDaylightSavingTimeOffset(tz obj.Object, at float64) float64
- func CFTimeZoneGetName(tz obj.Object) obj.Object
- func CFTimeZoneGetNextDaylightSavingTimeTransition(tz obj.Object, at float64) float64
- func CFTimeZoneGetSecondsFromGMT(tz obj.Object, at float64) float64
- func CFTimeZoneGetTypeID() int
- func CFTimeZoneIsDaylightSavingTime(tz obj.Object, at float64) uint8
- func CFTimeZoneResetSystem()
- func CFTimeZoneSetAbbreviationDictionary(dict obj.Object)
- func CFTimeZoneSetDefault(tz obj.Object)
- func CFTreeAppendChild(tree obj.Object, newChild obj.Object)
- func CFTreeApplyFunctionToChildren(tree obj.Object, applier unsafe.Pointer, context_ unsafe.Pointer)
- func CFTreeCreate(allocator obj.Object, context_ unsafe.Pointer) obj.Object
- func CFTreeFindRoot(tree obj.Object) obj.Object
- func CFTreeGetChildAtIndex(tree obj.Object, idx int) obj.Object
- func CFTreeGetChildCount(tree obj.Object) int
- func CFTreeGetChildren(tree obj.Object, children unsafe.Pointer)
- func CFTreeGetContext(tree obj.Object, context_ unsafe.Pointer)
- func CFTreeGetFirstChild(tree obj.Object) obj.Object
- func CFTreeGetNextSibling(tree obj.Object) obj.Object
- func CFTreeGetParent(tree obj.Object) obj.Object
- func CFTreeGetTypeID() int
- func CFTreeInsertSibling(tree obj.Object, newSibling obj.Object)
- func CFTreePrependChild(tree obj.Object, newChild obj.Object)
- func CFTreeRemove(tree obj.Object)
- func CFTreeRemoveAllChildren(tree obj.Object)
- func CFTreeSetContext(tree obj.Object, context_ unsafe.Pointer)
- func CFTreeSortChildren(tree obj.Object, comparator unsafe.Pointer, context_ unsafe.Pointer)
- func CFURLCanBeDecomposed(anURL obj.Object) uint8
- func CFURLClearResourcePropertyCache(url obj.Object)
- func CFURLClearResourcePropertyCacheForKey(url obj.Object, key obj.Object)
- func CFURLCopyAbsoluteURL(relativeURL obj.Object) obj.Object
- func CFURLCopyFileSystemPath(anURL obj.Object, pathStyle CFURLPathStyle) obj.Object
- func CFURLCopyFragment(anURL obj.Object, charactersToLeaveEscaped obj.Object) obj.Object
- func CFURLCopyHostName(anURL obj.Object) obj.Object
- func CFURLCopyLastPathComponent(url obj.Object) obj.Object
- func CFURLCopyNetLocation(anURL obj.Object) obj.Object
- func CFURLCopyParameterString(anURL obj.Object, charactersToLeaveEscaped obj.Object) obj.Object
- func CFURLCopyPassword(anURL obj.Object) obj.Object
- func CFURLCopyPath(anURL obj.Object) obj.Object
- func CFURLCopyPathExtension(url obj.Object) obj.Object
- func CFURLCopyQueryString(anURL obj.Object, charactersToLeaveEscaped obj.Object) obj.Object
- func CFURLCopyResourcePropertiesForKeys(url obj.Object, keys obj.Object) (obj.Object, error)
- func CFURLCopyResourcePropertyForKey(url obj.Object, key obj.Object, propertyValueTypeRefPtr unsafe.Pointer) error
- func CFURLCopyResourceSpecifier(anURL obj.Object) obj.Object
- func CFURLCopyScheme(anURL obj.Object) obj.Object
- func CFURLCopyStrictPath(anURL obj.Object) (result obj.Object, isAbsolute uint8)
- func CFURLCopyUserName(anURL obj.Object) obj.Object
- func CFURLCreateAbsoluteURLWithBytes(alloc obj.Object, relativeURLBytes unsafe.Pointer, length int, encoding int, ...) obj.Object
- func CFURLCreateBookmarkData(allocator obj.Object, url obj.Object, options CFURLBookmarkCreationOptions, ...) (obj.Object, error)
- func CFURLCreateBookmarkDataFromAliasRecord(allocatorRef obj.Object, aliasRecordDataRef obj.Object) obj.Object
- func CFURLCreateBookmarkDataFromFile(allocator obj.Object, fileURL obj.Object) (obj.Object, error)
- func CFURLCreateByResolvingBookmarkData(allocator obj.Object, bookmark obj.Object, ...) (result obj.Object, isStale uint8)
- func CFURLCreateCopyAppendingPathComponent(allocator obj.Object, url obj.Object, pathComponent obj.Object, ...) obj.Object
- func CFURLCreateCopyAppendingPathExtension(allocator obj.Object, url obj.Object, extension obj.Object) obj.Object
- func CFURLCreateCopyDeletingLastPathComponent(allocator obj.Object, url obj.Object) obj.Object
- func CFURLCreateCopyDeletingPathExtension(allocator obj.Object, url obj.Object) obj.Object
- func CFURLCreateData(allocator obj.Object, url obj.Object, encoding int, escapeWhitespace uint8) obj.Object
- func CFURLCreateDataAndPropertiesFromResource(alloc obj.Object, url obj.Object, resourceData unsafe.Pointer, ...) (result uint8, errorCode int)
- func CFURLCreateFilePathURL(allocator obj.Object, url obj.Object) (obj.Object, error)
- func CFURLCreateFileReferenceURL(allocator obj.Object, url obj.Object) (obj.Object, error)
- func CFURLCreateFromFSRef(allocator obj.Object, fsRef obj.Object) obj.Object
- func CFURLCreateFromFileSystemRepresentation(allocator obj.Object, bufLen int, isDirectory uint8) (result obj.Object, buffer uint8)
- func CFURLCreateFromFileSystemRepresentationRelativeToBase(allocator obj.Object, bufLen int, isDirectory uint8, baseURL obj.Object) (result obj.Object, buffer uint8)
- func CFURLCreatePropertyFromResource(alloc obj.Object, url obj.Object, property obj.Object) (result obj.Object, errorCode int)
- func CFURLCreateResourcePropertiesForKeysFromBookmarkData(allocator obj.Object, resourcePropertiesToReturn obj.Object, ...) obj.Object
- func CFURLCreateResourcePropertyForKeyFromBookmarkData(allocator obj.Object, resourcePropertyKey obj.Object, bookmark obj.Object) obj.Object
- func CFURLCreateStringByAddingPercentEscapes(allocator obj.Object, originalString obj.Object, ...) obj.Object
- func CFURLCreateStringByReplacingPercentEscapes(allocator obj.Object, originalString obj.Object, ...) obj.Object
- func CFURLCreateStringByReplacingPercentEscapesUsingEncoding(allocator obj.Object, origString obj.Object, charsToLeaveEscaped obj.Object, ...) obj.Object
- func CFURLCreateWithBytes(allocator obj.Object, urlBytes unsafe.Pointer, length int, encoding int, ...) obj.Object
- func CFURLCreateWithFileSystemPath(allocator obj.Object, filePath obj.Object, pathStyle CFURLPathStyle, ...) obj.Object
- func CFURLCreateWithFileSystemPathRelativeToBase(allocator obj.Object, filePath obj.Object, pathStyle CFURLPathStyle, ...) obj.Object
- func CFURLCreateWithString(allocator obj.Object, urlString obj.Object, baseURL obj.Object) obj.Object
- func CFURLDestroyResource(url obj.Object) (result uint8, errorCode int)
- func CFURLEnumeratorCreateForDirectoryURL(alloc obj.Object, directoryURL obj.Object, option CFURLEnumeratorOptions, ...) obj.Object
- func CFURLEnumeratorCreateForMountedVolumes(alloc obj.Object, option CFURLEnumeratorOptions, propertyKeys obj.Object) obj.Object
- func CFURLEnumeratorGetDescendentLevel(enumerator obj.Object) int
- func CFURLEnumeratorGetNextURL(enumerator obj.Object, url unsafe.Pointer) (obj.Object, error)
- func CFURLEnumeratorGetSourceDidChange(enumerator obj.Object) uint8
- func CFURLEnumeratorGetTypeID() int
- func CFURLEnumeratorSkipDescendents(enumerator obj.Object)
- func CFURLGetBaseURL(anURL obj.Object) obj.Object
- func CFURLGetBytes(url obj.Object, bufferLength int) (result int, buffer uint8)
- func CFURLGetFSRef(url obj.Object, fsRef obj.Object) uint8
- func CFURLGetFileSystemRepresentation(url obj.Object, resolveAgainstBase uint8, maxBufLen int) (result uint8, buffer uint8)
- func CFURLGetPortNumber(anURL obj.Object) int
- func CFURLGetString(anURL obj.Object) obj.Object
- func CFURLGetTypeID() int
- func CFURLHasDirectoryPath(anURL obj.Object) uint8
- func CFURLIsFileReferenceURL(url obj.Object) uint8
- func CFURLResourceIsReachable(url obj.Object) error
- func CFURLSetResourcePropertiesForKeys(url obj.Object, keyedPropertyValues obj.Object) error
- func CFURLSetResourcePropertyForKey(url obj.Object, key obj.Object, propertyValue obj.Object) error
- func CFURLSetTemporaryResourcePropertyForKey(url obj.Object, key obj.Object, propertyValue obj.Object)
- func CFURLStartAccessingSecurityScopedResource(url obj.Object) uint8
- func CFURLStopAccessingSecurityScopedResource(url obj.Object)
- func CFURLWriteBookmarkDataToFile(bookmarkRef obj.Object, fileURL obj.Object, options int) error
- func CFURLWriteDataAndPropertiesToResource(url obj.Object, dataToWrite obj.Object, propertiesToWrite obj.Object) (result uint8, errorCode int)
- func CFUUIDCreate(alloc obj.Object) obj.Object
- func CFUUIDCreateFromString(alloc obj.Object, uuidStr obj.Object) obj.Object
- func CFUUIDCreateFromUUIDBytes(alloc obj.Object, data unsafe.Pointer) obj.Object
- func CFUUIDCreateString(alloc obj.Object, uuid obj.Object) obj.Object
- func CFUUIDCreateWithBytes(alloc obj.Object, byte0 uint8, byte1 uint8, byte2 uint8, byte3 uint8, ...) obj.Object
- func CFUUIDGetConstantUUIDWithBytes(alloc obj.Object, byte0 uint8, byte1 uint8, byte2 uint8, byte3 uint8, ...) obj.Object
- func CFUUIDGetTypeID() int
- func CFUUIDGetUUIDBytes(uuid obj.Object) unsafe.Pointer
- func CFUserNotificationCancel(userNotification obj.Object) int
- func CFUserNotificationCheckBoxChecked(i int) int
- func CFUserNotificationCreate(allocator obj.Object, timeout float64, flags int, dictionary obj.Object) (result obj.Object, err int)
- func CFUserNotificationCreateRunLoopSource(allocator obj.Object, userNotification obj.Object, callout unsafe.Pointer, ...) obj.Object
- func CFUserNotificationDisplayAlert(timeout float64, flags int, iconURL obj.Object, soundURL obj.Object, ...) (result int, responseFlags int)
- func CFUserNotificationDisplayNotice(timeout float64, flags int, iconURL obj.Object, soundURL obj.Object, ...) int
- func CFUserNotificationGetResponseDictionary(userNotification obj.Object) obj.Object
- func CFUserNotificationGetResponseValue(userNotification obj.Object, key obj.Object, idx int) obj.Object
- func CFUserNotificationGetTypeID() int
- func CFUserNotificationPopUpSelection(n int) int
- func CFUserNotificationReceiveResponse(userNotification obj.Object, timeout float64) (result int, responseFlags int)
- func CFUserNotificationSecureTextField(i int) int
- func CFUserNotificationUpdate(userNotification obj.Object, timeout float64, flags int, dictionary obj.Object) int
- func CFWriteStreamCanAcceptBytes(stream obj.Object) uint8
- func CFWriteStreamClose(stream obj.Object)
- func CFWriteStreamCopyDispatchQueue(stream obj.Object) unsafe.Pointer
- func CFWriteStreamCopyError(stream obj.Object) obj.Object
- func CFWriteStreamCopyProperty(stream obj.Object, propertyName unsafe.Pointer) obj.Object
- func CFWriteStreamCreateWithAllocatedBuffers(alloc obj.Object, bufferAllocator obj.Object) obj.Object
- func CFWriteStreamCreateWithBuffer(alloc obj.Object, bufferCapacity int) (result obj.Object, buffer uint8)
- func CFWriteStreamCreateWithFile(alloc obj.Object, fileURL obj.Object) obj.Object
- func CFWriteStreamGetError(stream obj.Object) unsafe.Pointer
- func CFWriteStreamGetTypeID() int
- func CFWriteStreamOpen(stream obj.Object) uint8
- func CFWriteStreamScheduleWithRunLoop(stream obj.Object, runLoop obj.Object, runLoopMode unsafe.Pointer)
- func CFWriteStreamSetClient(stream obj.Object, streamEvents int, clientCB unsafe.Pointer, ...) uint8
- func CFWriteStreamSetDispatchQueue(stream obj.Object, q unsafe.Pointer)
- func CFWriteStreamSetProperty(stream obj.Object, propertyName unsafe.Pointer, propertyValue obj.Object) uint8
- func CFWriteStreamUnscheduleFromRunLoop(stream obj.Object, runLoop obj.Object, runLoopMode unsafe.Pointer)
- func CFWriteStreamWrite(stream obj.Object, bufferLength int) (result int, buffer uint8)
- func CFXMLCreateStringByEscapingEntities(allocator obj.Object, str obj.Object, entitiesDictionary obj.Object) obj.Object
- func CFXMLCreateStringByUnescapingEntities(allocator obj.Object, str obj.Object, entitiesDictionary obj.Object) obj.Object
- func CFXMLNodeCreate(alloc obj.Object, xmlType CFXMLNodeTypeCode, dataString obj.Object, ...) obj.Object
- func CFXMLNodeCreateCopy(alloc obj.Object, origNode obj.Object) obj.Object
- func CFXMLNodeGetInfoPtr(node obj.Object) unsafe.Pointer
- func CFXMLNodeGetString(node obj.Object) obj.Object
- func CFXMLNodeGetTypeID() int
- func CFXMLNodeGetVersion(node obj.Object) int
- func CFXMLParserAbort(parser obj.Object, errorCode CFXMLParserStatusCode, ...)
- func CFXMLParserCopyErrorDescription(parser obj.Object) obj.Object
- func CFXMLParserCreate(allocator obj.Object, xmlData obj.Object, dataSource obj.Object, ...) obj.Object
- func CFXMLParserCreateWithDataFromURL(allocator obj.Object, dataSource obj.Object, parseOptions int, ...) obj.Object
- func CFXMLParserGetCallBacks(parser obj.Object, callBacks unsafe.Pointer)
- func CFXMLParserGetContext(parser obj.Object, context_ unsafe.Pointer)
- func CFXMLParserGetDocument(parser obj.Object) unsafe.Pointer
- func CFXMLParserGetLineNumber(parser obj.Object) int
- func CFXMLParserGetLocation(parser obj.Object) int
- func CFXMLParserGetSourceURL(parser obj.Object) obj.Object
- func CFXMLParserGetTypeID() int
- func CFXMLParserParse(parser obj.Object) uint8
- func CFXMLTreeCreateFromData(allocator obj.Object, xmlData obj.Object, dataSource obj.Object, ...) obj.Object
- func CFXMLTreeCreateFromDataWithError(allocator obj.Object, xmlData obj.Object, dataSource obj.Object, ...) obj.Object
- func CFXMLTreeCreateWithDataFromURL(allocator obj.Object, dataSource obj.Object, parseOptions int, ...) obj.Object
- func CFXMLTreeCreateWithNode(allocator obj.Object, node obj.Object) obj.Object
- func CFXMLTreeCreateXMLData(allocator obj.Object, xmlTree obj.Object) obj.Object
- func CFXMLTreeGetNode(xmlTree obj.Object) obj.Object
- func KCFAbsoluteTimeIntervalSince1904() float64
- func KCFAbsoluteTimeIntervalSince1970() float64
- func KCFAllocatorDefault() obj.Object
- func KCFAllocatorMalloc() obj.Object
- func KCFAllocatorMallocZone() obj.Object
- func KCFAllocatorNull() obj.Object
- func KCFAllocatorSystemDefault() obj.Object
- func KCFAllocatorUseContext() obj.Object
- func KCFBanglaCalendar() uintptr
- func KCFBooleanFalse() obj.Object
- func KCFBooleanTrue() obj.Object
- func KCFBuddhistCalendar() uintptr
- func KCFBundleDevelopmentRegionKey() obj.Object
- func KCFBundleExecutableKey() obj.Object
- func KCFBundleIdentifierKey() obj.Object
- func KCFBundleInfoDictionaryVersionKey() obj.Object
- func KCFBundleLocalizationsKey() obj.Object
- func KCFBundleNameKey() obj.Object
- func KCFBundleVersionKey() obj.Object
- func KCFChineseCalendar() uintptr
- func KCFCopyStringBagCallBacks() uintptr
- func KCFCopyStringDictionaryKeyCallBacks() uintptr
- func KCFCopyStringSetCallBacks() uintptr
- func KCFCoreFoundationVersionNumber() float64
- func KCFDangiCalendar() uintptr
- func KCFDateFormatterAMSymbol() uintptr
- func KCFDateFormatterCalendar() uintptr
- func KCFDateFormatterCalendarName() uintptr
- func KCFDateFormatterDefaultDate() uintptr
- func KCFDateFormatterDefaultFormat() uintptr
- func KCFDateFormatterDoesRelativeDateFormattingKey() uintptr
- func KCFDateFormatterEraSymbols() uintptr
- func KCFDateFormatterGregorianStartDate() uintptr
- func KCFDateFormatterIsLenient() uintptr
- func KCFDateFormatterLongEraSymbols() uintptr
- func KCFDateFormatterMonthSymbols() uintptr
- func KCFDateFormatterPMSymbol() uintptr
- func KCFDateFormatterQuarterSymbols() uintptr
- func KCFDateFormatterShortMonthSymbols() uintptr
- func KCFDateFormatterShortQuarterSymbols() uintptr
- func KCFDateFormatterShortStandaloneMonthSymbols() uintptr
- func KCFDateFormatterShortStandaloneQuarterSymbols() uintptr
- func KCFDateFormatterShortStandaloneWeekdaySymbols() uintptr
- func KCFDateFormatterShortWeekdaySymbols() uintptr
- func KCFDateFormatterStandaloneMonthSymbols() uintptr
- func KCFDateFormatterStandaloneQuarterSymbols() uintptr
- func KCFDateFormatterStandaloneWeekdaySymbols() uintptr
- func KCFDateFormatterTimeZone() uintptr
- func KCFDateFormatterTwoDigitStartDate() uintptr
- func KCFDateFormatterVeryShortMonthSymbols() uintptr
- func KCFDateFormatterVeryShortStandaloneMonthSymbols() uintptr
- func KCFDateFormatterVeryShortStandaloneWeekdaySymbols() uintptr
- func KCFDateFormatterVeryShortWeekdaySymbols() uintptr
- func KCFDateFormatterWeekdaySymbols() uintptr
- func KCFErrorDescriptionKey() obj.Object
- func KCFErrorDomainCocoa() uintptr
- func KCFErrorDomainMach() uintptr
- func KCFErrorDomainOSStatus() uintptr
- func KCFErrorDomainPOSIX() uintptr
- func KCFErrorFilePathKey() obj.Object
- func KCFErrorLocalizedDescriptionKey() obj.Object
- func KCFErrorLocalizedFailureKey() obj.Object
- func KCFErrorLocalizedFailureReasonKey() obj.Object
- func KCFErrorLocalizedRecoverySuggestionKey() obj.Object
- func KCFErrorURLKey() obj.Object
- func KCFErrorUnderlyingErrorKey() obj.Object
- func KCFGregorianCalendar() uintptr
- func KCFGujaratiCalendar() uintptr
- func KCFHebrewCalendar() uintptr
- func KCFISO8601Calendar() uintptr
- func KCFIndianCalendar() uintptr
- func KCFIslamicCalendar() uintptr
- func KCFIslamicCivilCalendar() uintptr
- func KCFIslamicTabularCalendar() uintptr
- func KCFIslamicUmmAlQuraCalendar() uintptr
- func KCFJapaneseCalendar() uintptr
- func KCFKannadaCalendar() uintptr
- func KCFLocaleAlternateQuotationBeginDelimiterKey() uintptr
- func KCFLocaleAlternateQuotationEndDelimiterKey() uintptr
- func KCFLocaleCalendar() uintptr
- func KCFLocaleCalendarIdentifier() uintptr
- func KCFLocaleCollationIdentifier() uintptr
- func KCFLocaleCollatorIdentifier() uintptr
- func KCFLocaleCountryCode() uintptr
- func KCFLocaleCurrencyCode() uintptr
- func KCFLocaleCurrencySymbol() uintptr
- func KCFLocaleCurrentLocaleDidChangeNotification() uintptr
- func KCFLocaleDecimalSeparator() uintptr
- func KCFLocaleExemplarCharacterSet() uintptr
- func KCFLocaleGroupingSeparator() uintptr
- func KCFLocaleIdentifier() uintptr
- func KCFLocaleLanguageCode() uintptr
- func KCFLocaleMeasurementSystem() uintptr
- func KCFLocaleQuotationBeginDelimiterKey() uintptr
- func KCFLocaleQuotationEndDelimiterKey() uintptr
- func KCFLocaleScriptCode() uintptr
- func KCFLocaleUsesMetricSystem() uintptr
- func KCFLocaleVariantCode() uintptr
- func KCFMalayalamCalendar() uintptr
- func KCFMarathiCalendar() uintptr
- func KCFNull() obj.Object
- func KCFNumberFormatterAlwaysShowDecimalSeparator() uintptr
- func KCFNumberFormatterCurrencyCode() uintptr
- func KCFNumberFormatterCurrencyDecimalSeparator() uintptr
- func KCFNumberFormatterCurrencyGroupingSeparator() uintptr
- func KCFNumberFormatterCurrencySymbol() uintptr
- func KCFNumberFormatterDecimalSeparator() uintptr
- func KCFNumberFormatterDefaultFormat() uintptr
- func KCFNumberFormatterExponentSymbol() uintptr
- func KCFNumberFormatterFormatWidth() uintptr
- func KCFNumberFormatterGroupingSeparator() uintptr
- func KCFNumberFormatterGroupingSize() uintptr
- func KCFNumberFormatterInfinitySymbol() uintptr
- func KCFNumberFormatterInternationalCurrencySymbol() uintptr
- func KCFNumberFormatterIsLenient() uintptr
- func KCFNumberFormatterMaxFractionDigits() uintptr
- func KCFNumberFormatterMaxIntegerDigits() uintptr
- func KCFNumberFormatterMaxSignificantDigits() uintptr
- func KCFNumberFormatterMinFractionDigits() uintptr
- func KCFNumberFormatterMinGroupingDigits() uintptr
- func KCFNumberFormatterMinIntegerDigits() uintptr
- func KCFNumberFormatterMinSignificantDigits() uintptr
- func KCFNumberFormatterMinusSign() uintptr
- func KCFNumberFormatterMultiplier() uintptr
- func KCFNumberFormatterNaNSymbol() uintptr
- func KCFNumberFormatterNegativePrefix() uintptr
- func KCFNumberFormatterNegativeSuffix() uintptr
- func KCFNumberFormatterPaddingCharacter() uintptr
- func KCFNumberFormatterPaddingPosition() uintptr
- func KCFNumberFormatterPerMillSymbol() uintptr
- func KCFNumberFormatterPercentSymbol() uintptr
- func KCFNumberFormatterPlusSign() uintptr
- func KCFNumberFormatterPositivePrefix() uintptr
- func KCFNumberFormatterPositiveSuffix() uintptr
- func KCFNumberFormatterRoundingIncrement() uintptr
- func KCFNumberFormatterRoundingMode() uintptr
- func KCFNumberFormatterSecondaryGroupingSize() uintptr
- func KCFNumberFormatterUseGroupingSeparator() uintptr
- func KCFNumberFormatterUseSignificantDigits() uintptr
- func KCFNumberFormatterZeroSymbol() uintptr
- func KCFNumberNaN() obj.Object
- func KCFNumberNegativeInfinity() obj.Object
- func KCFNumberPositiveInfinity() obj.Object
- func KCFOdiaCalendar() uintptr
- func KCFPersianCalendar() uintptr
- func KCFPlugInDynamicRegisterFunctionKey() obj.Object
- func KCFPlugInDynamicRegistrationKey() obj.Object
- func KCFPlugInFactoriesKey() obj.Object
- func KCFPlugInTypesKey() obj.Object
- func KCFPlugInUnloadFunctionKey() obj.Object
- func KCFPreferencesAnyApplication() obj.Object
- func KCFPreferencesAnyHost() obj.Object
- func KCFPreferencesAnyUser() obj.Object
- func KCFPreferencesCurrentApplication() obj.Object
- func KCFPreferencesCurrentHost() obj.Object
- func KCFPreferencesCurrentUser() obj.Object
- func KCFRepublicOfChinaCalendar() uintptr
- func KCFRunLoopCommonModes() uintptr
- func KCFRunLoopDefaultMode() uintptr
- func KCFSocketCommandKey() obj.Object
- func KCFSocketErrorKey() obj.Object
- func KCFSocketNameKey() obj.Object
- func KCFSocketRegisterCommand() obj.Object
- func KCFSocketResultKey() obj.Object
- func KCFSocketRetrieveCommand() obj.Object
- func KCFSocketValueKey() obj.Object
- func KCFStreamErrorDomainSOCKS() uintptr
- func KCFStreamErrorDomainSSL() uintptr
- func KCFStreamPropertyAppendToFile() uintptr
- func KCFStreamPropertyDataWritten() uintptr
- func KCFStreamPropertyFileCurrentOffset() uintptr
- func KCFStreamPropertySOCKSPassword() obj.Object
- func KCFStreamPropertySOCKSProxy() obj.Object
- func KCFStreamPropertySOCKSProxyHost() obj.Object
- func KCFStreamPropertySOCKSProxyPort() obj.Object
- func KCFStreamPropertySOCKSUser() obj.Object
- func KCFStreamPropertySOCKSVersion() obj.Object
- func KCFStreamPropertyShouldCloseNativeSocket() obj.Object
- func KCFStreamPropertySocketNativeHandle() uintptr
- func KCFStreamPropertySocketRemoteHostName() uintptr
- func KCFStreamPropertySocketRemotePortNumber() uintptr
- func KCFStreamPropertySocketSecurityLevel() obj.Object
- func KCFStreamSocketSOCKSVersion4() obj.Object
- func KCFStreamSocketSOCKSVersion5() obj.Object
- func KCFStreamSocketSecurityLevelNegotiatedSSL() obj.Object
- func KCFStreamSocketSecurityLevelNone() obj.Object
- func KCFStreamSocketSecurityLevelSSLv2() obj.Object
- func KCFStreamSocketSecurityLevelSSLv3() obj.Object
- func KCFStreamSocketSecurityLevelTLSv1() obj.Object
- func KCFStringBinaryHeapCallBacks() uintptr
- func KCFStringTransformFullwidthHalfwidth() obj.Object
- func KCFStringTransformHiraganaKatakana() obj.Object
- func KCFStringTransformLatinArabic() obj.Object
- func KCFStringTransformLatinCyrillic() obj.Object
- func KCFStringTransformLatinGreek() obj.Object
- func KCFStringTransformLatinHangul() obj.Object
- func KCFStringTransformLatinHebrew() obj.Object
- func KCFStringTransformLatinHiragana() obj.Object
- func KCFStringTransformLatinKatakana() obj.Object
- func KCFStringTransformLatinThai() obj.Object
- func KCFStringTransformMandarinLatin() obj.Object
- func KCFStringTransformStripCombiningMarks() obj.Object
- func KCFStringTransformStripDiacritics() obj.Object
- func KCFStringTransformToLatin() obj.Object
- func KCFStringTransformToUnicodeName() obj.Object
- func KCFStringTransformToXMLHex() obj.Object
- func KCFTamilCalendar() uintptr
- func KCFTeluguCalendar() uintptr
- func KCFTimeZoneSystemTimeZoneDidChangeNotification() uintptr
- func KCFTypeArrayCallBacks() uintptr
- func KCFTypeBagCallBacks() uintptr
- func KCFTypeDictionaryKeyCallBacks() uintptr
- func KCFTypeDictionaryValueCallBacks() uintptr
- func KCFTypeSetCallBacks() uintptr
- func KCFURLAddedToDirectoryDateKey() obj.Object
- func KCFURLApplicationIsScriptableKey() obj.Object
- func KCFURLAttributeModificationDateKey() obj.Object
- func KCFURLCanonicalPathKey() obj.Object
- func KCFURLContentAccessDateKey() obj.Object
- func KCFURLContentModificationDateKey() obj.Object
- func KCFURLCreationDateKey() obj.Object
- func KCFURLCustomIconKey() obj.Object
- func KCFURLDirectoryEntryCountKey() obj.Object
- func KCFURLDocumentIdentifierKey() obj.Object
- func KCFURLEffectiveIconKey() obj.Object
- func KCFURLFileAllocatedSizeKey() obj.Object
- func KCFURLFileContentIdentifierKey() obj.Object
- func KCFURLFileDirectoryContents() obj.Object
- func KCFURLFileExists() obj.Object
- func KCFURLFileIdentifierKey() obj.Object
- func KCFURLFileLastModificationTime() obj.Object
- func KCFURLFileLength() obj.Object
- func KCFURLFileOwnerID() obj.Object
- func KCFURLFilePOSIXMode() obj.Object
- func KCFURLFileResourceIdentifierKey() obj.Object
- func KCFURLFileResourceTypeBlockSpecial() obj.Object
- func KCFURLFileResourceTypeCharacterSpecial() obj.Object
- func KCFURLFileResourceTypeDirectory() obj.Object
- func KCFURLFileResourceTypeKey() obj.Object
- func KCFURLFileResourceTypeNamedPipe() obj.Object
- func KCFURLFileResourceTypeRegular() obj.Object
- func KCFURLFileResourceTypeSocket() obj.Object
- func KCFURLFileResourceTypeSymbolicLink() obj.Object
- func KCFURLFileResourceTypeUnknown() obj.Object
- func KCFURLFileSecurityKey() obj.Object
- func KCFURLFileSizeKey() obj.Object
- func KCFURLGenerationIdentifierKey() obj.Object
- func KCFURLHTTPStatusCode() obj.Object
- func KCFURLHTTPStatusLine() obj.Object
- func KCFURLHasHiddenExtensionKey() obj.Object
- func KCFURLIsAliasFileKey() obj.Object
- func KCFURLIsApplicationKey() obj.Object
- func KCFURLIsDirectoryKey() obj.Object
- func KCFURLIsExcludedFromBackupKey() obj.Object
- func KCFURLIsExecutableKey() obj.Object
- func KCFURLIsHiddenKey() obj.Object
- func KCFURLIsMountTriggerKey() obj.Object
- func KCFURLIsPackageKey() obj.Object
- func KCFURLIsPurgeableKey() obj.Object
- func KCFURLIsReadableKey() obj.Object
- func KCFURLIsRegularFileKey() obj.Object
- func KCFURLIsSparseKey() obj.Object
- func KCFURLIsSymbolicLinkKey() obj.Object
- func KCFURLIsSystemImmutableKey() obj.Object
- func KCFURLIsUbiquitousItemKey() obj.Object
- func KCFURLIsUserImmutableKey() obj.Object
- func KCFURLIsVolumeKey() obj.Object
- func KCFURLIsWritableKey() obj.Object
- func KCFURLKeysOfUnsetValuesKey() obj.Object
- func KCFURLLabelColorKey() obj.Object
- func KCFURLLabelNumberKey() obj.Object
- func KCFURLLinkCountKey() obj.Object
- func KCFURLLocalizedLabelKey() obj.Object
- func KCFURLLocalizedNameKey() obj.Object
- func KCFURLLocalizedTypeDescriptionKey() obj.Object
- func KCFURLMayHaveExtendedAttributesKey() obj.Object
- func KCFURLMayShareFileContentKey() obj.Object
- func KCFURLNameKey() obj.Object
- func KCFURLParentDirectoryURLKey() obj.Object
- func KCFURLPathKey() obj.Object
- func KCFURLPreferredIOBlockSizeKey() obj.Object
- func KCFURLQuarantinePropertiesKey() obj.Object
- func KCFURLTagNamesKey() obj.Object
- func KCFURLTotalFileAllocatedSizeKey() obj.Object
- func KCFURLTotalFileSizeKey() obj.Object
- func KCFURLTypeIdentifierKey() obj.Object
- func KCFURLUbiquitousItemDownloadingErrorKey() obj.Object
- func KCFURLUbiquitousItemDownloadingStatusCurrent() obj.Object
- func KCFURLUbiquitousItemDownloadingStatusDownloaded() obj.Object
- func KCFURLUbiquitousItemDownloadingStatusKey() obj.Object
- func KCFURLUbiquitousItemDownloadingStatusNotDownloaded() obj.Object
- func KCFURLUbiquitousItemHasUnresolvedConflictsKey() obj.Object
- func KCFURLUbiquitousItemIsDownloadedKey() obj.Object
- func KCFURLUbiquitousItemIsDownloadingKey() obj.Object
- func KCFURLUbiquitousItemIsExcludedFromSyncKey() obj.Object
- func KCFURLUbiquitousItemIsSyncPausedKey() obj.Object
- func KCFURLUbiquitousItemIsUploadedKey() obj.Object
- func KCFURLUbiquitousItemIsUploadingKey() obj.Object
- func KCFURLUbiquitousItemPercentDownloadedKey() obj.Object
- func KCFURLUbiquitousItemPercentUploadedKey() obj.Object
- func KCFURLUbiquitousItemSupportedSyncControlsKey() obj.Object
- func KCFURLUbiquitousItemUploadingErrorKey() obj.Object
- func KCFURLVolumeAvailableCapacityForImportantUsageKey() obj.Object
- func KCFURLVolumeAvailableCapacityForOpportunisticUsageKey() obj.Object
- func KCFURLVolumeAvailableCapacityKey() obj.Object
- func KCFURLVolumeCreationDateKey() obj.Object
- func KCFURLVolumeIdentifierKey() obj.Object
- func KCFURLVolumeIsAutomountedKey() obj.Object
- func KCFURLVolumeIsBrowsableKey() obj.Object
- func KCFURLVolumeIsEjectableKey() obj.Object
- func KCFURLVolumeIsEncryptedKey() obj.Object
- func KCFURLVolumeIsInternalKey() obj.Object
- func KCFURLVolumeIsJournalingKey() obj.Object
- func KCFURLVolumeIsLocalKey() obj.Object
- func KCFURLVolumeIsReadOnlyKey() obj.Object
- func KCFURLVolumeIsRemovableKey() obj.Object
- func KCFURLVolumeIsRootFileSystemKey() obj.Object
- func KCFURLVolumeLocalizedFormatDescriptionKey() obj.Object
- func KCFURLVolumeLocalizedNameKey() obj.Object
- func KCFURLVolumeMaximumFileSizeKey() obj.Object
- func KCFURLVolumeMountFromLocationKey() obj.Object
- func KCFURLVolumeNameKey() obj.Object
- func KCFURLVolumeResourceCountKey() obj.Object
- func KCFURLVolumeSubtypeKey() obj.Object
- func KCFURLVolumeSupportsAccessPermissionsKey() obj.Object
- func KCFURLVolumeSupportsAdvisoryFileLockingKey() obj.Object
- func KCFURLVolumeSupportsCasePreservedNamesKey() obj.Object
- func KCFURLVolumeSupportsCaseSensitiveNamesKey() obj.Object
- func KCFURLVolumeSupportsCompressionKey() obj.Object
- func KCFURLVolumeSupportsExclusiveRenamingKey() obj.Object
- func KCFURLVolumeSupportsExtendedSecurityKey() obj.Object
- func KCFURLVolumeSupportsFileCloningKey() obj.Object
- func KCFURLVolumeSupportsFileProtectionKey() obj.Object
- func KCFURLVolumeSupportsHardLinksKey() obj.Object
- func KCFURLVolumeSupportsImmutableFilesKey() obj.Object
- func KCFURLVolumeSupportsJournalingKey() obj.Object
- func KCFURLVolumeSupportsPersistentIDsKey() obj.Object
- func KCFURLVolumeSupportsRenamingKey() obj.Object
- func KCFURLVolumeSupportsRootDirectoryDatesKey() obj.Object
- func KCFURLVolumeSupportsSparseFilesKey() obj.Object
- func KCFURLVolumeSupportsSwapRenamingKey() obj.Object
- func KCFURLVolumeSupportsSymbolicLinksKey() obj.Object
- func KCFURLVolumeSupportsVolumeSizesKey() obj.Object
- func KCFURLVolumeSupportsZeroRunsKey() obj.Object
- func KCFURLVolumeTotalCapacityKey() obj.Object
- func KCFURLVolumeTypeNameKey() obj.Object
- func KCFURLVolumeURLForRemountingKey() obj.Object
- func KCFURLVolumeURLKey() obj.Object
- func KCFURLVolumeUUIDStringKey() obj.Object
- func KCFUserNotificationAlertHeaderKey() obj.Object
- func KCFUserNotificationAlertMessageKey() obj.Object
- func KCFUserNotificationAlertTopMostKey() obj.Object
- func KCFUserNotificationAlternateButtonTitleKey() obj.Object
- func KCFUserNotificationCheckBoxTitlesKey() obj.Object
- func KCFUserNotificationDefaultButtonTitleKey() obj.Object
- func KCFUserNotificationIconURLKey() obj.Object
- func KCFUserNotificationKeyboardTypesKey() obj.Object
- func KCFUserNotificationLocalizationURLKey() obj.Object
- func KCFUserNotificationOtherButtonTitleKey() obj.Object
- func KCFUserNotificationPopUpSelectionKey() obj.Object
- func KCFUserNotificationPopUpTitlesKey() obj.Object
- func KCFUserNotificationProgressIndicatorValueKey() obj.Object
- func KCFUserNotificationSoundURLKey() obj.Object
- func KCFUserNotificationTextFieldTitlesKey() obj.Object
- func KCFUserNotificationTextFieldValuesKey() obj.Object
- func KCFVietnameseCalendar() uintptr
- func KCFVikramCalendar() uintptr
- func KCFXMLTreeErrorDescription() obj.Object
- func KCFXMLTreeErrorLineNumber() obj.Object
- func KCFXMLTreeErrorLocation() obj.Object
- func KCFXMLTreeErrorStatusCode() obj.Object
- type CFAllocator
- type CFAllocatorContext
- type CFArray
- type CFArrayCallBacks
- type CFAttributedString
- type CFBag
- type CFBagCallBacks
- type CFBinaryHeap
- type CFBinaryHeapCallBacks
- type CFBinaryHeapCompareContext
- type CFBitVector
- type CFBoolean
- type CFBundle
- type CFByteOrder
- type CFCalendar
- type CFCalendarUnit
- type CFCharacterSet
- type CFCharacterSetPredefinedSet
- type CFComparisonResult
- func CFDateCompare(theDate obj.Object, otherDate obj.Object, context_ unsafe.Pointer) CFComparisonResult
- func CFNumberCompare(number obj.Object, otherNumber obj.Object, context_ unsafe.Pointer) CFComparisonResult
- func CFStringCompare(theString1 obj.Object, theString2 obj.Object, ...) CFComparisonResult
- func CFStringCompareWithOptions(theString1 obj.Object, theString2 obj.Object, rangeToCompare unsafe.Pointer, ...) CFComparisonResult
- func CFStringCompareWithOptionsAndLocale(theString1 obj.Object, theString2 obj.Object, rangeToCompare unsafe.Pointer, ...) CFComparisonResult
- type CFData
- type CFDataSearchFlags
- type CFDate
- type CFDateFormatter
- type CFDateFormatterStyle
- type CFDictionary
- type CFDictionaryKeyCallBacks
- type CFDictionaryValueCallBacks
- type CFError
- type CFFileDescriptor
- type CFFileDescriptorContext
- type CFFileSecurity
- type CFFileSecurityClearOptions
- type CFGregorianDate
- type CFGregorianUnitFlags
- type CFGregorianUnits
- type CFISO8601DateFormatOptions
- type CFLocale
- type CFLocaleLanguageDirection
- type CFMachPort
- type CFMachPortContext
- type CFMessagePort
- type CFMessagePortContext
- type CFNotificationCenter
- type CFNotificationSuspensionBehavior
- type CFNull
- type CFNumber
- type CFNumberFormatter
- type CFNumberFormatterOptionFlags
- type CFNumberFormatterPadPosition
- type CFNumberFormatterRoundingMode
- type CFNumberFormatterStyle
- type CFNumberType
- type CFPlugInInstance
- type CFPropertyListFormat
- func CFPropertyListCreateFromStream(allocator obj.Object, stream obj.Object, streamLength int, ...) (result obj.Object, format CFPropertyListFormat)
- func CFPropertyListCreateWithData(allocator obj.Object, data obj.Object, options int, err unsafe.Pointer) (result obj.Object, format CFPropertyListFormat)
- func CFPropertyListCreateWithStream(allocator obj.Object, stream obj.Object, streamLength int, options int, ...) (result obj.Object, format CFPropertyListFormat)
- type CFPropertyListMutabilityOptions
- type CFRange
- func CFAttributedStringGetAttribute(aStr obj.Object, loc int, attrName obj.Object) (result obj.Object, effectiveRange CFRange)
- func CFAttributedStringGetAttributeAndLongestEffectiveRange(aStr obj.Object, loc int, attrName obj.Object, inRange unsafe.Pointer) (result obj.Object, longestEffectiveRange CFRange)
- func CFAttributedStringGetAttributes(aStr obj.Object, loc int) (result obj.Object, effectiveRange CFRange)
- func CFAttributedStringGetAttributesAndLongestEffectiveRange(aStr obj.Object, loc int, inRange unsafe.Pointer) (result obj.Object, longestEffectiveRange CFRange)
- func CFDateFormatterCreateDateFromString(allocator obj.Object, formatter obj.Object, str obj.Object) (result obj.Object, rangep CFRange)
- func CFDateFormatterGetAbsoluteTimeFromString(formatter obj.Object, str obj.Object) (result uint8, rangep CFRange, atp float64)
- func CFNumberFormatterCreateNumberFromString(allocator obj.Object, formatter obj.Object, str obj.Object, options int) (result obj.Object, rangep CFRange)
- func CFNumberFormatterGetValueFromString(formatter obj.Object, str obj.Object, numberType CFNumberType, ...) (result uint8, rangep CFRange)
- func CFStringFindCharacterFromSet(theString obj.Object, theSet obj.Object, rangeToSearch unsafe.Pointer, ...) (result uint8, result_ CFRange)
- func CFStringFindWithOptions(theString obj.Object, stringToFind obj.Object, rangeToSearch unsafe.Pointer, ...) (result uint8, result_ CFRange)
- func CFStringFindWithOptionsAndLocale(theString obj.Object, stringToFind obj.Object, rangeToSearch unsafe.Pointer, ...) (result uint8, result_ CFRange)
- func CFStringTokenizerGetCurrentSubTokens(tokenizer obj.Object, maxRangeLength int, derivedSubTokens obj.Object) (result int, ranges CFRange)
- func CFStringTransform(str obj.Object, transform obj.Object, reverse uint8) (result uint8, range_ CFRange)
- func CFURLGetByteRangeForComponent(url obj.Object, component CFURLComponentType) (result unsafe.Pointer, rangeIncludingSeparators CFRange)
- type CFReadStream
- type CFRunLoop
- type CFRunLoopActivity
- type CFRunLoopObserver
- type CFRunLoopObserverContext
- type CFRunLoopRunResult
- type CFRunLoopSource
- type CFRunLoopSourceContext
- type CFRunLoopSourceContext1
- type CFRunLoopTimer
- type CFRunLoopTimerContext
- type CFSet
- type CFSetCallBacks
- type CFSocket
- type CFSocketCallBackType
- type CFSocketContext
- type CFSocketError
- func CFSocketConnectToAddress(s obj.Object, address obj.Object, timeout float64) CFSocketError
- func CFSocketCopyRegisteredSocketSignature(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object, ...) CFSocketError
- func CFSocketCopyRegisteredValue(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object, ...) CFSocketError
- func CFSocketRegisterSocketSignature(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object, ...) CFSocketError
- func CFSocketRegisterValue(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object, ...) CFSocketError
- func CFSocketSendData(s obj.Object, address obj.Object, data obj.Object, timeout float64) CFSocketError
- func CFSocketSetAddress(s obj.Object, address obj.Object) CFSocketError
- func CFSocketUnregister(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object) CFSocketError
- type CFSocketSignature
- type CFStreamClientContext
- type CFStreamError
- type CFStreamErrorDomain
- type CFStreamEventType
- type CFStreamStatus
- type CFString
- type CFStringBuiltInEncodings
- type CFStringCompareFlags
- type CFStringEncodings
- type CFStringInlineBuffer
- type CFStringNormalizationForm
- type CFStringTokenizer
- type CFStringTokenizerTokenType
- type CFSwappedFloat32
- type CFSwappedFloat64
- type CFTimeZone
- type CFTimeZoneNameStyle
- type CFTree
- type CFTreeContext
- type CFURL
- type CFURLBookmarkCreationOptions
- type CFURLBookmarkResolutionOptions
- type CFURLComponentType
- type CFURLEnumerator
- type CFURLEnumeratorOptions
- type CFURLEnumeratorResult
- type CFURLErrordeprecated
- type CFURLPathStyle
- type CFUUID
- type CFUUIDBytes
- type CFUserNotification
- type CFWriteStream
- type CFXMLAttributeDeclarationInfo
- type CFXMLAttributeListDeclarationInfo
- type CFXMLDocumentInfo
- type CFXMLDocumentTypeInfo
- type CFXMLElementInfo
- type CFXMLElementTypeDeclarationInfo
- type CFXMLEntityInfo
- type CFXMLEntityReferenceInfo
- type CFXMLEntityTypeCode
- type CFXMLExternalID
- type CFXMLNode
- type CFXMLNodeTypeCode
- type CFXMLNotationInfo
- type CFXMLParser
- type CFXMLParserCallBacks
- type CFXMLParserContext
- type CFXMLParserOptions
- type CFXMLParserStatusCode
- type CFXMLProcessingInstructionInfo
- type CGAffineTransform
- type CGAffineTransformComponents
- type CGPoint
- type CGRect
- type CGRectEdge
- type CGSize
- type CGVector
- type Clockid
- type DispatchAutoreleaseFrequency
- type DispatchBlockFlags
- type EntryID
- type FSRef
- type FilesecProperty
- type Flag
- type Idtype
- type MallocZoneT
- type MpoFlags
- type OSClockid
- type Perm
- type PtrauthKey
- type QosClass
- type Tag
- type Type
Constants ¶
const ( KCFBundleExecutableArchitectureARM64 = 16777228 KCFBundleExecutableArchitectureI386 = 7 KCFBundleExecutableArchitecturePPC = 18 KCFBundleExecutableArchitecturePPC64 = 16777234 KCFBundleExecutableArchitectureX86_64 = 16777223 KCFCalendarComponentsWrap = 1 KCFFileDescriptorReadCallBack = 1 KCFFileDescriptorWriteCallBack = 2 KCFMessagePortBecameInvalidError = -5 KCFMessagePortIsInvalid = -3 KCFMessagePortReceiveTimeout = -2 KCFMessagePortSendTimeout = -1 KCFMessagePortSuccess = 0 KCFMessagePortTransportError = -4 KCFNotificationDeliverImmediately = 1 KCFNotificationPostToAllSessions = 2 KCFPropertyListReadCorruptError = 3840 KCFPropertyListReadStreamError = 3842 KCFPropertyListReadUnknownVersionError = 3841 KCFPropertyListWriteStreamError = 3851 KCFSocketAutomaticallyReenableAcceptCallBack = 2 KCFSocketAutomaticallyReenableDataCallBack = 3 KCFSocketAutomaticallyReenableReadCallBack = 1 KCFSocketAutomaticallyReenableWriteCallBack = 8 KCFSocketCloseOnInvalidate = 128 KCFSocketLeaveErrors = 64 KCFStringTokenizerAttributeLanguage = 131072 KCFStringTokenizerAttributeLatinTranscription = 65536 KCFStringTokenizerUnitLineBreak = 3 KCFStringTokenizerUnitParagraph = 2 KCFStringTokenizerUnitSentence = 1 KCFStringTokenizerUnitWord = 0 KCFStringTokenizerUnitWordBoundary = 4 KCFUserNotificationAlternateResponse = 1 KCFUserNotificationCancelResponse = 3 KCFUserNotificationCautionAlertLevel = 2 KCFUserNotificationDefaultResponse = 0 KCFUserNotificationNoDefaultButtonFlag = 32 KCFUserNotificationNoteAlertLevel = 1 KCFUserNotificationOtherResponse = 2 KCFUserNotificationPlainAlertLevel = 3 KCFUserNotificationStopAlertLevel = 0 KCFUserNotificationUseRadioButtonsFlag = 64 KCFXMLNodeCurrentVersion = 1 )
Variables ¶
This section is empty.
Functions ¶
func BuiltinConstantP ¶
func BuiltinConstantP() int
BuiltinConstantP calls the CoreFoundation framework function __builtin_constant_p.
func CFAbsoluteTimeAddGregorianUnits ¶
CFAbsoluteTimeAddGregorianUnits calls the CoreFoundation framework function CFAbsoluteTimeAddGregorianUnits.
func CFAbsoluteTimeGetCurrent ¶
func CFAbsoluteTimeGetCurrent() float64
CFAbsoluteTimeGetCurrent calls the CoreFoundation framework function CFAbsoluteTimeGetCurrent.
func CFAbsoluteTimeGetDayOfWeek ¶
CFAbsoluteTimeGetDayOfWeek calls the CoreFoundation framework function CFAbsoluteTimeGetDayOfWeek.
func CFAbsoluteTimeGetDayOfYear ¶
CFAbsoluteTimeGetDayOfYear calls the CoreFoundation framework function CFAbsoluteTimeGetDayOfYear.
func CFAbsoluteTimeGetDifferenceAsGregorianUnits ¶
func CFAbsoluteTimeGetDifferenceAsGregorianUnits(at1 float64, at2 float64, tz obj.Object, unitFlags int) unsafe.Pointer
CFAbsoluteTimeGetDifferenceAsGregorianUnits calls the CoreFoundation framework function CFAbsoluteTimeGetDifferenceAsGregorianUnits.
func CFAbsoluteTimeGetGregorianDate ¶
CFAbsoluteTimeGetGregorianDate calls the CoreFoundation framework function CFAbsoluteTimeGetGregorianDate.
func CFAbsoluteTimeGetWeekOfYear ¶
CFAbsoluteTimeGetWeekOfYear calls the CoreFoundation framework function CFAbsoluteTimeGetWeekOfYear.
func CFAllocatorAllocate ¶
CFAllocatorAllocate calls the CoreFoundation framework function CFAllocatorAllocate.
func CFAllocatorAllocateBytes ¶
CFAllocatorAllocateBytes calls the CoreFoundation framework function CFAllocatorAllocateBytes.
func CFAllocatorAllocateTyped ¶
func CFAllocatorAllocateTyped(allocator obj.Object, size int, descriptor uint64, hint int) unsafe.Pointer
CFAllocatorAllocateTyped calls the CoreFoundation framework function CFAllocatorAllocateTyped.
func CFAllocatorCreate ¶
CFAllocatorCreate calls the CoreFoundation framework function CFAllocatorCreate.
func CFAllocatorDeallocate ¶
CFAllocatorDeallocate calls the CoreFoundation framework function CFAllocatorDeallocate.
func CFAllocatorGetContext ¶
CFAllocatorGetContext calls the CoreFoundation framework function CFAllocatorGetContext.
func CFAllocatorGetDefault ¶
CFAllocatorGetDefault calls the CoreFoundation framework function CFAllocatorGetDefault.
func CFAllocatorGetPreferredSizeForSize ¶
CFAllocatorGetPreferredSizeForSize calls the CoreFoundation framework function CFAllocatorGetPreferredSizeForSize.
func CFAllocatorGetTypeID ¶
func CFAllocatorGetTypeID() int
CFAllocatorGetTypeID calls the CoreFoundation framework function CFAllocatorGetTypeID.
func CFAllocatorReallocate ¶
func CFAllocatorReallocate(allocator obj.Object, ptr unsafe.Pointer, newsize int, hint int) unsafe.Pointer
CFAllocatorReallocate calls the CoreFoundation framework function CFAllocatorReallocate.
func CFAllocatorReallocateBytes ¶
func CFAllocatorReallocateBytes(allocator obj.Object, ptr unsafe.Pointer, newsize int, hint int) unsafe.Pointer
CFAllocatorReallocateBytes calls the CoreFoundation framework function CFAllocatorReallocateBytes.
func CFAllocatorReallocateTyped ¶
func CFAllocatorReallocateTyped(allocator obj.Object, ptr unsafe.Pointer, newsize int, descriptor uint64, hint int) unsafe.Pointer
CFAllocatorReallocateTyped calls the CoreFoundation framework function CFAllocatorReallocateTyped.
func CFAllocatorSetDefault ¶
CFAllocatorSetDefault calls the CoreFoundation framework function CFAllocatorSetDefault.
func CFArrayAppendArray ¶
CFArrayAppendArray calls the CoreFoundation framework function CFArrayAppendArray.
func CFArrayAppendValue ¶
CFArrayAppendValue calls the CoreFoundation framework function CFArrayAppendValue.
func CFArrayApplyFunction ¶
func CFArrayApplyFunction(theArray obj.Object, range_ unsafe.Pointer, applier unsafe.Pointer, context_ unsafe.Pointer)
CFArrayApplyFunction calls the CoreFoundation framework function CFArrayApplyFunction.
func CFArrayBSearchValues ¶
func CFArrayBSearchValues(theArray obj.Object, range_ unsafe.Pointer, value unsafe.Pointer, comparator unsafe.Pointer, context_ unsafe.Pointer) int
CFArrayBSearchValues calls the CoreFoundation framework function CFArrayBSearchValues.
func CFArrayContainsValue ¶
CFArrayContainsValue calls the CoreFoundation framework function CFArrayContainsValue.
func CFArrayCreate ¶
func CFArrayCreate(allocator obj.Object, values unsafe.Pointer, numValues int, callBacks unsafe.Pointer) obj.Object
CFArrayCreate calls the CoreFoundation framework function CFArrayCreate.
func CFArrayCreateCopy ¶
CFArrayCreateCopy calls the CoreFoundation framework function CFArrayCreateCopy.
func CFArrayCreateMutable ¶
CFArrayCreateMutable calls the CoreFoundation framework function CFArrayCreateMutable.
func CFArrayCreateMutableCopy ¶
CFArrayCreateMutableCopy calls the CoreFoundation framework function CFArrayCreateMutableCopy.
func CFArrayExchangeValuesAtIndices ¶
CFArrayExchangeValuesAtIndices calls the CoreFoundation framework function CFArrayExchangeValuesAtIndices.
func CFArrayGetCount ¶
CFArrayGetCount calls the CoreFoundation framework function CFArrayGetCount.
func CFArrayGetCountOfValue ¶
CFArrayGetCountOfValue calls the CoreFoundation framework function CFArrayGetCountOfValue.
func CFArrayGetFirstIndexOfValue ¶
func CFArrayGetFirstIndexOfValue(theArray obj.Object, range_ unsafe.Pointer, value unsafe.Pointer) int
CFArrayGetFirstIndexOfValue calls the CoreFoundation framework function CFArrayGetFirstIndexOfValue.
func CFArrayGetLastIndexOfValue ¶
func CFArrayGetLastIndexOfValue(theArray obj.Object, range_ unsafe.Pointer, value unsafe.Pointer) int
CFArrayGetLastIndexOfValue calls the CoreFoundation framework function CFArrayGetLastIndexOfValue.
func CFArrayGetTypeID ¶
func CFArrayGetTypeID() int
CFArrayGetTypeID calls the CoreFoundation framework function CFArrayGetTypeID.
func CFArrayGetValueAtIndex ¶
CFArrayGetValueAtIndex calls the CoreFoundation framework function CFArrayGetValueAtIndex.
func CFArrayGetValues ¶
CFArrayGetValues calls the CoreFoundation framework function CFArrayGetValues.
func CFArrayInsertValueAtIndex ¶
CFArrayInsertValueAtIndex calls the CoreFoundation framework function CFArrayInsertValueAtIndex.
func CFArrayRemoveAllValues ¶
CFArrayRemoveAllValues calls the CoreFoundation framework function CFArrayRemoveAllValues.
func CFArrayRemoveValueAtIndex ¶
CFArrayRemoveValueAtIndex calls the CoreFoundation framework function CFArrayRemoveValueAtIndex.
func CFArrayReplaceValues ¶
func CFArrayReplaceValues(theArray obj.Object, range_ unsafe.Pointer, newValues unsafe.Pointer, newCount int)
CFArrayReplaceValues calls the CoreFoundation framework function CFArrayReplaceValues.
func CFArraySetValueAtIndex ¶
CFArraySetValueAtIndex calls the CoreFoundation framework function CFArraySetValueAtIndex.
func CFArraySortValues ¶
func CFArraySortValues(theArray obj.Object, range_ unsafe.Pointer, comparator unsafe.Pointer, context_ unsafe.Pointer)
CFArraySortValues calls the CoreFoundation framework function CFArraySortValues.
func CFAttributedStringBeginEditing ¶
CFAttributedStringBeginEditing calls the CoreFoundation framework function CFAttributedStringBeginEditing.
func CFAttributedStringCreate ¶
CFAttributedStringCreate calls the CoreFoundation framework function CFAttributedStringCreate.
func CFAttributedStringCreateCopy ¶
CFAttributedStringCreateCopy calls the CoreFoundation framework function CFAttributedStringCreateCopy.
func CFAttributedStringCreateMutable ¶
CFAttributedStringCreateMutable calls the CoreFoundation framework function CFAttributedStringCreateMutable.
func CFAttributedStringCreateMutableCopy ¶
func CFAttributedStringCreateMutableCopy(alloc obj.Object, maxLength int, aStr obj.Object) obj.Object
CFAttributedStringCreateMutableCopy calls the CoreFoundation framework function CFAttributedStringCreateMutableCopy.
func CFAttributedStringCreateWithSubstring ¶
func CFAttributedStringCreateWithSubstring(alloc obj.Object, aStr obj.Object, range_ unsafe.Pointer) obj.Object
CFAttributedStringCreateWithSubstring calls the CoreFoundation framework function CFAttributedStringCreateWithSubstring.
func CFAttributedStringEndEditing ¶
CFAttributedStringEndEditing calls the CoreFoundation framework function CFAttributedStringEndEditing.
func CFAttributedStringGetBidiLevelsAndResolvedDirections ¶
func CFAttributedStringGetBidiLevelsAndResolvedDirections(attributedString obj.Object, range_ unsafe.Pointer, baseDirection int8) (ok bool, bidiLevels uint8, baseDirections uint8)
CFAttributedStringGetBidiLevelsAndResolvedDirections calls the CoreFoundation framework function CFAttributedStringGetBidiLevelsAndResolvedDirections.
func CFAttributedStringGetLength ¶
CFAttributedStringGetLength calls the CoreFoundation framework function CFAttributedStringGetLength.
func CFAttributedStringGetMutableString ¶
CFAttributedStringGetMutableString calls the CoreFoundation framework function CFAttributedStringGetMutableString.
func CFAttributedStringGetStatisticalWritingDirections ¶
func CFAttributedStringGetStatisticalWritingDirections(attributedString obj.Object, range_ unsafe.Pointer, baseDirection int8) (ok bool, bidiLevels uint8, baseDirections uint8)
CFAttributedStringGetStatisticalWritingDirections calls the CoreFoundation framework function CFAttributedStringGetStatisticalWritingDirections.
func CFAttributedStringGetString ¶
CFAttributedStringGetString calls the CoreFoundation framework function CFAttributedStringGetString.
func CFAttributedStringGetTypeID ¶
func CFAttributedStringGetTypeID() int
CFAttributedStringGetTypeID calls the CoreFoundation framework function CFAttributedStringGetTypeID.
func CFAttributedStringRemoveAttribute ¶
CFAttributedStringRemoveAttribute calls the CoreFoundation framework function CFAttributedStringRemoveAttribute.
func CFAttributedStringReplaceAttributedString ¶
func CFAttributedStringReplaceAttributedString(aStr obj.Object, range_ unsafe.Pointer, replacement obj.Object)
CFAttributedStringReplaceAttributedString calls the CoreFoundation framework function CFAttributedStringReplaceAttributedString.
func CFAttributedStringReplaceString ¶
func CFAttributedStringReplaceString(aStr obj.Object, range_ unsafe.Pointer, replacement obj.Object)
CFAttributedStringReplaceString calls the CoreFoundation framework function CFAttributedStringReplaceString.
func CFAttributedStringSetAttribute ¶
func CFAttributedStringSetAttribute(aStr obj.Object, range_ unsafe.Pointer, attrName obj.Object, value obj.Object)
CFAttributedStringSetAttribute calls the CoreFoundation framework function CFAttributedStringSetAttribute.
func CFAttributedStringSetAttributes ¶
func CFAttributedStringSetAttributes(aStr obj.Object, range_ unsafe.Pointer, replacement obj.Object, clearOtherAttributes uint8)
CFAttributedStringSetAttributes calls the CoreFoundation framework function CFAttributedStringSetAttributes.
func CFAutorelease ¶
CFAutorelease calls the CoreFoundation framework function CFAutorelease.
func CFBagAddValue ¶
CFBagAddValue calls the CoreFoundation framework function CFBagAddValue.
func CFBagApplyFunction ¶
CFBagApplyFunction calls the CoreFoundation framework function CFBagApplyFunction.
func CFBagContainsValue ¶
CFBagContainsValue calls the CoreFoundation framework function CFBagContainsValue.
func CFBagCreate ¶
func CFBagCreate(allocator obj.Object, values unsafe.Pointer, numValues int, callBacks unsafe.Pointer) obj.Object
CFBagCreate calls the CoreFoundation framework function CFBagCreate.
func CFBagCreateCopy ¶
CFBagCreateCopy calls the CoreFoundation framework function CFBagCreateCopy.
func CFBagCreateMutable ¶
CFBagCreateMutable calls the CoreFoundation framework function CFBagCreateMutable.
func CFBagCreateMutableCopy ¶
CFBagCreateMutableCopy calls the CoreFoundation framework function CFBagCreateMutableCopy.
func CFBagGetCount ¶
CFBagGetCount calls the CoreFoundation framework function CFBagGetCount.
func CFBagGetCountOfValue ¶
CFBagGetCountOfValue calls the CoreFoundation framework function CFBagGetCountOfValue.
func CFBagGetTypeID ¶
func CFBagGetTypeID() int
CFBagGetTypeID calls the CoreFoundation framework function CFBagGetTypeID.
func CFBagGetValue ¶
CFBagGetValue calls the CoreFoundation framework function CFBagGetValue.
func CFBagGetValueIfPresent ¶
func CFBagGetValueIfPresent(theBag obj.Object, candidate unsafe.Pointer, value unsafe.Pointer) uint8
CFBagGetValueIfPresent calls the CoreFoundation framework function CFBagGetValueIfPresent.
func CFBagGetValues ¶
CFBagGetValues calls the CoreFoundation framework function CFBagGetValues.
func CFBagRemoveAllValues ¶
CFBagRemoveAllValues calls the CoreFoundation framework function CFBagRemoveAllValues.
func CFBagRemoveValue ¶
CFBagRemoveValue calls the CoreFoundation framework function CFBagRemoveValue.
func CFBagReplaceValue ¶
CFBagReplaceValue calls the CoreFoundation framework function CFBagReplaceValue.
func CFBagSetValue ¶
CFBagSetValue calls the CoreFoundation framework function CFBagSetValue.
func CFBinaryHeapAddValue ¶
CFBinaryHeapAddValue calls the CoreFoundation framework function CFBinaryHeapAddValue.
func CFBinaryHeapApplyFunction ¶
CFBinaryHeapApplyFunction calls the CoreFoundation framework function CFBinaryHeapApplyFunction.
func CFBinaryHeapContainsValue ¶
CFBinaryHeapContainsValue calls the CoreFoundation framework function CFBinaryHeapContainsValue.
func CFBinaryHeapCreate ¶
func CFBinaryHeapCreate(allocator obj.Object, capacity int, callBacks unsafe.Pointer, compareContext unsafe.Pointer) obj.Object
CFBinaryHeapCreate calls the CoreFoundation framework function CFBinaryHeapCreate.
func CFBinaryHeapCreateCopy ¶
CFBinaryHeapCreateCopy calls the CoreFoundation framework function CFBinaryHeapCreateCopy.
func CFBinaryHeapGetCount ¶
CFBinaryHeapGetCount calls the CoreFoundation framework function CFBinaryHeapGetCount.
func CFBinaryHeapGetCountOfValue ¶
CFBinaryHeapGetCountOfValue calls the CoreFoundation framework function CFBinaryHeapGetCountOfValue.
func CFBinaryHeapGetMinimum ¶
CFBinaryHeapGetMinimum calls the CoreFoundation framework function CFBinaryHeapGetMinimum.
func CFBinaryHeapGetMinimumIfPresent ¶
CFBinaryHeapGetMinimumIfPresent calls the CoreFoundation framework function CFBinaryHeapGetMinimumIfPresent.
func CFBinaryHeapGetTypeID ¶
func CFBinaryHeapGetTypeID() int
CFBinaryHeapGetTypeID calls the CoreFoundation framework function CFBinaryHeapGetTypeID.
func CFBinaryHeapGetValues ¶
CFBinaryHeapGetValues calls the CoreFoundation framework function CFBinaryHeapGetValues.
func CFBinaryHeapRemoveAllValues ¶
CFBinaryHeapRemoveAllValues calls the CoreFoundation framework function CFBinaryHeapRemoveAllValues.
func CFBinaryHeapRemoveMinimumValue ¶
CFBinaryHeapRemoveMinimumValue calls the CoreFoundation framework function CFBinaryHeapRemoveMinimumValue.
func CFBitVectorContainsBit ¶
CFBitVectorContainsBit calls the CoreFoundation framework function CFBitVectorContainsBit.
func CFBitVectorCreate ¶
CFBitVectorCreate calls the CoreFoundation framework function CFBitVectorCreate.
func CFBitVectorCreateCopy ¶
CFBitVectorCreateCopy calls the CoreFoundation framework function CFBitVectorCreateCopy.
func CFBitVectorCreateMutable ¶
CFBitVectorCreateMutable calls the CoreFoundation framework function CFBitVectorCreateMutable.
func CFBitVectorCreateMutableCopy ¶
CFBitVectorCreateMutableCopy calls the CoreFoundation framework function CFBitVectorCreateMutableCopy.
func CFBitVectorFlipBitAtIndex ¶
CFBitVectorFlipBitAtIndex calls the CoreFoundation framework function CFBitVectorFlipBitAtIndex.
func CFBitVectorFlipBits ¶
CFBitVectorFlipBits calls the CoreFoundation framework function CFBitVectorFlipBits.
func CFBitVectorGetBitAtIndex ¶
CFBitVectorGetBitAtIndex calls the CoreFoundation framework function CFBitVectorGetBitAtIndex.
func CFBitVectorGetBits ¶
CFBitVectorGetBits calls the CoreFoundation framework function CFBitVectorGetBits.
func CFBitVectorGetCount ¶
CFBitVectorGetCount calls the CoreFoundation framework function CFBitVectorGetCount.
func CFBitVectorGetCountOfBit ¶
CFBitVectorGetCountOfBit calls the CoreFoundation framework function CFBitVectorGetCountOfBit.
func CFBitVectorGetFirstIndexOfBit ¶
CFBitVectorGetFirstIndexOfBit calls the CoreFoundation framework function CFBitVectorGetFirstIndexOfBit.
func CFBitVectorGetLastIndexOfBit ¶
CFBitVectorGetLastIndexOfBit calls the CoreFoundation framework function CFBitVectorGetLastIndexOfBit.
func CFBitVectorGetTypeID ¶
func CFBitVectorGetTypeID() int
CFBitVectorGetTypeID calls the CoreFoundation framework function CFBitVectorGetTypeID.
func CFBitVectorSetAllBits ¶
CFBitVectorSetAllBits calls the CoreFoundation framework function CFBitVectorSetAllBits.
func CFBitVectorSetBitAtIndex ¶
CFBitVectorSetBitAtIndex calls the CoreFoundation framework function CFBitVectorSetBitAtIndex.
func CFBitVectorSetBits ¶
CFBitVectorSetBits calls the CoreFoundation framework function CFBitVectorSetBits.
func CFBitVectorSetCount ¶
CFBitVectorSetCount calls the CoreFoundation framework function CFBitVectorSetCount.
func CFBooleanGetTypeID ¶
func CFBooleanGetTypeID() int
CFBooleanGetTypeID calls the CoreFoundation framework function CFBooleanGetTypeID.
func CFBooleanGetValue ¶
CFBooleanGetValue calls the CoreFoundation framework function CFBooleanGetValue.
func CFBundleCloseBundleResourceMap ¶
CFBundleCloseBundleResourceMap calls the CoreFoundation framework function CFBundleCloseBundleResourceMap.
func CFBundleCopyAuxiliaryExecutableURL ¶
CFBundleCopyAuxiliaryExecutableURL calls the CoreFoundation framework function CFBundleCopyAuxiliaryExecutableURL.
func CFBundleCopyBuiltInPlugInsURL ¶
CFBundleCopyBuiltInPlugInsURL calls the CoreFoundation framework function CFBundleCopyBuiltInPlugInsURL.
func CFBundleCopyBundleLocalizations ¶
CFBundleCopyBundleLocalizations calls the CoreFoundation framework function CFBundleCopyBundleLocalizations.
func CFBundleCopyBundleURL ¶
CFBundleCopyBundleURL calls the CoreFoundation framework function CFBundleCopyBundleURL.
func CFBundleCopyExecutableArchitectures ¶
CFBundleCopyExecutableArchitectures calls the CoreFoundation framework function CFBundleCopyExecutableArchitectures.
func CFBundleCopyExecutableArchitecturesForURL ¶
CFBundleCopyExecutableArchitecturesForURL calls the CoreFoundation framework function CFBundleCopyExecutableArchitecturesForURL.
func CFBundleCopyExecutableURL ¶
CFBundleCopyExecutableURL calls the CoreFoundation framework function CFBundleCopyExecutableURL.
func CFBundleCopyInfoDictionaryForURL ¶
CFBundleCopyInfoDictionaryForURL calls the CoreFoundation framework function CFBundleCopyInfoDictionaryForURL.
func CFBundleCopyInfoDictionaryInDirectory ¶
CFBundleCopyInfoDictionaryInDirectory calls the CoreFoundation framework function CFBundleCopyInfoDictionaryInDirectory.
func CFBundleCopyLocalizationsForPreferences ¶
CFBundleCopyLocalizationsForPreferences calls the CoreFoundation framework function CFBundleCopyLocalizationsForPreferences.
func CFBundleCopyLocalizationsForURL ¶
CFBundleCopyLocalizationsForURL calls the CoreFoundation framework function CFBundleCopyLocalizationsForURL.
func CFBundleCopyLocalizedString ¶
func CFBundleCopyLocalizedString(bundle obj.Object, key obj.Object, value obj.Object, tableName obj.Object) obj.Object
CFBundleCopyLocalizedString calls the CoreFoundation framework function CFBundleCopyLocalizedString.
func CFBundleCopyLocalizedStringForLocalizations ¶
func CFBundleCopyLocalizedStringForLocalizations(bundle obj.Object, key obj.Object, value obj.Object, tableName obj.Object, localizations obj.Object) obj.Object
CFBundleCopyLocalizedStringForLocalizations calls the CoreFoundation framework function CFBundleCopyLocalizedStringForLocalizations.
func CFBundleCopyPreferredLocalizationsFromArray ¶
CFBundleCopyPreferredLocalizationsFromArray calls the CoreFoundation framework function CFBundleCopyPreferredLocalizationsFromArray.
func CFBundleCopyPrivateFrameworksURL ¶
CFBundleCopyPrivateFrameworksURL calls the CoreFoundation framework function CFBundleCopyPrivateFrameworksURL.
func CFBundleCopyResourceURL ¶
func CFBundleCopyResourceURL(bundle obj.Object, resourceName obj.Object, resourceType obj.Object, subDirName obj.Object) obj.Object
CFBundleCopyResourceURL calls the CoreFoundation framework function CFBundleCopyResourceURL.
func CFBundleCopyResourceURLForLocalization ¶
func CFBundleCopyResourceURLForLocalization(bundle obj.Object, resourceName obj.Object, resourceType obj.Object, subDirName obj.Object, localizationName obj.Object) obj.Object
CFBundleCopyResourceURLForLocalization calls the CoreFoundation framework function CFBundleCopyResourceURLForLocalization.
func CFBundleCopyResourceURLInDirectory ¶
func CFBundleCopyResourceURLInDirectory(bundleURL obj.Object, resourceName obj.Object, resourceType obj.Object, subDirName obj.Object) obj.Object
CFBundleCopyResourceURLInDirectory calls the CoreFoundation framework function CFBundleCopyResourceURLInDirectory.
func CFBundleCopyResourceURLsOfType ¶
func CFBundleCopyResourceURLsOfType(bundle obj.Object, resourceType obj.Object, subDirName obj.Object) obj.Object
CFBundleCopyResourceURLsOfType calls the CoreFoundation framework function CFBundleCopyResourceURLsOfType.
func CFBundleCopyResourceURLsOfTypeForLocalization ¶
func CFBundleCopyResourceURLsOfTypeForLocalization(bundle obj.Object, resourceType obj.Object, subDirName obj.Object, localizationName obj.Object) obj.Object
CFBundleCopyResourceURLsOfTypeForLocalization calls the CoreFoundation framework function CFBundleCopyResourceURLsOfTypeForLocalization.
func CFBundleCopyResourceURLsOfTypeInDirectory ¶
func CFBundleCopyResourceURLsOfTypeInDirectory(bundleURL obj.Object, resourceType obj.Object, subDirName obj.Object) obj.Object
CFBundleCopyResourceURLsOfTypeInDirectory calls the CoreFoundation framework function CFBundleCopyResourceURLsOfTypeInDirectory.
func CFBundleCopyResourcesDirectoryURL ¶
CFBundleCopyResourcesDirectoryURL calls the CoreFoundation framework function CFBundleCopyResourcesDirectoryURL.
func CFBundleCopySharedFrameworksURL ¶
CFBundleCopySharedFrameworksURL calls the CoreFoundation framework function CFBundleCopySharedFrameworksURL.
func CFBundleCopySharedSupportURL ¶
CFBundleCopySharedSupportURL calls the CoreFoundation framework function CFBundleCopySharedSupportURL.
func CFBundleCopySupportFilesDirectoryURL ¶
CFBundleCopySupportFilesDirectoryURL calls the CoreFoundation framework function CFBundleCopySupportFilesDirectoryURL.
func CFBundleCreate ¶
CFBundleCreate calls the CoreFoundation framework function CFBundleCreate.
func CFBundleCreateBundlesFromDirectory ¶
func CFBundleCreateBundlesFromDirectory(allocator obj.Object, directoryURL obj.Object, bundleType obj.Object) obj.Object
CFBundleCreateBundlesFromDirectory calls the CoreFoundation framework function CFBundleCreateBundlesFromDirectory.
func CFBundleGetAllBundles ¶
CFBundleGetAllBundles calls the CoreFoundation framework function CFBundleGetAllBundles.
func CFBundleGetBundleWithIdentifier ¶
CFBundleGetBundleWithIdentifier calls the CoreFoundation framework function CFBundleGetBundleWithIdentifier.
func CFBundleGetDataPointerForName ¶
CFBundleGetDataPointerForName calls the CoreFoundation framework function CFBundleGetDataPointerForName.
func CFBundleGetDataPointersForNames ¶
func CFBundleGetDataPointersForNames(bundle obj.Object, symbolNames obj.Object, stbl unsafe.Pointer)
CFBundleGetDataPointersForNames calls the CoreFoundation framework function CFBundleGetDataPointersForNames.
func CFBundleGetDevelopmentRegion ¶
CFBundleGetDevelopmentRegion calls the CoreFoundation framework function CFBundleGetDevelopmentRegion.
func CFBundleGetFunctionPointerForName ¶
CFBundleGetFunctionPointerForName calls the CoreFoundation framework function CFBundleGetFunctionPointerForName.
func CFBundleGetFunctionPointersForNames ¶
func CFBundleGetFunctionPointersForNames(bundle obj.Object, functionNames obj.Object, ftbl unsafe.Pointer)
CFBundleGetFunctionPointersForNames calls the CoreFoundation framework function CFBundleGetFunctionPointersForNames.
func CFBundleGetIdentifier ¶
CFBundleGetIdentifier calls the CoreFoundation framework function CFBundleGetIdentifier.
func CFBundleGetInfoDictionary ¶
CFBundleGetInfoDictionary calls the CoreFoundation framework function CFBundleGetInfoDictionary.
func CFBundleGetLocalInfoDictionary ¶
CFBundleGetLocalInfoDictionary calls the CoreFoundation framework function CFBundleGetLocalInfoDictionary.
func CFBundleGetMainBundle ¶
CFBundleGetMainBundle calls the CoreFoundation framework function CFBundleGetMainBundle.
func CFBundleGetPackageInfo ¶
CFBundleGetPackageInfo calls the CoreFoundation framework function CFBundleGetPackageInfo.
func CFBundleGetPackageInfoInDirectory ¶
func CFBundleGetPackageInfoInDirectory(url obj.Object) (result uint8, packageType int, packageCreator int)
CFBundleGetPackageInfoInDirectory calls the CoreFoundation framework function CFBundleGetPackageInfoInDirectory.
func CFBundleGetPlugIn ¶
CFBundleGetPlugIn calls the CoreFoundation framework function CFBundleGetPlugIn.
func CFBundleGetTypeID ¶
func CFBundleGetTypeID() int
CFBundleGetTypeID calls the CoreFoundation framework function CFBundleGetTypeID.
func CFBundleGetValueForInfoDictionaryKey ¶
CFBundleGetValueForInfoDictionaryKey calls the CoreFoundation framework function CFBundleGetValueForInfoDictionaryKey.
func CFBundleGetVersionNumber ¶
CFBundleGetVersionNumber calls the CoreFoundation framework function CFBundleGetVersionNumber.
func CFBundleIsArchitectureLoadable ¶
CFBundleIsArchitectureLoadable calls the CoreFoundation framework function CFBundleIsArchitectureLoadable.
func CFBundleIsExecutableLoadable ¶
CFBundleIsExecutableLoadable calls the CoreFoundation framework function CFBundleIsExecutableLoadable.
func CFBundleIsExecutableLoadableForURL ¶
CFBundleIsExecutableLoadableForURL calls the CoreFoundation framework function CFBundleIsExecutableLoadableForURL.
func CFBundleIsExecutableLoaded ¶
CFBundleIsExecutableLoaded calls the CoreFoundation framework function CFBundleIsExecutableLoaded.
func CFBundleLoadExecutable ¶
CFBundleLoadExecutable calls the CoreFoundation framework function CFBundleLoadExecutable.
func CFBundleOpenBundleResourceFiles ¶
func CFBundleOpenBundleResourceFiles(bundle obj.Object) (result int, refNum int, localizedRefNum int)
CFBundleOpenBundleResourceFiles calls the CoreFoundation framework function CFBundleOpenBundleResourceFiles.
func CFBundleOpenBundleResourceMap ¶
CFBundleOpenBundleResourceMap calls the CoreFoundation framework function CFBundleOpenBundleResourceMap.
func CFBundleUnloadExecutable ¶
CFBundleUnloadExecutable calls the CoreFoundation framework function CFBundleUnloadExecutable.
func CFByteOrderGetCurrent ¶
func CFByteOrderGetCurrent() int
CFByteOrderGetCurrent calls the CoreFoundation framework function CFByteOrderGetCurrent.
func CFCalendarCopyCurrent ¶
CFCalendarCopyCurrent calls the CoreFoundation framework function CFCalendarCopyCurrent.
func CFCalendarCopyLocale ¶
CFCalendarCopyLocale calls the CoreFoundation framework function CFCalendarCopyLocale.
func CFCalendarCopyTimeZone ¶
CFCalendarCopyTimeZone calls the CoreFoundation framework function CFCalendarCopyTimeZone.
func CFCalendarCreateWithIdentifier ¶
CFCalendarCreateWithIdentifier calls the CoreFoundation framework function CFCalendarCreateWithIdentifier.
func CFCalendarGetFirstWeekday ¶
CFCalendarGetFirstWeekday calls the CoreFoundation framework function CFCalendarGetFirstWeekday.
func CFCalendarGetIdentifier ¶
CFCalendarGetIdentifier calls the CoreFoundation framework function CFCalendarGetIdentifier.
func CFCalendarGetMaximumRangeOfUnit ¶
func CFCalendarGetMaximumRangeOfUnit(calendar obj.Object, unit CFCalendarUnit) unsafe.Pointer
CFCalendarGetMaximumRangeOfUnit calls the CoreFoundation framework function CFCalendarGetMaximumRangeOfUnit.
func CFCalendarGetMinimumDaysInFirstWeek ¶
CFCalendarGetMinimumDaysInFirstWeek calls the CoreFoundation framework function CFCalendarGetMinimumDaysInFirstWeek.
func CFCalendarGetMinimumRangeOfUnit ¶
func CFCalendarGetMinimumRangeOfUnit(calendar obj.Object, unit CFCalendarUnit) unsafe.Pointer
CFCalendarGetMinimumRangeOfUnit calls the CoreFoundation framework function CFCalendarGetMinimumRangeOfUnit.
func CFCalendarGetOrdinalityOfUnit ¶
func CFCalendarGetOrdinalityOfUnit(calendar obj.Object, smallerUnit CFCalendarUnit, biggerUnit CFCalendarUnit, at float64) int
CFCalendarGetOrdinalityOfUnit calls the CoreFoundation framework function CFCalendarGetOrdinalityOfUnit.
func CFCalendarGetRangeOfUnit ¶
func CFCalendarGetRangeOfUnit(calendar obj.Object, smallerUnit CFCalendarUnit, biggerUnit CFCalendarUnit, at float64) unsafe.Pointer
CFCalendarGetRangeOfUnit calls the CoreFoundation framework function CFCalendarGetRangeOfUnit.
func CFCalendarGetTimeRangeOfUnit ¶
func CFCalendarGetTimeRangeOfUnit(calendar obj.Object, unit CFCalendarUnit, at float64) (result uint8, startp float64, tip float64)
CFCalendarGetTimeRangeOfUnit calls the CoreFoundation framework function CFCalendarGetTimeRangeOfUnit.
func CFCalendarGetTypeID ¶
func CFCalendarGetTypeID() int
CFCalendarGetTypeID calls the CoreFoundation framework function CFCalendarGetTypeID.
func CFCalendarSetFirstWeekday ¶
CFCalendarSetFirstWeekday calls the CoreFoundation framework function CFCalendarSetFirstWeekday.
func CFCalendarSetLocale ¶
CFCalendarSetLocale calls the CoreFoundation framework function CFCalendarSetLocale.
func CFCalendarSetMinimumDaysInFirstWeek ¶
CFCalendarSetMinimumDaysInFirstWeek calls the CoreFoundation framework function CFCalendarSetMinimumDaysInFirstWeek.
func CFCalendarSetTimeZone ¶
CFCalendarSetTimeZone calls the CoreFoundation framework function CFCalendarSetTimeZone.
func CFCharacterSetAddCharactersInRange ¶
CFCharacterSetAddCharactersInRange calls the CoreFoundation framework function CFCharacterSetAddCharactersInRange.
func CFCharacterSetAddCharactersInString ¶
CFCharacterSetAddCharactersInString calls the CoreFoundation framework function CFCharacterSetAddCharactersInString.
func CFCharacterSetCreateBitmapRepresentation ¶
CFCharacterSetCreateBitmapRepresentation calls the CoreFoundation framework function CFCharacterSetCreateBitmapRepresentation.
func CFCharacterSetCreateCopy ¶
CFCharacterSetCreateCopy calls the CoreFoundation framework function CFCharacterSetCreateCopy.
func CFCharacterSetCreateInvertedSet ¶
CFCharacterSetCreateInvertedSet calls the CoreFoundation framework function CFCharacterSetCreateInvertedSet.
func CFCharacterSetCreateMutable ¶
CFCharacterSetCreateMutable calls the CoreFoundation framework function CFCharacterSetCreateMutable.
func CFCharacterSetCreateMutableCopy ¶
CFCharacterSetCreateMutableCopy calls the CoreFoundation framework function CFCharacterSetCreateMutableCopy.
func CFCharacterSetCreateWithBitmapRepresentation ¶
CFCharacterSetCreateWithBitmapRepresentation calls the CoreFoundation framework function CFCharacterSetCreateWithBitmapRepresentation.
func CFCharacterSetCreateWithCharactersInRange ¶
func CFCharacterSetCreateWithCharactersInRange(alloc obj.Object, theRange unsafe.Pointer) obj.Object
CFCharacterSetCreateWithCharactersInRange calls the CoreFoundation framework function CFCharacterSetCreateWithCharactersInRange.
func CFCharacterSetCreateWithCharactersInString ¶
CFCharacterSetCreateWithCharactersInString calls the CoreFoundation framework function CFCharacterSetCreateWithCharactersInString.
func CFCharacterSetGetPredefined ¶
func CFCharacterSetGetPredefined(theSetIdentifier CFCharacterSetPredefinedSet) obj.Object
CFCharacterSetGetPredefined calls the CoreFoundation framework function CFCharacterSetGetPredefined.
func CFCharacterSetGetTypeID ¶
func CFCharacterSetGetTypeID() int
CFCharacterSetGetTypeID calls the CoreFoundation framework function CFCharacterSetGetTypeID.
func CFCharacterSetHasMemberInPlane ¶
CFCharacterSetHasMemberInPlane calls the CoreFoundation framework function CFCharacterSetHasMemberInPlane.
func CFCharacterSetIntersect ¶
CFCharacterSetIntersect calls the CoreFoundation framework function CFCharacterSetIntersect.
func CFCharacterSetInvert ¶
CFCharacterSetInvert calls the CoreFoundation framework function CFCharacterSetInvert.
func CFCharacterSetIsCharacterMember ¶
CFCharacterSetIsCharacterMember calls the CoreFoundation framework function CFCharacterSetIsCharacterMember.
func CFCharacterSetIsLongCharacterMember ¶
CFCharacterSetIsLongCharacterMember calls the CoreFoundation framework function CFCharacterSetIsLongCharacterMember.
func CFCharacterSetIsSupersetOfSet ¶
CFCharacterSetIsSupersetOfSet calls the CoreFoundation framework function CFCharacterSetIsSupersetOfSet.
func CFCharacterSetRemoveCharactersInRange ¶
CFCharacterSetRemoveCharactersInRange calls the CoreFoundation framework function CFCharacterSetRemoveCharactersInRange.
func CFCharacterSetRemoveCharactersInString ¶
CFCharacterSetRemoveCharactersInString calls the CoreFoundation framework function CFCharacterSetRemoveCharactersInString.
func CFCharacterSetUnion ¶
CFCharacterSetUnion calls the CoreFoundation framework function CFCharacterSetUnion.
func CFConvertDoubleHostToSwapped ¶
CFConvertDoubleHostToSwapped calls the CoreFoundation framework function CFConvertDoubleHostToSwapped.
func CFConvertDoubleSwappedToHost ¶
CFConvertDoubleSwappedToHost calls the CoreFoundation framework function CFConvertDoubleSwappedToHost.
func CFConvertFloat32HostToSwapped ¶
CFConvertFloat32HostToSwapped calls the CoreFoundation framework function CFConvertFloat32HostToSwapped.
func CFConvertFloat32SwappedToHost ¶
CFConvertFloat32SwappedToHost calls the CoreFoundation framework function CFConvertFloat32SwappedToHost.
func CFConvertFloat64HostToSwapped ¶
CFConvertFloat64HostToSwapped calls the CoreFoundation framework function CFConvertFloat64HostToSwapped.
func CFConvertFloat64SwappedToHost ¶
CFConvertFloat64SwappedToHost calls the CoreFoundation framework function CFConvertFloat64SwappedToHost.
func CFConvertFloatHostToSwapped ¶
CFConvertFloatHostToSwapped calls the CoreFoundation framework function CFConvertFloatHostToSwapped.
func CFConvertFloatSwappedToHost ¶
CFConvertFloatSwappedToHost calls the CoreFoundation framework function CFConvertFloatSwappedToHost.
func CFCopyDescription ¶
CFCopyDescription calls the CoreFoundation framework function CFCopyDescription.
func CFCopyTypeIDDescription ¶
CFCopyTypeIDDescription calls the CoreFoundation framework function CFCopyTypeIDDescription.
func CFDataAppendBytes ¶
CFDataAppendBytes calls the CoreFoundation framework function CFDataAppendBytes.
func CFDataCreate ¶
CFDataCreate calls the CoreFoundation framework function CFDataCreate.
func CFDataCreateCopy ¶
CFDataCreateCopy calls the CoreFoundation framework function CFDataCreateCopy.
func CFDataCreateMutable ¶
CFDataCreateMutable calls the CoreFoundation framework function CFDataCreateMutable.
func CFDataCreateMutableCopy ¶
CFDataCreateMutableCopy calls the CoreFoundation framework function CFDataCreateMutableCopy.
func CFDataCreateWithBytesNoCopy ¶
func CFDataCreateWithBytesNoCopy(allocator obj.Object, data unsafe.Pointer, length int, bytesDeallocator obj.Object) obj.Object
CFDataCreateWithBytesNoCopy calls the CoreFoundation framework function CFDataCreateWithBytesNoCopy.
func CFDataDeleteBytes ¶
CFDataDeleteBytes calls the CoreFoundation framework function CFDataDeleteBytes.
func CFDataFind ¶
func CFDataFind(theData obj.Object, dataToFind obj.Object, searchRange unsafe.Pointer, compareOptions CFDataSearchFlags) unsafe.Pointer
CFDataFind calls the CoreFoundation framework function CFDataFind.
func CFDataGetBytePtr ¶
CFDataGetBytePtr calls the CoreFoundation framework function CFDataGetBytePtr.
func CFDataGetBytes ¶
CFDataGetBytes calls the CoreFoundation framework function CFDataGetBytes.
func CFDataGetLength ¶
CFDataGetLength calls the CoreFoundation framework function CFDataGetLength.
func CFDataGetMutableBytePtr ¶
CFDataGetMutableBytePtr calls the CoreFoundation framework function CFDataGetMutableBytePtr.
func CFDataGetTypeID ¶
func CFDataGetTypeID() int
CFDataGetTypeID calls the CoreFoundation framework function CFDataGetTypeID.
func CFDataIncreaseLength ¶
CFDataIncreaseLength calls the CoreFoundation framework function CFDataIncreaseLength.
func CFDataReplaceBytes ¶
CFDataReplaceBytes calls the CoreFoundation framework function CFDataReplaceBytes.
func CFDataSetLength ¶
CFDataSetLength calls the CoreFoundation framework function CFDataSetLength.
func CFDateCreate ¶
CFDateCreate calls the CoreFoundation framework function CFDateCreate.
func CFDateFormatterCopyProperty ¶
CFDateFormatterCopyProperty calls the CoreFoundation framework function CFDateFormatterCopyProperty.
func CFDateFormatterCreate ¶
func CFDateFormatterCreate(allocator obj.Object, locale obj.Object, dateStyle CFDateFormatterStyle, timeStyle CFDateFormatterStyle) obj.Object
CFDateFormatterCreate calls the CoreFoundation framework function CFDateFormatterCreate.
func CFDateFormatterCreateDateFormatFromTemplate ¶
func CFDateFormatterCreateDateFormatFromTemplate(allocator obj.Object, tmplate obj.Object, options int, locale obj.Object) obj.Object
CFDateFormatterCreateDateFormatFromTemplate calls the CoreFoundation framework function CFDateFormatterCreateDateFormatFromTemplate.
func CFDateFormatterCreateISO8601Formatter ¶
func CFDateFormatterCreateISO8601Formatter(allocator obj.Object, formatOptions CFISO8601DateFormatOptions) obj.Object
CFDateFormatterCreateISO8601Formatter calls the CoreFoundation framework function CFDateFormatterCreateISO8601Formatter.
func CFDateFormatterCreateStringWithAbsoluteTime ¶
func CFDateFormatterCreateStringWithAbsoluteTime(allocator obj.Object, formatter obj.Object, at float64) obj.Object
CFDateFormatterCreateStringWithAbsoluteTime calls the CoreFoundation framework function CFDateFormatterCreateStringWithAbsoluteTime.
func CFDateFormatterCreateStringWithDate ¶
func CFDateFormatterCreateStringWithDate(allocator obj.Object, formatter obj.Object, date obj.Object) obj.Object
CFDateFormatterCreateStringWithDate calls the CoreFoundation framework function CFDateFormatterCreateStringWithDate.
func CFDateFormatterGetFormat ¶
CFDateFormatterGetFormat calls the CoreFoundation framework function CFDateFormatterGetFormat.
func CFDateFormatterGetLocale ¶
CFDateFormatterGetLocale calls the CoreFoundation framework function CFDateFormatterGetLocale.
func CFDateFormatterGetTypeID ¶
func CFDateFormatterGetTypeID() int
CFDateFormatterGetTypeID calls the CoreFoundation framework function CFDateFormatterGetTypeID.
func CFDateFormatterSetFormat ¶
CFDateFormatterSetFormat calls the CoreFoundation framework function CFDateFormatterSetFormat.
func CFDateFormatterSetProperty ¶
CFDateFormatterSetProperty calls the CoreFoundation framework function CFDateFormatterSetProperty.
func CFDateGetAbsoluteTime ¶
CFDateGetAbsoluteTime calls the CoreFoundation framework function CFDateGetAbsoluteTime.
func CFDateGetTimeIntervalSinceDate ¶
CFDateGetTimeIntervalSinceDate calls the CoreFoundation framework function CFDateGetTimeIntervalSinceDate.
func CFDateGetTypeID ¶
func CFDateGetTypeID() int
CFDateGetTypeID calls the CoreFoundation framework function CFDateGetTypeID.
func CFDictionaryAddValue ¶
CFDictionaryAddValue calls the CoreFoundation framework function CFDictionaryAddValue.
func CFDictionaryApplyFunction ¶
CFDictionaryApplyFunction calls the CoreFoundation framework function CFDictionaryApplyFunction.
func CFDictionaryContainsKey ¶
CFDictionaryContainsKey calls the CoreFoundation framework function CFDictionaryContainsKey.
func CFDictionaryContainsValue ¶
CFDictionaryContainsValue calls the CoreFoundation framework function CFDictionaryContainsValue.
func CFDictionaryCreate ¶
func CFDictionaryCreate(allocator obj.Object, keys unsafe.Pointer, values unsafe.Pointer, numValues int, keyCallBacks unsafe.Pointer, valueCallBacks unsafe.Pointer) obj.Object
CFDictionaryCreate calls the CoreFoundation framework function CFDictionaryCreate.
func CFDictionaryCreateCopy ¶
CFDictionaryCreateCopy calls the CoreFoundation framework function CFDictionaryCreateCopy.
func CFDictionaryCreateMutable ¶
func CFDictionaryCreateMutable(allocator obj.Object, capacity int, keyCallBacks unsafe.Pointer, valueCallBacks unsafe.Pointer) obj.Object
CFDictionaryCreateMutable calls the CoreFoundation framework function CFDictionaryCreateMutable.
func CFDictionaryCreateMutableCopy ¶
func CFDictionaryCreateMutableCopy(allocator obj.Object, capacity int, theDict obj.Object) obj.Object
CFDictionaryCreateMutableCopy calls the CoreFoundation framework function CFDictionaryCreateMutableCopy.
func CFDictionaryGetCount ¶
CFDictionaryGetCount calls the CoreFoundation framework function CFDictionaryGetCount.
func CFDictionaryGetCountOfKey ¶
CFDictionaryGetCountOfKey calls the CoreFoundation framework function CFDictionaryGetCountOfKey.
func CFDictionaryGetCountOfValue ¶
CFDictionaryGetCountOfValue calls the CoreFoundation framework function CFDictionaryGetCountOfValue.
func CFDictionaryGetKeysAndValues ¶
CFDictionaryGetKeysAndValues calls the CoreFoundation framework function CFDictionaryGetKeysAndValues.
func CFDictionaryGetTypeID ¶
func CFDictionaryGetTypeID() int
CFDictionaryGetTypeID calls the CoreFoundation framework function CFDictionaryGetTypeID.
func CFDictionaryGetValue ¶
CFDictionaryGetValue calls the CoreFoundation framework function CFDictionaryGetValue.
func CFDictionaryGetValueIfPresent ¶
func CFDictionaryGetValueIfPresent(theDict obj.Object, key unsafe.Pointer, value unsafe.Pointer) uint8
CFDictionaryGetValueIfPresent calls the CoreFoundation framework function CFDictionaryGetValueIfPresent.
func CFDictionaryRemoveAllValues ¶
CFDictionaryRemoveAllValues calls the CoreFoundation framework function CFDictionaryRemoveAllValues.
func CFDictionaryRemoveValue ¶
CFDictionaryRemoveValue calls the CoreFoundation framework function CFDictionaryRemoveValue.
func CFDictionaryReplaceValue ¶
CFDictionaryReplaceValue calls the CoreFoundation framework function CFDictionaryReplaceValue.
func CFDictionarySetValue ¶
CFDictionarySetValue calls the CoreFoundation framework function CFDictionarySetValue.
func CFErrorCopyDescription ¶
CFErrorCopyDescription calls the CoreFoundation framework function CFErrorCopyDescription.
func CFErrorCopyFailureReason ¶
CFErrorCopyFailureReason calls the CoreFoundation framework function CFErrorCopyFailureReason.
func CFErrorCopyRecoverySuggestion ¶
CFErrorCopyRecoverySuggestion calls the CoreFoundation framework function CFErrorCopyRecoverySuggestion.
func CFErrorCopyUserInfo ¶
CFErrorCopyUserInfo calls the CoreFoundation framework function CFErrorCopyUserInfo.
func CFErrorCreate ¶
func CFErrorCreate(allocator obj.Object, domain unsafe.Pointer, code int, userInfo obj.Object) obj.Object
CFErrorCreate calls the CoreFoundation framework function CFErrorCreate.
func CFErrorCreateWithUserInfoKeysAndValues ¶
func CFErrorCreateWithUserInfoKeysAndValues(allocator obj.Object, domain unsafe.Pointer, code int, userInfoKeys unsafe.Pointer, userInfoValues unsafe.Pointer, numUserInfoValues int) obj.Object
CFErrorCreateWithUserInfoKeysAndValues calls the CoreFoundation framework function CFErrorCreateWithUserInfoKeysAndValues.
func CFErrorGetCode ¶
CFErrorGetCode calls the CoreFoundation framework function CFErrorGetCode.
func CFErrorGetDomain ¶
CFErrorGetDomain calls the CoreFoundation framework function CFErrorGetDomain.
func CFErrorGetTypeID ¶
func CFErrorGetTypeID() int
CFErrorGetTypeID calls the CoreFoundation framework function CFErrorGetTypeID.
func CFFileDescriptorCreate ¶
func CFFileDescriptorCreate(allocator obj.Object, fd int, closeOnInvalidate uint8, callout unsafe.Pointer, context_ unsafe.Pointer) obj.Object
CFFileDescriptorCreate calls the CoreFoundation framework function CFFileDescriptorCreate.
func CFFileDescriptorCreateRunLoopSource ¶
CFFileDescriptorCreateRunLoopSource calls the CoreFoundation framework function CFFileDescriptorCreateRunLoopSource.
func CFFileDescriptorDisableCallBacks ¶
CFFileDescriptorDisableCallBacks calls the CoreFoundation framework function CFFileDescriptorDisableCallBacks.
func CFFileDescriptorEnableCallBacks ¶
CFFileDescriptorEnableCallBacks calls the CoreFoundation framework function CFFileDescriptorEnableCallBacks.
func CFFileDescriptorGetContext ¶
CFFileDescriptorGetContext calls the CoreFoundation framework function CFFileDescriptorGetContext.
func CFFileDescriptorGetNativeDescriptor ¶
CFFileDescriptorGetNativeDescriptor calls the CoreFoundation framework function CFFileDescriptorGetNativeDescriptor.
func CFFileDescriptorGetTypeID ¶
func CFFileDescriptorGetTypeID() int
CFFileDescriptorGetTypeID calls the CoreFoundation framework function CFFileDescriptorGetTypeID.
func CFFileDescriptorInvalidate ¶
CFFileDescriptorInvalidate calls the CoreFoundation framework function CFFileDescriptorInvalidate.
func CFFileDescriptorIsValid ¶
CFFileDescriptorIsValid calls the CoreFoundation framework function CFFileDescriptorIsValid.
func CFFileSecurityClearProperties ¶
func CFFileSecurityClearProperties(fileSec obj.Object, clearPropertyMask CFFileSecurityClearOptions) uint8
CFFileSecurityClearProperties calls the CoreFoundation framework function CFFileSecurityClearProperties.
func CFFileSecurityCopyAccessControlList ¶
func CFFileSecurityCopyAccessControlList(fileSec obj.Object, accessControlList unsafe.Pointer) uint8
CFFileSecurityCopyAccessControlList calls the CoreFoundation framework function CFFileSecurityCopyAccessControlList.
func CFFileSecurityCopyGroupUUID ¶
CFFileSecurityCopyGroupUUID calls the CoreFoundation framework function CFFileSecurityCopyGroupUUID.
func CFFileSecurityCopyOwnerUUID ¶
CFFileSecurityCopyOwnerUUID calls the CoreFoundation framework function CFFileSecurityCopyOwnerUUID.
func CFFileSecurityCreate ¶
CFFileSecurityCreate calls the CoreFoundation framework function CFFileSecurityCreate.
func CFFileSecurityCreateCopy ¶
CFFileSecurityCreateCopy calls the CoreFoundation framework function CFFileSecurityCreateCopy.
func CFFileSecurityGetGroup ¶
CFFileSecurityGetGroup calls the CoreFoundation framework function CFFileSecurityGetGroup.
func CFFileSecurityGetMode ¶
CFFileSecurityGetMode calls the CoreFoundation framework function CFFileSecurityGetMode.
func CFFileSecurityGetOwner ¶
CFFileSecurityGetOwner calls the CoreFoundation framework function CFFileSecurityGetOwner.
func CFFileSecurityGetTypeID ¶
func CFFileSecurityGetTypeID() int
CFFileSecurityGetTypeID calls the CoreFoundation framework function CFFileSecurityGetTypeID.
func CFFileSecuritySetAccessControlList ¶
CFFileSecuritySetAccessControlList calls the CoreFoundation framework function CFFileSecuritySetAccessControlList.
func CFFileSecuritySetGroup ¶
CFFileSecuritySetGroup calls the CoreFoundation framework function CFFileSecuritySetGroup.
func CFFileSecuritySetGroupUUID ¶
CFFileSecuritySetGroupUUID calls the CoreFoundation framework function CFFileSecuritySetGroupUUID.
func CFFileSecuritySetMode ¶
CFFileSecuritySetMode calls the CoreFoundation framework function CFFileSecuritySetMode.
func CFFileSecuritySetOwner ¶
CFFileSecuritySetOwner calls the CoreFoundation framework function CFFileSecuritySetOwner.
func CFFileSecuritySetOwnerUUID ¶
CFFileSecuritySetOwnerUUID calls the CoreFoundation framework function CFFileSecuritySetOwnerUUID.
func CFGetAllocator ¶
CFGetAllocator calls the CoreFoundation framework function CFGetAllocator.
func CFGetRetainCount ¶
CFGetRetainCount calls the CoreFoundation framework function CFGetRetainCount.
func CFGetTypeID ¶
CFGetTypeID calls the CoreFoundation framework function CFGetTypeID.
func CFGregorianDateGetAbsoluteTime ¶
CFGregorianDateGetAbsoluteTime calls the CoreFoundation framework function CFGregorianDateGetAbsoluteTime.
func CFGregorianDateIsValid ¶
CFGregorianDateIsValid calls the CoreFoundation framework function CFGregorianDateIsValid.
func CFLocaleCopyAvailableLocaleIdentifiers ¶
CFLocaleCopyAvailableLocaleIdentifiers calls the CoreFoundation framework function CFLocaleCopyAvailableLocaleIdentifiers.
func CFLocaleCopyCommonISOCurrencyCodes ¶
CFLocaleCopyCommonISOCurrencyCodes calls the CoreFoundation framework function CFLocaleCopyCommonISOCurrencyCodes.
func CFLocaleCopyCurrent ¶
CFLocaleCopyCurrent calls the CoreFoundation framework function CFLocaleCopyCurrent.
func CFLocaleCopyDisplayNameForPropertyValue ¶
func CFLocaleCopyDisplayNameForPropertyValue(displayLocale obj.Object, key unsafe.Pointer, value obj.Object) obj.Object
CFLocaleCopyDisplayNameForPropertyValue calls the CoreFoundation framework function CFLocaleCopyDisplayNameForPropertyValue.
func CFLocaleCopyISOCountryCodes ¶
CFLocaleCopyISOCountryCodes calls the CoreFoundation framework function CFLocaleCopyISOCountryCodes.
func CFLocaleCopyISOCurrencyCodes ¶
CFLocaleCopyISOCurrencyCodes calls the CoreFoundation framework function CFLocaleCopyISOCurrencyCodes.
func CFLocaleCopyISOLanguageCodes ¶
CFLocaleCopyISOLanguageCodes calls the CoreFoundation framework function CFLocaleCopyISOLanguageCodes.
func CFLocaleCopyPreferredLanguages ¶
CFLocaleCopyPreferredLanguages calls the CoreFoundation framework function CFLocaleCopyPreferredLanguages.
func CFLocaleCreate ¶
CFLocaleCreate calls the CoreFoundation framework function CFLocaleCreate.
func CFLocaleCreateCanonicalLanguageIdentifierFromString ¶
func CFLocaleCreateCanonicalLanguageIdentifierFromString(allocator obj.Object, localeIdentifier obj.Object) unsafe.Pointer
CFLocaleCreateCanonicalLanguageIdentifierFromString calls the CoreFoundation framework function CFLocaleCreateCanonicalLanguageIdentifierFromString.
func CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes ¶
func CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes(allocator obj.Object, lcode int16, rcode int16) unsafe.Pointer
CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes calls the CoreFoundation framework function CFLocaleCreateCanonicalLocaleIdentifierFromScriptManagerCodes.
func CFLocaleCreateCanonicalLocaleIdentifierFromString ¶
func CFLocaleCreateCanonicalLocaleIdentifierFromString(allocator obj.Object, localeIdentifier obj.Object) unsafe.Pointer
CFLocaleCreateCanonicalLocaleIdentifierFromString calls the CoreFoundation framework function CFLocaleCreateCanonicalLocaleIdentifierFromString.
func CFLocaleCreateComponentsFromLocaleIdentifier ¶
func CFLocaleCreateComponentsFromLocaleIdentifier(allocator obj.Object, localeID unsafe.Pointer) obj.Object
CFLocaleCreateComponentsFromLocaleIdentifier calls the CoreFoundation framework function CFLocaleCreateComponentsFromLocaleIdentifier.
func CFLocaleCreateCopy ¶
CFLocaleCreateCopy calls the CoreFoundation framework function CFLocaleCreateCopy.
func CFLocaleCreateLocaleIdentifierFromComponents ¶
func CFLocaleCreateLocaleIdentifierFromComponents(allocator obj.Object, dictionary obj.Object) unsafe.Pointer
CFLocaleCreateLocaleIdentifierFromComponents calls the CoreFoundation framework function CFLocaleCreateLocaleIdentifierFromComponents.
func CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode ¶
func CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode(allocator obj.Object, lcid uint32) unsafe.Pointer
CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode calls the CoreFoundation framework function CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode.
func CFLocaleGetIdentifier ¶
CFLocaleGetIdentifier calls the CoreFoundation framework function CFLocaleGetIdentifier.
func CFLocaleGetSystem ¶
CFLocaleGetSystem calls the CoreFoundation framework function CFLocaleGetSystem.
func CFLocaleGetTypeID ¶
func CFLocaleGetTypeID() int
CFLocaleGetTypeID calls the CoreFoundation framework function CFLocaleGetTypeID.
func CFLocaleGetValue ¶
CFLocaleGetValue calls the CoreFoundation framework function CFLocaleGetValue.
func CFLocaleGetWindowsLocaleCodeFromLocaleIdentifier ¶
CFLocaleGetWindowsLocaleCodeFromLocaleIdentifier calls the CoreFoundation framework function CFLocaleGetWindowsLocaleCodeFromLocaleIdentifier.
func CFMachPortCreate ¶
func CFMachPortCreate(allocator obj.Object, callout unsafe.Pointer, context_ unsafe.Pointer) (result obj.Object, shouldFreeInfo uint8)
CFMachPortCreate calls the CoreFoundation framework function CFMachPortCreate.
func CFMachPortCreateRunLoopSource ¶
CFMachPortCreateRunLoopSource calls the CoreFoundation framework function CFMachPortCreateRunLoopSource.
func CFMachPortCreateWithPort ¶
func CFMachPortCreateWithPort(allocator obj.Object, portNum int, callout unsafe.Pointer, context_ unsafe.Pointer) (result obj.Object, shouldFreeInfo uint8)
CFMachPortCreateWithPort calls the CoreFoundation framework function CFMachPortCreateWithPort.
func CFMachPortGetContext ¶
CFMachPortGetContext calls the CoreFoundation framework function CFMachPortGetContext.
func CFMachPortGetInvalidationCallBack ¶
CFMachPortGetInvalidationCallBack calls the CoreFoundation framework function CFMachPortGetInvalidationCallBack.
func CFMachPortGetPort ¶
CFMachPortGetPort calls the CoreFoundation framework function CFMachPortGetPort.
func CFMachPortGetTypeID ¶
func CFMachPortGetTypeID() int
CFMachPortGetTypeID calls the CoreFoundation framework function CFMachPortGetTypeID.
func CFMachPortInvalidate ¶
CFMachPortInvalidate calls the CoreFoundation framework function CFMachPortInvalidate.
func CFMachPortIsValid ¶
CFMachPortIsValid calls the CoreFoundation framework function CFMachPortIsValid.
func CFMachPortSetInvalidationCallBack ¶
CFMachPortSetInvalidationCallBack calls the CoreFoundation framework function CFMachPortSetInvalidationCallBack.
func CFMakeCollectable ¶
CFMakeCollectable calls the CoreFoundation framework function CFMakeCollectable.
func CFMessagePortCreateLocal ¶
func CFMessagePortCreateLocal(allocator obj.Object, name obj.Object, callout unsafe.Pointer, context_ unsafe.Pointer) (result obj.Object, shouldFreeInfo uint8)
CFMessagePortCreateLocal calls the CoreFoundation framework function CFMessagePortCreateLocal.
func CFMessagePortCreateRemote ¶
CFMessagePortCreateRemote calls the CoreFoundation framework function CFMessagePortCreateRemote.
func CFMessagePortCreateRunLoopSource ¶
CFMessagePortCreateRunLoopSource calls the CoreFoundation framework function CFMessagePortCreateRunLoopSource.
func CFMessagePortGetContext ¶
CFMessagePortGetContext calls the CoreFoundation framework function CFMessagePortGetContext.
func CFMessagePortGetInvalidationCallBack ¶
CFMessagePortGetInvalidationCallBack calls the CoreFoundation framework function CFMessagePortGetInvalidationCallBack.
func CFMessagePortGetName ¶
CFMessagePortGetName calls the CoreFoundation framework function CFMessagePortGetName.
func CFMessagePortGetTypeID ¶
func CFMessagePortGetTypeID() int
CFMessagePortGetTypeID calls the CoreFoundation framework function CFMessagePortGetTypeID.
func CFMessagePortInvalidate ¶
CFMessagePortInvalidate calls the CoreFoundation framework function CFMessagePortInvalidate.
func CFMessagePortIsRemote ¶
CFMessagePortIsRemote calls the CoreFoundation framework function CFMessagePortIsRemote.
func CFMessagePortIsValid ¶
CFMessagePortIsValid calls the CoreFoundation framework function CFMessagePortIsValid.
func CFMessagePortSendRequest ¶
func CFMessagePortSendRequest(remote obj.Object, msgid int, data obj.Object, sendTimeout float64, rcvTimeout float64, replyMode obj.Object, returnData unsafe.Pointer) int
CFMessagePortSendRequest calls the CoreFoundation framework function CFMessagePortSendRequest.
func CFMessagePortSetDispatchQueue ¶
CFMessagePortSetDispatchQueue calls the CoreFoundation framework function CFMessagePortSetDispatchQueue.
func CFMessagePortSetInvalidationCallBack ¶
CFMessagePortSetInvalidationCallBack calls the CoreFoundation framework function CFMessagePortSetInvalidationCallBack.
func CFMessagePortSetName ¶
CFMessagePortSetName calls the CoreFoundation framework function CFMessagePortSetName.
func CFNotificationCenterAddObserver ¶
func CFNotificationCenterAddObserver(center obj.Object, observer unsafe.Pointer, callBack unsafe.Pointer, name obj.Object, object unsafe.Pointer, suspensionBehavior CFNotificationSuspensionBehavior)
CFNotificationCenterAddObserver calls the CoreFoundation framework function CFNotificationCenterAddObserver.
func CFNotificationCenterGetDarwinNotifyCenter ¶
CFNotificationCenterGetDarwinNotifyCenter calls the CoreFoundation framework function CFNotificationCenterGetDarwinNotifyCenter.
func CFNotificationCenterGetDistributedCenter ¶
CFNotificationCenterGetDistributedCenter calls the CoreFoundation framework function CFNotificationCenterGetDistributedCenter.
func CFNotificationCenterGetLocalCenter ¶
CFNotificationCenterGetLocalCenter calls the CoreFoundation framework function CFNotificationCenterGetLocalCenter.
func CFNotificationCenterGetTypeID ¶
func CFNotificationCenterGetTypeID() int
CFNotificationCenterGetTypeID calls the CoreFoundation framework function CFNotificationCenterGetTypeID.
func CFNotificationCenterPostNotification ¶
func CFNotificationCenterPostNotification(center obj.Object, name unsafe.Pointer, object unsafe.Pointer, userInfo obj.Object, deliverImmediately uint8)
CFNotificationCenterPostNotification calls the CoreFoundation framework function CFNotificationCenterPostNotification.
func CFNotificationCenterPostNotificationWithOptions ¶
func CFNotificationCenterPostNotificationWithOptions(center obj.Object, name unsafe.Pointer, object unsafe.Pointer, userInfo obj.Object, options int)
CFNotificationCenterPostNotificationWithOptions calls the CoreFoundation framework function CFNotificationCenterPostNotificationWithOptions.
func CFNotificationCenterRemoveEveryObserver ¶
CFNotificationCenterRemoveEveryObserver calls the CoreFoundation framework function CFNotificationCenterRemoveEveryObserver.
func CFNotificationCenterRemoveObserver ¶
func CFNotificationCenterRemoveObserver(center obj.Object, observer unsafe.Pointer, name unsafe.Pointer, object unsafe.Pointer)
CFNotificationCenterRemoveObserver calls the CoreFoundation framework function CFNotificationCenterRemoveObserver.
func CFNullGetTypeID ¶
func CFNullGetTypeID() int
CFNullGetTypeID calls the CoreFoundation framework function CFNullGetTypeID.
func CFNumberCreate ¶
CFNumberCreate calls the CoreFoundation framework function CFNumberCreate.
func CFNumberFormatterCopyProperty ¶
CFNumberFormatterCopyProperty calls the CoreFoundation framework function CFNumberFormatterCopyProperty.
func CFNumberFormatterCreate ¶
func CFNumberFormatterCreate(allocator obj.Object, locale obj.Object, style CFNumberFormatterStyle) obj.Object
CFNumberFormatterCreate calls the CoreFoundation framework function CFNumberFormatterCreate.
func CFNumberFormatterCreateStringWithNumber ¶
func CFNumberFormatterCreateStringWithNumber(allocator obj.Object, formatter obj.Object, number obj.Object) obj.Object
CFNumberFormatterCreateStringWithNumber calls the CoreFoundation framework function CFNumberFormatterCreateStringWithNumber.
func CFNumberFormatterCreateStringWithValue ¶
func CFNumberFormatterCreateStringWithValue(allocator obj.Object, formatter obj.Object, numberType CFNumberType, valuePtr unsafe.Pointer) obj.Object
CFNumberFormatterCreateStringWithValue calls the CoreFoundation framework function CFNumberFormatterCreateStringWithValue.
func CFNumberFormatterGetDecimalInfoForCurrencyCode ¶
func CFNumberFormatterGetDecimalInfoForCurrencyCode(currencyCode obj.Object) (result uint8, defaultFractionDigits int32, roundingIncrement float64)
CFNumberFormatterGetDecimalInfoForCurrencyCode calls the CoreFoundation framework function CFNumberFormatterGetDecimalInfoForCurrencyCode.
func CFNumberFormatterGetFormat ¶
CFNumberFormatterGetFormat calls the CoreFoundation framework function CFNumberFormatterGetFormat.
func CFNumberFormatterGetLocale ¶
CFNumberFormatterGetLocale calls the CoreFoundation framework function CFNumberFormatterGetLocale.
func CFNumberFormatterGetTypeID ¶
func CFNumberFormatterGetTypeID() int
CFNumberFormatterGetTypeID calls the CoreFoundation framework function CFNumberFormatterGetTypeID.
func CFNumberFormatterSetFormat ¶
CFNumberFormatterSetFormat calls the CoreFoundation framework function CFNumberFormatterSetFormat.
func CFNumberFormatterSetProperty ¶
CFNumberFormatterSetProperty calls the CoreFoundation framework function CFNumberFormatterSetProperty.
func CFNumberGetByteSize ¶
CFNumberGetByteSize calls the CoreFoundation framework function CFNumberGetByteSize.
func CFNumberGetTypeID ¶
func CFNumberGetTypeID() int
CFNumberGetTypeID calls the CoreFoundation framework function CFNumberGetTypeID.
func CFNumberGetValue ¶
CFNumberGetValue calls the CoreFoundation framework function CFNumberGetValue.
func CFNumberIsFloatType ¶
CFNumberIsFloatType calls the CoreFoundation framework function CFNumberIsFloatType.
func CFPlugInAddInstanceForFactory ¶
CFPlugInAddInstanceForFactory calls the CoreFoundation framework function CFPlugInAddInstanceForFactory.
func CFPlugInCreate ¶
CFPlugInCreate calls the CoreFoundation framework function CFPlugInCreate.
func CFPlugInFindFactoriesForPlugInType ¶
CFPlugInFindFactoriesForPlugInType calls the CoreFoundation framework function CFPlugInFindFactoriesForPlugInType.
func CFPlugInFindFactoriesForPlugInTypeInPlugIn ¶
CFPlugInFindFactoriesForPlugInTypeInPlugIn calls the CoreFoundation framework function CFPlugInFindFactoriesForPlugInTypeInPlugIn.
func CFPlugInGetBundle ¶
CFPlugInGetBundle calls the CoreFoundation framework function CFPlugInGetBundle.
func CFPlugInGetTypeID ¶
func CFPlugInGetTypeID() int
CFPlugInGetTypeID calls the CoreFoundation framework function CFPlugInGetTypeID.
func CFPlugInInstanceCreate ¶
func CFPlugInInstanceCreate(allocator obj.Object, factoryUUID obj.Object, typeUUID obj.Object) unsafe.Pointer
CFPlugInInstanceCreate calls the CoreFoundation framework function CFPlugInInstanceCreate.
func CFPlugInInstanceCreateWithInstanceDataSize ¶
func CFPlugInInstanceCreateWithInstanceDataSize(allocator obj.Object, instanceDataSize int, deallocateInstanceFunction unsafe.Pointer, factoryName obj.Object, getInterfaceFunction unsafe.Pointer) obj.Object
CFPlugInInstanceCreateWithInstanceDataSize calls the CoreFoundation framework function CFPlugInInstanceCreateWithInstanceDataSize.
func CFPlugInInstanceGetFactoryName ¶
CFPlugInInstanceGetFactoryName calls the CoreFoundation framework function CFPlugInInstanceGetFactoryName.
func CFPlugInInstanceGetInstanceData ¶
CFPlugInInstanceGetInstanceData calls the CoreFoundation framework function CFPlugInInstanceGetInstanceData.
func CFPlugInInstanceGetInterfaceFunctionTable ¶
func CFPlugInInstanceGetInterfaceFunctionTable(instance obj.Object, interfaceName obj.Object, ftbl unsafe.Pointer) uint8
CFPlugInInstanceGetInterfaceFunctionTable calls the CoreFoundation framework function CFPlugInInstanceGetInterfaceFunctionTable.
func CFPlugInInstanceGetTypeID ¶
func CFPlugInInstanceGetTypeID() int
CFPlugInInstanceGetTypeID calls the CoreFoundation framework function CFPlugInInstanceGetTypeID.
func CFPlugInIsLoadOnDemand ¶
CFPlugInIsLoadOnDemand calls the CoreFoundation framework function CFPlugInIsLoadOnDemand.
func CFPlugInRegisterFactoryFunction ¶
CFPlugInRegisterFactoryFunction calls the CoreFoundation framework function CFPlugInRegisterFactoryFunction.
func CFPlugInRegisterFactoryFunctionByName ¶
func CFPlugInRegisterFactoryFunctionByName(factoryUUID obj.Object, plugIn obj.Object, functionName obj.Object) uint8
CFPlugInRegisterFactoryFunctionByName calls the CoreFoundation framework function CFPlugInRegisterFactoryFunctionByName.
func CFPlugInRegisterPlugInType ¶
CFPlugInRegisterPlugInType calls the CoreFoundation framework function CFPlugInRegisterPlugInType.
func CFPlugInRemoveInstanceForFactory ¶
CFPlugInRemoveInstanceForFactory calls the CoreFoundation framework function CFPlugInRemoveInstanceForFactory.
func CFPlugInSetLoadOnDemand ¶
CFPlugInSetLoadOnDemand calls the CoreFoundation framework function CFPlugInSetLoadOnDemand.
func CFPlugInUnregisterFactory ¶
CFPlugInUnregisterFactory calls the CoreFoundation framework function CFPlugInUnregisterFactory.
func CFPlugInUnregisterPlugInType ¶
CFPlugInUnregisterPlugInType calls the CoreFoundation framework function CFPlugInUnregisterPlugInType.
func CFPreferencesAddSuitePreferencesToApp ¶
CFPreferencesAddSuitePreferencesToApp calls the CoreFoundation framework function CFPreferencesAddSuitePreferencesToApp.
func CFPreferencesAppSynchronize ¶
CFPreferencesAppSynchronize calls the CoreFoundation framework function CFPreferencesAppSynchronize.
func CFPreferencesAppValueIsForced ¶
CFPreferencesAppValueIsForced calls the CoreFoundation framework function CFPreferencesAppValueIsForced.
func CFPreferencesCopyAppValue ¶
CFPreferencesCopyAppValue calls the CoreFoundation framework function CFPreferencesCopyAppValue.
func CFPreferencesCopyApplicationList ¶
CFPreferencesCopyApplicationList calls the CoreFoundation framework function CFPreferencesCopyApplicationList.
func CFPreferencesCopyKeyList ¶
func CFPreferencesCopyKeyList(applicationID obj.Object, userName obj.Object, hostName obj.Object) obj.Object
CFPreferencesCopyKeyList calls the CoreFoundation framework function CFPreferencesCopyKeyList.
func CFPreferencesCopyMultiple ¶
func CFPreferencesCopyMultiple(keysToFetch obj.Object, applicationID obj.Object, userName obj.Object, hostName obj.Object) obj.Object
CFPreferencesCopyMultiple calls the CoreFoundation framework function CFPreferencesCopyMultiple.
func CFPreferencesCopyValue ¶
func CFPreferencesCopyValue(key obj.Object, applicationID obj.Object, userName obj.Object, hostName obj.Object) obj.Object
CFPreferencesCopyValue calls the CoreFoundation framework function CFPreferencesCopyValue.
func CFPreferencesGetAppBooleanValue ¶
func CFPreferencesGetAppBooleanValue(key obj.Object, applicationID obj.Object) (result uint8, keyExistsAndHasValidFormat uint8)
CFPreferencesGetAppBooleanValue calls the CoreFoundation framework function CFPreferencesGetAppBooleanValue.
func CFPreferencesGetAppIntegerValue ¶
func CFPreferencesGetAppIntegerValue(key obj.Object, applicationID obj.Object) (result int, keyExistsAndHasValidFormat uint8)
CFPreferencesGetAppIntegerValue calls the CoreFoundation framework function CFPreferencesGetAppIntegerValue.
func CFPreferencesRemoveSuitePreferencesFromApp ¶
CFPreferencesRemoveSuitePreferencesFromApp calls the CoreFoundation framework function CFPreferencesRemoveSuitePreferencesFromApp.
func CFPreferencesSetAppValue ¶
CFPreferencesSetAppValue calls the CoreFoundation framework function CFPreferencesSetAppValue.
func CFPreferencesSetMultiple ¶
func CFPreferencesSetMultiple(keysToSet obj.Object, keysToRemove obj.Object, applicationID obj.Object, userName obj.Object, hostName obj.Object)
CFPreferencesSetMultiple calls the CoreFoundation framework function CFPreferencesSetMultiple.
func CFPreferencesSetValue ¶
func CFPreferencesSetValue(key obj.Object, value obj.Object, applicationID obj.Object, userName obj.Object, hostName obj.Object)
CFPreferencesSetValue calls the CoreFoundation framework function CFPreferencesSetValue.
func CFPreferencesSynchronize ¶
func CFPreferencesSynchronize(applicationID obj.Object, userName obj.Object, hostName obj.Object) uint8
CFPreferencesSynchronize calls the CoreFoundation framework function CFPreferencesSynchronize.
func CFPropertyListCreateDeepCopy ¶
func CFPropertyListCreateDeepCopy(allocator obj.Object, propertyList obj.Object, mutabilityOption int) obj.Object
CFPropertyListCreateDeepCopy calls the CoreFoundation framework function CFPropertyListCreateDeepCopy.
func CFPropertyListCreateFromXMLData ¶
func CFPropertyListCreateFromXMLData(allocator obj.Object, xmlData obj.Object, mutabilityOption int, errorString unsafe.Pointer) obj.Object
CFPropertyListCreateFromXMLData calls the CoreFoundation framework function CFPropertyListCreateFromXMLData.
func CFPropertyListCreateXMLData ¶
CFPropertyListCreateXMLData calls the CoreFoundation framework function CFPropertyListCreateXMLData.
func CFPropertyListIsValid ¶
func CFPropertyListIsValid(plist obj.Object, format CFPropertyListFormat) uint8
CFPropertyListIsValid calls the CoreFoundation framework function CFPropertyListIsValid.
func CFPropertyListWrite ¶
func CFPropertyListWriteToStream ¶
func CFPropertyListWriteToStream(propertyList obj.Object, stream obj.Object, format CFPropertyListFormat, errorString unsafe.Pointer) int
CFPropertyListWriteToStream calls the CoreFoundation framework function CFPropertyListWriteToStream.
func CFRangeMake ¶
CFRangeMake calls the CoreFoundation framework function CFRangeMake.
func CFReadStreamClose ¶
CFReadStreamClose calls the CoreFoundation framework function CFReadStreamClose.
func CFReadStreamCopyDispatchQueue ¶
CFReadStreamCopyDispatchQueue calls the CoreFoundation framework function CFReadStreamCopyDispatchQueue.
func CFReadStreamCopyError ¶
CFReadStreamCopyError calls the CoreFoundation framework function CFReadStreamCopyError.
func CFReadStreamCopyProperty ¶
CFReadStreamCopyProperty calls the CoreFoundation framework function CFReadStreamCopyProperty.
func CFReadStreamCreateWithBytesNoCopy ¶
func CFReadStreamCreateWithBytesNoCopy(alloc obj.Object, data unsafe.Pointer, length int, bytesDeallocator obj.Object) obj.Object
CFReadStreamCreateWithBytesNoCopy calls the CoreFoundation framework function CFReadStreamCreateWithBytesNoCopy.
func CFReadStreamCreateWithFile ¶
CFReadStreamCreateWithFile calls the CoreFoundation framework function CFReadStreamCreateWithFile.
func CFReadStreamGetBuffer ¶
func CFReadStreamGetBuffer(stream obj.Object, maxBytesToRead int) (result unsafe.Pointer, numBytesRead int)
CFReadStreamGetBuffer calls the CoreFoundation framework function CFReadStreamGetBuffer.
func CFReadStreamGetError ¶
CFReadStreamGetError calls the CoreFoundation framework function CFReadStreamGetError.
func CFReadStreamGetTypeID ¶
func CFReadStreamGetTypeID() int
CFReadStreamGetTypeID calls the CoreFoundation framework function CFReadStreamGetTypeID.
func CFReadStreamHasBytesAvailable ¶
CFReadStreamHasBytesAvailable calls the CoreFoundation framework function CFReadStreamHasBytesAvailable.
func CFReadStreamOpen ¶
CFReadStreamOpen calls the CoreFoundation framework function CFReadStreamOpen.
func CFReadStreamRead ¶
CFReadStreamRead calls the CoreFoundation framework function CFReadStreamRead.
func CFReadStreamScheduleWithRunLoop ¶
func CFReadStreamScheduleWithRunLoop(stream obj.Object, runLoop obj.Object, runLoopMode unsafe.Pointer)
CFReadStreamScheduleWithRunLoop calls the CoreFoundation framework function CFReadStreamScheduleWithRunLoop.
func CFReadStreamSetClient ¶
func CFReadStreamSetClient(stream obj.Object, streamEvents int, clientCB unsafe.Pointer, clientContext unsafe.Pointer) uint8
CFReadStreamSetClient calls the CoreFoundation framework function CFReadStreamSetClient.
func CFReadStreamSetDispatchQueue ¶
CFReadStreamSetDispatchQueue calls the CoreFoundation framework function CFReadStreamSetDispatchQueue.
func CFReadStreamSetProperty ¶
func CFReadStreamSetProperty(stream obj.Object, propertyName unsafe.Pointer, propertyValue obj.Object) uint8
CFReadStreamSetProperty calls the CoreFoundation framework function CFReadStreamSetProperty.
func CFReadStreamUnscheduleFromRunLoop ¶
func CFReadStreamUnscheduleFromRunLoop(stream obj.Object, runLoop obj.Object, runLoopMode unsafe.Pointer)
CFReadStreamUnscheduleFromRunLoop calls the CoreFoundation framework function CFReadStreamUnscheduleFromRunLoop.
func CFRunLoopAddCommonMode ¶
CFRunLoopAddCommonMode calls the CoreFoundation framework function CFRunLoopAddCommonMode.
func CFRunLoopAddObserver ¶
CFRunLoopAddObserver calls the CoreFoundation framework function CFRunLoopAddObserver.
func CFRunLoopAddSource ¶
CFRunLoopAddSource calls the CoreFoundation framework function CFRunLoopAddSource.
func CFRunLoopAddTimer ¶
CFRunLoopAddTimer calls the CoreFoundation framework function CFRunLoopAddTimer.
func CFRunLoopContainsObserver ¶
CFRunLoopContainsObserver calls the CoreFoundation framework function CFRunLoopContainsObserver.
func CFRunLoopContainsSource ¶
CFRunLoopContainsSource calls the CoreFoundation framework function CFRunLoopContainsSource.
func CFRunLoopContainsTimer ¶
CFRunLoopContainsTimer calls the CoreFoundation framework function CFRunLoopContainsTimer.
func CFRunLoopCopyAllModes ¶
CFRunLoopCopyAllModes calls the CoreFoundation framework function CFRunLoopCopyAllModes.
func CFRunLoopCopyCurrentMode ¶
CFRunLoopCopyCurrentMode calls the CoreFoundation framework function CFRunLoopCopyCurrentMode.
func CFRunLoopGetCurrent ¶
CFRunLoopGetCurrent calls the CoreFoundation framework function CFRunLoopGetCurrent.
func CFRunLoopGetMain ¶
CFRunLoopGetMain calls the CoreFoundation framework function CFRunLoopGetMain.
func CFRunLoopGetNextTimerFireDate ¶
CFRunLoopGetNextTimerFireDate calls the CoreFoundation framework function CFRunLoopGetNextTimerFireDate.
func CFRunLoopGetTypeID ¶
func CFRunLoopGetTypeID() int
CFRunLoopGetTypeID calls the CoreFoundation framework function CFRunLoopGetTypeID.
func CFRunLoopIsWaiting ¶
CFRunLoopIsWaiting calls the CoreFoundation framework function CFRunLoopIsWaiting.
func CFRunLoopObserverCreate ¶
func CFRunLoopObserverCreate(allocator obj.Object, activities int, repeats uint8, order int, callout unsafe.Pointer, context_ unsafe.Pointer) obj.Object
CFRunLoopObserverCreate calls the CoreFoundation framework function CFRunLoopObserverCreate.
func CFRunLoopObserverCreateWithHandler ¶
func CFRunLoopObserverCreateWithHandler(allocator obj.Object, activities int, repeats uint8, order int, block unsafe.Pointer) obj.Object
CFRunLoopObserverCreateWithHandler calls the CoreFoundation framework function CFRunLoopObserverCreateWithHandler.
func CFRunLoopObserverDoesRepeat ¶
CFRunLoopObserverDoesRepeat calls the CoreFoundation framework function CFRunLoopObserverDoesRepeat.
func CFRunLoopObserverGetActivities ¶
CFRunLoopObserverGetActivities calls the CoreFoundation framework function CFRunLoopObserverGetActivities.
func CFRunLoopObserverGetContext ¶
CFRunLoopObserverGetContext calls the CoreFoundation framework function CFRunLoopObserverGetContext.
func CFRunLoopObserverGetOrder ¶
CFRunLoopObserverGetOrder calls the CoreFoundation framework function CFRunLoopObserverGetOrder.
func CFRunLoopObserverGetTypeID ¶
func CFRunLoopObserverGetTypeID() int
CFRunLoopObserverGetTypeID calls the CoreFoundation framework function CFRunLoopObserverGetTypeID.
func CFRunLoopObserverInvalidate ¶
CFRunLoopObserverInvalidate calls the CoreFoundation framework function CFRunLoopObserverInvalidate.
func CFRunLoopObserverIsValid ¶
CFRunLoopObserverIsValid calls the CoreFoundation framework function CFRunLoopObserverIsValid.
func CFRunLoopPerformBlock ¶
CFRunLoopPerformBlock calls the CoreFoundation framework function CFRunLoopPerformBlock.
func CFRunLoopRemoveObserver ¶
CFRunLoopRemoveObserver calls the CoreFoundation framework function CFRunLoopRemoveObserver.
func CFRunLoopRemoveSource ¶
CFRunLoopRemoveSource calls the CoreFoundation framework function CFRunLoopRemoveSource.
func CFRunLoopRemoveTimer ¶
CFRunLoopRemoveTimer calls the CoreFoundation framework function CFRunLoopRemoveTimer.
func CFRunLoopRun ¶
func CFRunLoopRun()
CFRunLoopRun calls the CoreFoundation framework function CFRunLoopRun.
func CFRunLoopSourceCreate ¶
CFRunLoopSourceCreate calls the CoreFoundation framework function CFRunLoopSourceCreate.
func CFRunLoopSourceGetContext ¶
CFRunLoopSourceGetContext calls the CoreFoundation framework function CFRunLoopSourceGetContext.
func CFRunLoopSourceGetOrder ¶
CFRunLoopSourceGetOrder calls the CoreFoundation framework function CFRunLoopSourceGetOrder.
func CFRunLoopSourceGetTypeID ¶
func CFRunLoopSourceGetTypeID() int
CFRunLoopSourceGetTypeID calls the CoreFoundation framework function CFRunLoopSourceGetTypeID.
func CFRunLoopSourceInvalidate ¶
CFRunLoopSourceInvalidate calls the CoreFoundation framework function CFRunLoopSourceInvalidate.
func CFRunLoopSourceIsValid ¶
CFRunLoopSourceIsValid calls the CoreFoundation framework function CFRunLoopSourceIsValid.
func CFRunLoopSourceSignal ¶
CFRunLoopSourceSignal calls the CoreFoundation framework function CFRunLoopSourceSignal.
func CFRunLoopStop ¶
CFRunLoopStop calls the CoreFoundation framework function CFRunLoopStop.
func CFRunLoopTimerCreate ¶
func CFRunLoopTimerCreate(allocator obj.Object, fireDate float64, interval float64, flags int, order int, callout unsafe.Pointer, context_ unsafe.Pointer) obj.Object
CFRunLoopTimerCreate calls the CoreFoundation framework function CFRunLoopTimerCreate.
func CFRunLoopTimerCreateWithHandler ¶
func CFRunLoopTimerCreateWithHandler(allocator obj.Object, fireDate float64, interval float64, flags int, order int, block unsafe.Pointer) obj.Object
CFRunLoopTimerCreateWithHandler calls the CoreFoundation framework function CFRunLoopTimerCreateWithHandler.
func CFRunLoopTimerDoesRepeat ¶
CFRunLoopTimerDoesRepeat calls the CoreFoundation framework function CFRunLoopTimerDoesRepeat.
func CFRunLoopTimerGetContext ¶
CFRunLoopTimerGetContext calls the CoreFoundation framework function CFRunLoopTimerGetContext.
func CFRunLoopTimerGetInterval ¶
CFRunLoopTimerGetInterval calls the CoreFoundation framework function CFRunLoopTimerGetInterval.
func CFRunLoopTimerGetNextFireDate ¶
CFRunLoopTimerGetNextFireDate calls the CoreFoundation framework function CFRunLoopTimerGetNextFireDate.
func CFRunLoopTimerGetOrder ¶
CFRunLoopTimerGetOrder calls the CoreFoundation framework function CFRunLoopTimerGetOrder.
func CFRunLoopTimerGetTolerance ¶
CFRunLoopTimerGetTolerance calls the CoreFoundation framework function CFRunLoopTimerGetTolerance.
func CFRunLoopTimerGetTypeID ¶
func CFRunLoopTimerGetTypeID() int
CFRunLoopTimerGetTypeID calls the CoreFoundation framework function CFRunLoopTimerGetTypeID.
func CFRunLoopTimerInvalidate ¶
CFRunLoopTimerInvalidate calls the CoreFoundation framework function CFRunLoopTimerInvalidate.
func CFRunLoopTimerIsValid ¶
CFRunLoopTimerIsValid calls the CoreFoundation framework function CFRunLoopTimerIsValid.
func CFRunLoopTimerSetNextFireDate ¶
CFRunLoopTimerSetNextFireDate calls the CoreFoundation framework function CFRunLoopTimerSetNextFireDate.
func CFRunLoopTimerSetTolerance ¶
CFRunLoopTimerSetTolerance calls the CoreFoundation framework function CFRunLoopTimerSetTolerance.
func CFRunLoopWakeUp ¶
CFRunLoopWakeUp calls the CoreFoundation framework function CFRunLoopWakeUp.
func CFSetAddValue ¶
CFSetAddValue calls the CoreFoundation framework function CFSetAddValue.
func CFSetApplyFunction ¶
CFSetApplyFunction calls the CoreFoundation framework function CFSetApplyFunction.
func CFSetContainsValue ¶
CFSetContainsValue calls the CoreFoundation framework function CFSetContainsValue.
func CFSetCreate ¶
func CFSetCreate(allocator obj.Object, values unsafe.Pointer, numValues int, callBacks unsafe.Pointer) obj.Object
CFSetCreate calls the CoreFoundation framework function CFSetCreate.
func CFSetCreateCopy ¶
CFSetCreateCopy calls the CoreFoundation framework function CFSetCreateCopy.
func CFSetCreateMutable ¶
CFSetCreateMutable calls the CoreFoundation framework function CFSetCreateMutable.
func CFSetCreateMutableCopy ¶
CFSetCreateMutableCopy calls the CoreFoundation framework function CFSetCreateMutableCopy.
func CFSetGetCount ¶
CFSetGetCount calls the CoreFoundation framework function CFSetGetCount.
func CFSetGetCountOfValue ¶
CFSetGetCountOfValue calls the CoreFoundation framework function CFSetGetCountOfValue.
func CFSetGetTypeID ¶
func CFSetGetTypeID() int
CFSetGetTypeID calls the CoreFoundation framework function CFSetGetTypeID.
func CFSetGetValue ¶
CFSetGetValue calls the CoreFoundation framework function CFSetGetValue.
func CFSetGetValueIfPresent ¶
func CFSetGetValueIfPresent(theSet obj.Object, candidate unsafe.Pointer, value unsafe.Pointer) uint8
CFSetGetValueIfPresent calls the CoreFoundation framework function CFSetGetValueIfPresent.
func CFSetGetValues ¶
CFSetGetValues calls the CoreFoundation framework function CFSetGetValues.
func CFSetRemoveAllValues ¶
CFSetRemoveAllValues calls the CoreFoundation framework function CFSetRemoveAllValues.
func CFSetRemoveValue ¶
CFSetRemoveValue calls the CoreFoundation framework function CFSetRemoveValue.
func CFSetReplaceValue ¶
CFSetReplaceValue calls the CoreFoundation framework function CFSetReplaceValue.
func CFSetSetValue ¶
CFSetSetValue calls the CoreFoundation framework function CFSetSetValue.
func CFSocketCopyAddress ¶
CFSocketCopyAddress calls the CoreFoundation framework function CFSocketCopyAddress.
func CFSocketCopyPeerAddress ¶
CFSocketCopyPeerAddress calls the CoreFoundation framework function CFSocketCopyPeerAddress.
func CFSocketCreate ¶
func CFSocketCreate(allocator obj.Object, protocolFamily int, socketType int, protocol int, callBackTypes int, callout unsafe.Pointer, context_ unsafe.Pointer) obj.Object
CFSocketCreate calls the CoreFoundation framework function CFSocketCreate.
func CFSocketCreateConnectedToSocketSignature ¶
func CFSocketCreateConnectedToSocketSignature(allocator obj.Object, signature unsafe.Pointer, callBackTypes int, callout unsafe.Pointer, context_ unsafe.Pointer, timeout float64) obj.Object
CFSocketCreateConnectedToSocketSignature calls the CoreFoundation framework function CFSocketCreateConnectedToSocketSignature.
func CFSocketCreateRunLoopSource ¶
CFSocketCreateRunLoopSource calls the CoreFoundation framework function CFSocketCreateRunLoopSource.
func CFSocketCreateWithNative ¶
func CFSocketCreateWithNative(allocator obj.Object, sock int, callBackTypes int, callout unsafe.Pointer, context_ unsafe.Pointer) obj.Object
CFSocketCreateWithNative calls the CoreFoundation framework function CFSocketCreateWithNative.
func CFSocketCreateWithSocketSignature ¶
func CFSocketCreateWithSocketSignature(allocator obj.Object, signature unsafe.Pointer, callBackTypes int, callout unsafe.Pointer, context_ unsafe.Pointer) obj.Object
CFSocketCreateWithSocketSignature calls the CoreFoundation framework function CFSocketCreateWithSocketSignature.
func CFSocketDisableCallBacks ¶
CFSocketDisableCallBacks calls the CoreFoundation framework function CFSocketDisableCallBacks.
func CFSocketEnableCallBacks ¶
CFSocketEnableCallBacks calls the CoreFoundation framework function CFSocketEnableCallBacks.
func CFSocketGetContext ¶
CFSocketGetContext calls the CoreFoundation framework function CFSocketGetContext.
func CFSocketGetDefaultNameRegistryPortNumber ¶
func CFSocketGetDefaultNameRegistryPortNumber() uint16
CFSocketGetDefaultNameRegistryPortNumber calls the CoreFoundation framework function CFSocketGetDefaultNameRegistryPortNumber.
func CFSocketGetNative ¶
CFSocketGetNative calls the CoreFoundation framework function CFSocketGetNative.
func CFSocketGetSocketFlags ¶
CFSocketGetSocketFlags calls the CoreFoundation framework function CFSocketGetSocketFlags.
func CFSocketGetTypeID ¶
func CFSocketGetTypeID() int
CFSocketGetTypeID calls the CoreFoundation framework function CFSocketGetTypeID.
func CFSocketInvalidate ¶
CFSocketInvalidate calls the CoreFoundation framework function CFSocketInvalidate.
func CFSocketIsValid ¶
CFSocketIsValid calls the CoreFoundation framework function CFSocketIsValid.
func CFSocketSetDefaultNameRegistryPortNumber ¶
func CFSocketSetDefaultNameRegistryPortNumber(port uint16)
CFSocketSetDefaultNameRegistryPortNumber calls the CoreFoundation framework function CFSocketSetDefaultNameRegistryPortNumber.
func CFSocketSetSocketFlags ¶
CFSocketSetSocketFlags calls the CoreFoundation framework function CFSocketSetSocketFlags.
func CFStreamCreateBoundPair ¶
func CFStreamCreateBoundPair(alloc obj.Object, readStream unsafe.Pointer, writeStream unsafe.Pointer, transferBufferSize int)
CFStreamCreateBoundPair calls the CoreFoundation framework function CFStreamCreateBoundPair.
func CFStreamCreatePairWithPeerSocketSignature ¶
func CFStreamCreatePairWithPeerSocketSignature(alloc obj.Object, signature unsafe.Pointer, readStream unsafe.Pointer, writeStream unsafe.Pointer)
CFStreamCreatePairWithPeerSocketSignature calls the CoreFoundation framework function CFStreamCreatePairWithPeerSocketSignature.
func CFStreamCreatePairWithSocket ¶
func CFStreamCreatePairWithSocket(alloc obj.Object, sock int, readStream unsafe.Pointer, writeStream unsafe.Pointer)
CFStreamCreatePairWithSocket calls the CoreFoundation framework function CFStreamCreatePairWithSocket.
func CFStreamCreatePairWithSocketToHost ¶
func CFStreamCreatePairWithSocketToHost(alloc obj.Object, host obj.Object, port int, readStream unsafe.Pointer, writeStream unsafe.Pointer)
CFStreamCreatePairWithSocketToHost calls the CoreFoundation framework function CFStreamCreatePairWithSocketToHost.
func CFStringAppend ¶
CFStringAppend calls the CoreFoundation framework function CFStringAppend.
func CFStringAppendCString ¶
CFStringAppendCString calls the CoreFoundation framework function CFStringAppendCString.
func CFStringAppendCharacters ¶
CFStringAppendCharacters calls the CoreFoundation framework function CFStringAppendCharacters.
func CFStringAppendFormat ¶
CFStringAppendFormat calls the CoreFoundation framework function CFStringAppendFormat.
func CFStringAppendFormatAndArguments ¶
func CFStringAppendFormatAndArguments(theString obj.Object, formatOptions obj.Object, format obj.Object, arguments string)
CFStringAppendFormatAndArguments calls the CoreFoundation framework function CFStringAppendFormatAndArguments.
func CFStringAppendPascalString ¶
CFStringAppendPascalString calls the CoreFoundation framework function CFStringAppendPascalString.
func CFStringCapitalize ¶
CFStringCapitalize calls the CoreFoundation framework function CFStringCapitalize.
func CFStringConvertEncodingToIANACharSetName ¶
CFStringConvertEncodingToIANACharSetName calls the CoreFoundation framework function CFStringConvertEncodingToIANACharSetName.
func CFStringConvertEncodingToNSStringEncoding ¶
CFStringConvertEncodingToNSStringEncoding calls the CoreFoundation framework function CFStringConvertEncodingToNSStringEncoding.
func CFStringConvertEncodingToWindowsCodepage ¶
CFStringConvertEncodingToWindowsCodepage calls the CoreFoundation framework function CFStringConvertEncodingToWindowsCodepage.
func CFStringConvertIANACharSetNameToEncoding ¶
CFStringConvertIANACharSetNameToEncoding calls the CoreFoundation framework function CFStringConvertIANACharSetNameToEncoding.
func CFStringConvertNSStringEncodingToEncoding ¶
CFStringConvertNSStringEncodingToEncoding calls the CoreFoundation framework function CFStringConvertNSStringEncodingToEncoding.
func CFStringConvertWindowsCodepageToEncoding ¶
CFStringConvertWindowsCodepageToEncoding calls the CoreFoundation framework function CFStringConvertWindowsCodepageToEncoding.
func CFStringCreateArrayBySeparatingStrings ¶
func CFStringCreateArrayBySeparatingStrings(alloc obj.Object, theString obj.Object, separatorString obj.Object) obj.Object
CFStringCreateArrayBySeparatingStrings calls the CoreFoundation framework function CFStringCreateArrayBySeparatingStrings.
func CFStringCreateArrayWithFindResults ¶
func CFStringCreateArrayWithFindResults(alloc obj.Object, theString obj.Object, stringToFind obj.Object, rangeToSearch unsafe.Pointer, compareOptions CFStringCompareFlags) obj.Object
CFStringCreateArrayWithFindResults calls the CoreFoundation framework function CFStringCreateArrayWithFindResults.
func CFStringCreateByCombiningStrings ¶
func CFStringCreateByCombiningStrings(alloc obj.Object, theArray obj.Object, separatorString obj.Object) obj.Object
CFStringCreateByCombiningStrings calls the CoreFoundation framework function CFStringCreateByCombiningStrings.
func CFStringCreateCopy ¶
CFStringCreateCopy calls the CoreFoundation framework function CFStringCreateCopy.
func CFStringCreateExternalRepresentation ¶
func CFStringCreateExternalRepresentation(alloc obj.Object, theString obj.Object, encoding int, lossByte uint8) obj.Object
CFStringCreateExternalRepresentation calls the CoreFoundation framework function CFStringCreateExternalRepresentation.
func CFStringCreateFromExternalRepresentation ¶
func CFStringCreateFromExternalRepresentation(alloc obj.Object, data obj.Object, encoding int) obj.Object
CFStringCreateFromExternalRepresentation calls the CoreFoundation framework function CFStringCreateFromExternalRepresentation.
func CFStringCreateMutable ¶
CFStringCreateMutable calls the CoreFoundation framework function CFStringCreateMutable.
func CFStringCreateMutableCopy ¶
CFStringCreateMutableCopy calls the CoreFoundation framework function CFStringCreateMutableCopy.
func CFStringCreateMutableWithExternalCharactersNoCopy ¶
func CFStringCreateMutableWithExternalCharactersNoCopy(alloc obj.Object, numChars int, capacity int, externalCharactersAllocator obj.Object) (result obj.Object, chars uint16)
CFStringCreateMutableWithExternalCharactersNoCopy calls the CoreFoundation framework function CFStringCreateMutableWithExternalCharactersNoCopy.
func CFStringCreateWithBytes ¶
func CFStringCreateWithBytes(alloc obj.Object, numBytes int, encoding int, isExternalRepresentation uint8) (result obj.Object, data uint8)
CFStringCreateWithBytes calls the CoreFoundation framework function CFStringCreateWithBytes.
func CFStringCreateWithBytesNoCopy ¶
func CFStringCreateWithBytesNoCopy(alloc obj.Object, numBytes int, encoding int, isExternalRepresentation uint8, contentsDeallocator obj.Object) (result obj.Object, data uint8)
CFStringCreateWithBytesNoCopy calls the CoreFoundation framework function CFStringCreateWithBytesNoCopy.
func CFStringCreateWithCString ¶
CFStringCreateWithCString calls the CoreFoundation framework function CFStringCreateWithCString.
func CFStringCreateWithCStringNoCopy ¶
func CFStringCreateWithCStringNoCopy(alloc obj.Object, cStr string, encoding int, contentsDeallocator obj.Object) obj.Object
CFStringCreateWithCStringNoCopy calls the CoreFoundation framework function CFStringCreateWithCStringNoCopy.
func CFStringCreateWithCharacters ¶
CFStringCreateWithCharacters calls the CoreFoundation framework function CFStringCreateWithCharacters.
func CFStringCreateWithCharactersNoCopy ¶
func CFStringCreateWithCharactersNoCopy(alloc obj.Object, numChars int, contentsDeallocator obj.Object) (result obj.Object, chars uint16)
CFStringCreateWithCharactersNoCopy calls the CoreFoundation framework function CFStringCreateWithCharactersNoCopy.
func CFStringCreateWithFileSystemRepresentation ¶
CFStringCreateWithFileSystemRepresentation calls the CoreFoundation framework function CFStringCreateWithFileSystemRepresentation.
func CFStringCreateWithFormat ¶
func CFStringCreateWithFormat(alloc obj.Object, formatOptions obj.Object, format obj.Object) obj.Object
CFStringCreateWithFormat calls the CoreFoundation framework function CFStringCreateWithFormat.
func CFStringCreateWithFormatAndArguments ¶
func CFStringCreateWithFormatAndArguments(alloc obj.Object, formatOptions obj.Object, format obj.Object, arguments string) obj.Object
CFStringCreateWithFormatAndArguments calls the CoreFoundation framework function CFStringCreateWithFormatAndArguments.
func CFStringCreateWithPascalString ¶
CFStringCreateWithPascalString calls the CoreFoundation framework function CFStringCreateWithPascalString.
func CFStringCreateWithPascalStringNoCopy ¶
func CFStringCreateWithPascalStringNoCopy(alloc obj.Object, encoding int, contentsDeallocator obj.Object) (result obj.Object, pStr uint8)
CFStringCreateWithPascalStringNoCopy calls the CoreFoundation framework function CFStringCreateWithPascalStringNoCopy.
func CFStringCreateWithSubstring ¶
func CFStringCreateWithSubstring(alloc obj.Object, str obj.Object, range_ unsafe.Pointer) obj.Object
CFStringCreateWithSubstring calls the CoreFoundation framework function CFStringCreateWithSubstring.
func CFStringDelete ¶
CFStringDelete calls the CoreFoundation framework function CFStringDelete.
func CFStringFind ¶
func CFStringFind(theString obj.Object, stringToFind obj.Object, compareOptions CFStringCompareFlags) unsafe.Pointer
CFStringFind calls the CoreFoundation framework function CFStringFind.
func CFStringFindAndReplace ¶
func CFStringFindAndReplace(theString obj.Object, stringToFind obj.Object, replacementString obj.Object, rangeToSearch unsafe.Pointer, compareOptions CFStringCompareFlags) int
CFStringFindAndReplace calls the CoreFoundation framework function CFStringFindAndReplace.
func CFStringFold ¶
func CFStringFold(theString obj.Object, theFlags CFStringCompareFlags, theLocale obj.Object)
CFStringFold calls the CoreFoundation framework function CFStringFold.
func CFStringGetBytes ¶
func CFStringGetBytes(theString obj.Object, range_ unsafe.Pointer, encoding int, lossByte uint8, isExternalRepresentation uint8, maxBufLen int) (result int, buffer uint8, usedBufLen int)
CFStringGetBytes calls the CoreFoundation framework function CFStringGetBytes.
func CFStringGetCString ¶
CFStringGetCString calls the CoreFoundation framework function CFStringGetCString.
func CFStringGetCStringPtr ¶
CFStringGetCStringPtr calls the CoreFoundation framework function CFStringGetCStringPtr.
func CFStringGetCharacterAtIndex ¶
CFStringGetCharacterAtIndex calls the CoreFoundation framework function CFStringGetCharacterAtIndex.
func CFStringGetCharacterFromInlineBuffer ¶
CFStringGetCharacterFromInlineBuffer calls the CoreFoundation framework function CFStringGetCharacterFromInlineBuffer.
func CFStringGetCharacters ¶
CFStringGetCharacters calls the CoreFoundation framework function CFStringGetCharacters.
func CFStringGetCharactersPtr ¶
CFStringGetCharactersPtr calls the CoreFoundation framework function CFStringGetCharactersPtr.
func CFStringGetDoubleValue ¶
CFStringGetDoubleValue calls the CoreFoundation framework function CFStringGetDoubleValue.
func CFStringGetFastestEncoding ¶
CFStringGetFastestEncoding calls the CoreFoundation framework function CFStringGetFastestEncoding.
func CFStringGetFileSystemRepresentation ¶
CFStringGetFileSystemRepresentation calls the CoreFoundation framework function CFStringGetFileSystemRepresentation.
func CFStringGetHyphenationLocationBeforeIndex ¶
func CFStringGetHyphenationLocationBeforeIndex(str obj.Object, location int, limitRange unsafe.Pointer, options int, locale obj.Object) (result int, character int)
CFStringGetHyphenationLocationBeforeIndex calls the CoreFoundation framework function CFStringGetHyphenationLocationBeforeIndex.
func CFStringGetIntValue ¶
CFStringGetIntValue calls the CoreFoundation framework function CFStringGetIntValue.
func CFStringGetLength ¶
CFStringGetLength calls the CoreFoundation framework function CFStringGetLength.
func CFStringGetLineBounds ¶
func CFStringGetLineBounds(theString obj.Object, range_ unsafe.Pointer) (lineBeginIndex int, lineEndIndex int, contentsEndIndex int)
CFStringGetLineBounds calls the CoreFoundation framework function CFStringGetLineBounds.
func CFStringGetListOfAvailableEncodings ¶
CFStringGetListOfAvailableEncodings calls the CoreFoundation framework function CFStringGetListOfAvailableEncodings.
func CFStringGetLongCharacterForSurrogatePair ¶
CFStringGetLongCharacterForSurrogatePair calls the CoreFoundation framework function CFStringGetLongCharacterForSurrogatePair.
func CFStringGetMaximumSizeForEncoding ¶
CFStringGetMaximumSizeForEncoding calls the CoreFoundation framework function CFStringGetMaximumSizeForEncoding.
func CFStringGetMaximumSizeOfFileSystemRepresentation ¶
CFStringGetMaximumSizeOfFileSystemRepresentation calls the CoreFoundation framework function CFStringGetMaximumSizeOfFileSystemRepresentation.
func CFStringGetMostCompatibleMacStringEncoding ¶
CFStringGetMostCompatibleMacStringEncoding calls the CoreFoundation framework function CFStringGetMostCompatibleMacStringEncoding.
func CFStringGetNameOfEncoding ¶
CFStringGetNameOfEncoding calls the CoreFoundation framework function CFStringGetNameOfEncoding.
func CFStringGetParagraphBounds ¶
func CFStringGetParagraphBounds(str obj.Object, range_ unsafe.Pointer) (parBeginIndex int, parEndIndex int, contentsEndIndex int)
CFStringGetParagraphBounds calls the CoreFoundation framework function CFStringGetParagraphBounds.
func CFStringGetPascalString ¶
func CFStringGetPascalString(theString obj.Object, bufferSize int, encoding int) (result uint8, buffer uint8)
CFStringGetPascalString calls the CoreFoundation framework function CFStringGetPascalString.
func CFStringGetPascalStringPtr ¶
CFStringGetPascalStringPtr calls the CoreFoundation framework function CFStringGetPascalStringPtr.
func CFStringGetRangeOfComposedCharactersAtIndex ¶
CFStringGetRangeOfComposedCharactersAtIndex calls the CoreFoundation framework function CFStringGetRangeOfComposedCharactersAtIndex.
func CFStringGetSmallestEncoding ¶
CFStringGetSmallestEncoding calls the CoreFoundation framework function CFStringGetSmallestEncoding.
func CFStringGetSurrogatePairForLongCharacter ¶
CFStringGetSurrogatePairForLongCharacter calls the CoreFoundation framework function CFStringGetSurrogatePairForLongCharacter.
func CFStringGetSystemEncoding ¶
func CFStringGetSystemEncoding() int
CFStringGetSystemEncoding calls the CoreFoundation framework function CFStringGetSystemEncoding.
func CFStringGetTypeID ¶
func CFStringGetTypeID() int
CFStringGetTypeID calls the CoreFoundation framework function CFStringGetTypeID.
func CFStringHasPrefix ¶
CFStringHasPrefix calls the CoreFoundation framework function CFStringHasPrefix.
func CFStringHasSuffix ¶
CFStringHasSuffix calls the CoreFoundation framework function CFStringHasSuffix.
func CFStringInitInlineBuffer ¶
CFStringInitInlineBuffer calls the CoreFoundation framework function CFStringInitInlineBuffer.
func CFStringInsert ¶
CFStringInsert calls the CoreFoundation framework function CFStringInsert.
func CFStringIsEncodingAvailable ¶
CFStringIsEncodingAvailable calls the CoreFoundation framework function CFStringIsEncodingAvailable.
func CFStringIsHyphenationAvailableForLocale ¶
CFStringIsHyphenationAvailableForLocale calls the CoreFoundation framework function CFStringIsHyphenationAvailableForLocale.
func CFStringIsSurrogateHighCharacter ¶
CFStringIsSurrogateHighCharacter calls the CoreFoundation framework function CFStringIsSurrogateHighCharacter.
func CFStringIsSurrogateLowCharacter ¶
CFStringIsSurrogateLowCharacter calls the CoreFoundation framework function CFStringIsSurrogateLowCharacter.
func CFStringLowercase ¶
CFStringLowercase calls the CoreFoundation framework function CFStringLowercase.
func CFStringMakeConstantString ¶
CFStringMakeConstantString calls the CoreFoundation framework function __CFStringMakeConstantString.
func CFStringNormalize ¶
func CFStringNormalize(theString obj.Object, theForm CFStringNormalizationForm)
CFStringNormalize calls the CoreFoundation framework function CFStringNormalize.
func CFStringPad ¶
CFStringPad calls the CoreFoundation framework function CFStringPad.
func CFStringReplace ¶
CFStringReplace calls the CoreFoundation framework function CFStringReplace.
func CFStringReplaceAll ¶
CFStringReplaceAll calls the CoreFoundation framework function CFStringReplaceAll.
func CFStringSetExternalCharactersNoCopy ¶
func CFStringSetExternalCharactersNoCopy(theString obj.Object, chars unsafe.Pointer, length int, capacity int)
CFStringSetExternalCharactersNoCopy calls the CoreFoundation framework function CFStringSetExternalCharactersNoCopy.
func CFStringTokenizerCopyBestStringLanguage ¶
CFStringTokenizerCopyBestStringLanguage calls the CoreFoundation framework function CFStringTokenizerCopyBestStringLanguage.
func CFStringTokenizerCopyCurrentTokenAttribute ¶
CFStringTokenizerCopyCurrentTokenAttribute calls the CoreFoundation framework function CFStringTokenizerCopyCurrentTokenAttribute.
func CFStringTokenizerCreate ¶
func CFStringTokenizerCreate(alloc obj.Object, str obj.Object, range_ unsafe.Pointer, options int, locale obj.Object) obj.Object
CFStringTokenizerCreate calls the CoreFoundation framework function CFStringTokenizerCreate.
func CFStringTokenizerGetCurrentTokenRange ¶
CFStringTokenizerGetCurrentTokenRange calls the CoreFoundation framework function CFStringTokenizerGetCurrentTokenRange.
func CFStringTokenizerGetTypeID ¶
func CFStringTokenizerGetTypeID() int
CFStringTokenizerGetTypeID calls the CoreFoundation framework function CFStringTokenizerGetTypeID.
func CFStringTokenizerSetString ¶
CFStringTokenizerSetString calls the CoreFoundation framework function CFStringTokenizerSetString.
func CFStringTrim ¶
CFStringTrim calls the CoreFoundation framework function CFStringTrim.
func CFStringTrimWhitespace ¶
CFStringTrimWhitespace calls the CoreFoundation framework function CFStringTrimWhitespace.
func CFStringUppercase ¶
CFStringUppercase calls the CoreFoundation framework function CFStringUppercase.
func CFSwapInt16 ¶
CFSwapInt16 calls the CoreFoundation framework function CFSwapInt16.
func CFSwapInt16BigToHost ¶
CFSwapInt16BigToHost calls the CoreFoundation framework function CFSwapInt16BigToHost.
func CFSwapInt16HostToBig ¶
CFSwapInt16HostToBig calls the CoreFoundation framework function CFSwapInt16HostToBig.
func CFSwapInt16HostToLittle ¶
CFSwapInt16HostToLittle calls the CoreFoundation framework function CFSwapInt16HostToLittle.
func CFSwapInt16LittleToHost ¶
CFSwapInt16LittleToHost calls the CoreFoundation framework function CFSwapInt16LittleToHost.
func CFSwapInt32 ¶
CFSwapInt32 calls the CoreFoundation framework function CFSwapInt32.
func CFSwapInt32BigToHost ¶
CFSwapInt32BigToHost calls the CoreFoundation framework function CFSwapInt32BigToHost.
func CFSwapInt32HostToBig ¶
CFSwapInt32HostToBig calls the CoreFoundation framework function CFSwapInt32HostToBig.
func CFSwapInt32HostToLittle ¶
CFSwapInt32HostToLittle calls the CoreFoundation framework function CFSwapInt32HostToLittle.
func CFSwapInt32LittleToHost ¶
CFSwapInt32LittleToHost calls the CoreFoundation framework function CFSwapInt32LittleToHost.
func CFSwapInt64 ¶
CFSwapInt64 calls the CoreFoundation framework function CFSwapInt64.
func CFSwapInt64BigToHost ¶
CFSwapInt64BigToHost calls the CoreFoundation framework function CFSwapInt64BigToHost.
func CFSwapInt64HostToBig ¶
CFSwapInt64HostToBig calls the CoreFoundation framework function CFSwapInt64HostToBig.
func CFSwapInt64HostToLittle ¶
CFSwapInt64HostToLittle calls the CoreFoundation framework function CFSwapInt64HostToLittle.
func CFSwapInt64LittleToHost ¶
CFSwapInt64LittleToHost calls the CoreFoundation framework function CFSwapInt64LittleToHost.
func CFTimeZoneCopyAbbreviation ¶
CFTimeZoneCopyAbbreviation calls the CoreFoundation framework function CFTimeZoneCopyAbbreviation.
func CFTimeZoneCopyAbbreviationDictionary ¶
CFTimeZoneCopyAbbreviationDictionary calls the CoreFoundation framework function CFTimeZoneCopyAbbreviationDictionary.
func CFTimeZoneCopyDefault ¶
CFTimeZoneCopyDefault calls the CoreFoundation framework function CFTimeZoneCopyDefault.
func CFTimeZoneCopyKnownNames ¶
CFTimeZoneCopyKnownNames calls the CoreFoundation framework function CFTimeZoneCopyKnownNames.
func CFTimeZoneCopyLocalizedName ¶
func CFTimeZoneCopyLocalizedName(tz obj.Object, style CFTimeZoneNameStyle, locale obj.Object) obj.Object
CFTimeZoneCopyLocalizedName calls the CoreFoundation framework function CFTimeZoneCopyLocalizedName.
func CFTimeZoneCopySystem ¶
CFTimeZoneCopySystem calls the CoreFoundation framework function CFTimeZoneCopySystem.
func CFTimeZoneCreate ¶
CFTimeZoneCreate calls the CoreFoundation framework function CFTimeZoneCreate.
func CFTimeZoneCreateWithName ¶
CFTimeZoneCreateWithName calls the CoreFoundation framework function CFTimeZoneCreateWithName.
func CFTimeZoneCreateWithTimeIntervalFromGMT ¶
CFTimeZoneCreateWithTimeIntervalFromGMT calls the CoreFoundation framework function CFTimeZoneCreateWithTimeIntervalFromGMT.
func CFTimeZoneGetData ¶
CFTimeZoneGetData calls the CoreFoundation framework function CFTimeZoneGetData.
func CFTimeZoneGetDaylightSavingTimeOffset ¶
CFTimeZoneGetDaylightSavingTimeOffset calls the CoreFoundation framework function CFTimeZoneGetDaylightSavingTimeOffset.
func CFTimeZoneGetName ¶
CFTimeZoneGetName calls the CoreFoundation framework function CFTimeZoneGetName.
func CFTimeZoneGetNextDaylightSavingTimeTransition ¶
CFTimeZoneGetNextDaylightSavingTimeTransition calls the CoreFoundation framework function CFTimeZoneGetNextDaylightSavingTimeTransition.
func CFTimeZoneGetSecondsFromGMT ¶
CFTimeZoneGetSecondsFromGMT calls the CoreFoundation framework function CFTimeZoneGetSecondsFromGMT.
func CFTimeZoneGetTypeID ¶
func CFTimeZoneGetTypeID() int
CFTimeZoneGetTypeID calls the CoreFoundation framework function CFTimeZoneGetTypeID.
func CFTimeZoneIsDaylightSavingTime ¶
CFTimeZoneIsDaylightSavingTime calls the CoreFoundation framework function CFTimeZoneIsDaylightSavingTime.
func CFTimeZoneResetSystem ¶
func CFTimeZoneResetSystem()
CFTimeZoneResetSystem calls the CoreFoundation framework function CFTimeZoneResetSystem.
func CFTimeZoneSetAbbreviationDictionary ¶
CFTimeZoneSetAbbreviationDictionary calls the CoreFoundation framework function CFTimeZoneSetAbbreviationDictionary.
func CFTimeZoneSetDefault ¶
CFTimeZoneSetDefault calls the CoreFoundation framework function CFTimeZoneSetDefault.
func CFTreeAppendChild ¶
CFTreeAppendChild calls the CoreFoundation framework function CFTreeAppendChild.
func CFTreeApplyFunctionToChildren ¶
func CFTreeApplyFunctionToChildren(tree obj.Object, applier unsafe.Pointer, context_ unsafe.Pointer)
CFTreeApplyFunctionToChildren calls the CoreFoundation framework function CFTreeApplyFunctionToChildren.
func CFTreeCreate ¶
CFTreeCreate calls the CoreFoundation framework function CFTreeCreate.
func CFTreeFindRoot ¶
CFTreeFindRoot calls the CoreFoundation framework function CFTreeFindRoot.
func CFTreeGetChildAtIndex ¶
CFTreeGetChildAtIndex calls the CoreFoundation framework function CFTreeGetChildAtIndex.
func CFTreeGetChildCount ¶
CFTreeGetChildCount calls the CoreFoundation framework function CFTreeGetChildCount.
func CFTreeGetChildren ¶
CFTreeGetChildren calls the CoreFoundation framework function CFTreeGetChildren.
func CFTreeGetContext ¶
CFTreeGetContext calls the CoreFoundation framework function CFTreeGetContext.
func CFTreeGetFirstChild ¶
CFTreeGetFirstChild calls the CoreFoundation framework function CFTreeGetFirstChild.
func CFTreeGetNextSibling ¶
CFTreeGetNextSibling calls the CoreFoundation framework function CFTreeGetNextSibling.
func CFTreeGetParent ¶
CFTreeGetParent calls the CoreFoundation framework function CFTreeGetParent.
func CFTreeGetTypeID ¶
func CFTreeGetTypeID() int
CFTreeGetTypeID calls the CoreFoundation framework function CFTreeGetTypeID.
func CFTreeInsertSibling ¶
CFTreeInsertSibling calls the CoreFoundation framework function CFTreeInsertSibling.
func CFTreePrependChild ¶
CFTreePrependChild calls the CoreFoundation framework function CFTreePrependChild.
func CFTreeRemove ¶
CFTreeRemove calls the CoreFoundation framework function CFTreeRemove.
func CFTreeRemoveAllChildren ¶
CFTreeRemoveAllChildren calls the CoreFoundation framework function CFTreeRemoveAllChildren.
func CFTreeSetContext ¶
CFTreeSetContext calls the CoreFoundation framework function CFTreeSetContext.
func CFTreeSortChildren ¶
CFTreeSortChildren calls the CoreFoundation framework function CFTreeSortChildren.
func CFURLCanBeDecomposed ¶
CFURLCanBeDecomposed calls the CoreFoundation framework function CFURLCanBeDecomposed.
func CFURLClearResourcePropertyCache ¶
CFURLClearResourcePropertyCache calls the CoreFoundation framework function CFURLClearResourcePropertyCache.
func CFURLClearResourcePropertyCacheForKey ¶
CFURLClearResourcePropertyCacheForKey calls the CoreFoundation framework function CFURLClearResourcePropertyCacheForKey.
func CFURLCopyAbsoluteURL ¶
CFURLCopyAbsoluteURL calls the CoreFoundation framework function CFURLCopyAbsoluteURL.
func CFURLCopyFileSystemPath ¶
func CFURLCopyFileSystemPath(anURL obj.Object, pathStyle CFURLPathStyle) obj.Object
CFURLCopyFileSystemPath calls the CoreFoundation framework function CFURLCopyFileSystemPath.
func CFURLCopyFragment ¶
CFURLCopyFragment calls the CoreFoundation framework function CFURLCopyFragment.
func CFURLCopyHostName ¶
CFURLCopyHostName calls the CoreFoundation framework function CFURLCopyHostName.
func CFURLCopyLastPathComponent ¶
CFURLCopyLastPathComponent calls the CoreFoundation framework function CFURLCopyLastPathComponent.
func CFURLCopyNetLocation ¶
CFURLCopyNetLocation calls the CoreFoundation framework function CFURLCopyNetLocation.
func CFURLCopyParameterString ¶
CFURLCopyParameterString calls the CoreFoundation framework function CFURLCopyParameterString.
func CFURLCopyPassword ¶
CFURLCopyPassword calls the CoreFoundation framework function CFURLCopyPassword.
func CFURLCopyPath ¶
CFURLCopyPath calls the CoreFoundation framework function CFURLCopyPath.
func CFURLCopyPathExtension ¶
CFURLCopyPathExtension calls the CoreFoundation framework function CFURLCopyPathExtension.
func CFURLCopyQueryString ¶
CFURLCopyQueryString calls the CoreFoundation framework function CFURLCopyQueryString.
func CFURLCopyResourceSpecifier ¶
CFURLCopyResourceSpecifier calls the CoreFoundation framework function CFURLCopyResourceSpecifier.
func CFURLCopyScheme ¶
CFURLCopyScheme calls the CoreFoundation framework function CFURLCopyScheme.
func CFURLCopyStrictPath ¶
CFURLCopyStrictPath calls the CoreFoundation framework function CFURLCopyStrictPath.
func CFURLCopyUserName ¶
CFURLCopyUserName calls the CoreFoundation framework function CFURLCopyUserName.
func CFURLCreateAbsoluteURLWithBytes ¶
func CFURLCreateAbsoluteURLWithBytes(alloc obj.Object, relativeURLBytes unsafe.Pointer, length int, encoding int, baseURL obj.Object, useCompatibilityMode uint8) obj.Object
CFURLCreateAbsoluteURLWithBytes calls the CoreFoundation framework function CFURLCreateAbsoluteURLWithBytes.
func CFURLCreateBookmarkData ¶
func CFURLCreateBookmarkDataFromAliasRecord ¶
func CFURLCreateBookmarkDataFromAliasRecord(allocatorRef obj.Object, aliasRecordDataRef obj.Object) obj.Object
CFURLCreateBookmarkDataFromAliasRecord calls the CoreFoundation framework function CFURLCreateBookmarkDataFromAliasRecord.
func CFURLCreateByResolvingBookmarkData ¶
func CFURLCreateByResolvingBookmarkData(allocator obj.Object, bookmark obj.Object, options CFURLBookmarkResolutionOptions, relativeToURL obj.Object, resourcePropertiesToInclude obj.Object, err unsafe.Pointer) (result obj.Object, isStale uint8)
CFURLCreateByResolvingBookmarkData calls the CoreFoundation framework function CFURLCreateByResolvingBookmarkData.
func CFURLCreateCopyAppendingPathComponent ¶
func CFURLCreateCopyAppendingPathComponent(allocator obj.Object, url obj.Object, pathComponent obj.Object, isDirectory uint8) obj.Object
CFURLCreateCopyAppendingPathComponent calls the CoreFoundation framework function CFURLCreateCopyAppendingPathComponent.
func CFURLCreateCopyAppendingPathExtension ¶
func CFURLCreateCopyAppendingPathExtension(allocator obj.Object, url obj.Object, extension obj.Object) obj.Object
CFURLCreateCopyAppendingPathExtension calls the CoreFoundation framework function CFURLCreateCopyAppendingPathExtension.
func CFURLCreateCopyDeletingLastPathComponent ¶
CFURLCreateCopyDeletingLastPathComponent calls the CoreFoundation framework function CFURLCreateCopyDeletingLastPathComponent.
func CFURLCreateCopyDeletingPathExtension ¶
CFURLCreateCopyDeletingPathExtension calls the CoreFoundation framework function CFURLCreateCopyDeletingPathExtension.
func CFURLCreateData ¶
func CFURLCreateData(allocator obj.Object, url obj.Object, encoding int, escapeWhitespace uint8) obj.Object
CFURLCreateData calls the CoreFoundation framework function CFURLCreateData.
func CFURLCreateDataAndPropertiesFromResource ¶
func CFURLCreateDataAndPropertiesFromResource(alloc obj.Object, url obj.Object, resourceData unsafe.Pointer, properties unsafe.Pointer, desiredProperties obj.Object) (result uint8, errorCode int)
CFURLCreateDataAndPropertiesFromResource calls the CoreFoundation framework function CFURLCreateDataAndPropertiesFromResource.
func CFURLCreateFilePathURL ¶
func CFURLCreateFromFSRef ¶
CFURLCreateFromFSRef calls the CoreFoundation framework function CFURLCreateFromFSRef.
func CFURLCreateFromFileSystemRepresentation ¶
func CFURLCreateFromFileSystemRepresentation(allocator obj.Object, bufLen int, isDirectory uint8) (result obj.Object, buffer uint8)
CFURLCreateFromFileSystemRepresentation calls the CoreFoundation framework function CFURLCreateFromFileSystemRepresentation.
func CFURLCreateFromFileSystemRepresentationRelativeToBase ¶
func CFURLCreateFromFileSystemRepresentationRelativeToBase(allocator obj.Object, bufLen int, isDirectory uint8, baseURL obj.Object) (result obj.Object, buffer uint8)
CFURLCreateFromFileSystemRepresentationRelativeToBase calls the CoreFoundation framework function CFURLCreateFromFileSystemRepresentationRelativeToBase.
func CFURLCreatePropertyFromResource ¶
func CFURLCreatePropertyFromResource(alloc obj.Object, url obj.Object, property obj.Object) (result obj.Object, errorCode int)
CFURLCreatePropertyFromResource calls the CoreFoundation framework function CFURLCreatePropertyFromResource.
func CFURLCreateResourcePropertiesForKeysFromBookmarkData ¶
func CFURLCreateResourcePropertiesForKeysFromBookmarkData(allocator obj.Object, resourcePropertiesToReturn obj.Object, bookmark obj.Object) obj.Object
CFURLCreateResourcePropertiesForKeysFromBookmarkData calls the CoreFoundation framework function CFURLCreateResourcePropertiesForKeysFromBookmarkData.
func CFURLCreateResourcePropertyForKeyFromBookmarkData ¶
func CFURLCreateResourcePropertyForKeyFromBookmarkData(allocator obj.Object, resourcePropertyKey obj.Object, bookmark obj.Object) obj.Object
CFURLCreateResourcePropertyForKeyFromBookmarkData calls the CoreFoundation framework function CFURLCreateResourcePropertyForKeyFromBookmarkData.
func CFURLCreateStringByAddingPercentEscapes ¶
func CFURLCreateStringByAddingPercentEscapes(allocator obj.Object, originalString obj.Object, charactersToLeaveUnescaped obj.Object, legalURLCharactersToBeEscaped obj.Object, encoding int) obj.Object
CFURLCreateStringByAddingPercentEscapes calls the CoreFoundation framework function CFURLCreateStringByAddingPercentEscapes.
func CFURLCreateStringByReplacingPercentEscapes ¶
func CFURLCreateStringByReplacingPercentEscapes(allocator obj.Object, originalString obj.Object, charactersToLeaveEscaped obj.Object) obj.Object
CFURLCreateStringByReplacingPercentEscapes calls the CoreFoundation framework function CFURLCreateStringByReplacingPercentEscapes.
func CFURLCreateStringByReplacingPercentEscapesUsingEncoding ¶
func CFURLCreateStringByReplacingPercentEscapesUsingEncoding(allocator obj.Object, origString obj.Object, charsToLeaveEscaped obj.Object, encoding int) obj.Object
CFURLCreateStringByReplacingPercentEscapesUsingEncoding calls the CoreFoundation framework function CFURLCreateStringByReplacingPercentEscapesUsingEncoding.
func CFURLCreateWithBytes ¶
func CFURLCreateWithBytes(allocator obj.Object, urlBytes unsafe.Pointer, length int, encoding int, baseURL obj.Object) obj.Object
CFURLCreateWithBytes calls the CoreFoundation framework function CFURLCreateWithBytes.
func CFURLCreateWithFileSystemPath ¶
func CFURLCreateWithFileSystemPath(allocator obj.Object, filePath obj.Object, pathStyle CFURLPathStyle, isDirectory uint8) obj.Object
CFURLCreateWithFileSystemPath calls the CoreFoundation framework function CFURLCreateWithFileSystemPath.
func CFURLCreateWithFileSystemPathRelativeToBase ¶
func CFURLCreateWithFileSystemPathRelativeToBase(allocator obj.Object, filePath obj.Object, pathStyle CFURLPathStyle, isDirectory uint8, baseURL obj.Object) obj.Object
CFURLCreateWithFileSystemPathRelativeToBase calls the CoreFoundation framework function CFURLCreateWithFileSystemPathRelativeToBase.
func CFURLCreateWithString ¶
func CFURLCreateWithString(allocator obj.Object, urlString obj.Object, baseURL obj.Object) obj.Object
CFURLCreateWithString calls the CoreFoundation framework function CFURLCreateWithString.
func CFURLDestroyResource ¶
CFURLDestroyResource calls the CoreFoundation framework function CFURLDestroyResource.
func CFURLEnumeratorCreateForDirectoryURL ¶
func CFURLEnumeratorCreateForDirectoryURL(alloc obj.Object, directoryURL obj.Object, option CFURLEnumeratorOptions, propertyKeys obj.Object) obj.Object
CFURLEnumeratorCreateForDirectoryURL calls the CoreFoundation framework function CFURLEnumeratorCreateForDirectoryURL.
func CFURLEnumeratorCreateForMountedVolumes ¶
func CFURLEnumeratorCreateForMountedVolumes(alloc obj.Object, option CFURLEnumeratorOptions, propertyKeys obj.Object) obj.Object
CFURLEnumeratorCreateForMountedVolumes calls the CoreFoundation framework function CFURLEnumeratorCreateForMountedVolumes.
func CFURLEnumeratorGetDescendentLevel ¶
CFURLEnumeratorGetDescendentLevel calls the CoreFoundation framework function CFURLEnumeratorGetDescendentLevel.
func CFURLEnumeratorGetSourceDidChange ¶
CFURLEnumeratorGetSourceDidChange calls the CoreFoundation framework function CFURLEnumeratorGetSourceDidChange.
func CFURLEnumeratorGetTypeID ¶
func CFURLEnumeratorGetTypeID() int
CFURLEnumeratorGetTypeID calls the CoreFoundation framework function CFURLEnumeratorGetTypeID.
func CFURLEnumeratorSkipDescendents ¶
CFURLEnumeratorSkipDescendents calls the CoreFoundation framework function CFURLEnumeratorSkipDescendents.
func CFURLGetBaseURL ¶
CFURLGetBaseURL calls the CoreFoundation framework function CFURLGetBaseURL.
func CFURLGetBytes ¶
CFURLGetBytes calls the CoreFoundation framework function CFURLGetBytes.
func CFURLGetFSRef ¶
CFURLGetFSRef calls the CoreFoundation framework function CFURLGetFSRef.
func CFURLGetFileSystemRepresentation ¶
func CFURLGetFileSystemRepresentation(url obj.Object, resolveAgainstBase uint8, maxBufLen int) (result uint8, buffer uint8)
CFURLGetFileSystemRepresentation calls the CoreFoundation framework function CFURLGetFileSystemRepresentation.
func CFURLGetPortNumber ¶
CFURLGetPortNumber calls the CoreFoundation framework function CFURLGetPortNumber.
func CFURLGetString ¶
CFURLGetString calls the CoreFoundation framework function CFURLGetString.
func CFURLGetTypeID ¶
func CFURLGetTypeID() int
CFURLGetTypeID calls the CoreFoundation framework function CFURLGetTypeID.
func CFURLHasDirectoryPath ¶
CFURLHasDirectoryPath calls the CoreFoundation framework function CFURLHasDirectoryPath.
func CFURLIsFileReferenceURL ¶
CFURLIsFileReferenceURL calls the CoreFoundation framework function CFURLIsFileReferenceURL.
func CFURLSetTemporaryResourcePropertyForKey ¶
func CFURLSetTemporaryResourcePropertyForKey(url obj.Object, key obj.Object, propertyValue obj.Object)
CFURLSetTemporaryResourcePropertyForKey calls the CoreFoundation framework function CFURLSetTemporaryResourcePropertyForKey.
func CFURLStartAccessingSecurityScopedResource ¶
CFURLStartAccessingSecurityScopedResource calls the CoreFoundation framework function CFURLStartAccessingSecurityScopedResource.
func CFURLStopAccessingSecurityScopedResource ¶
CFURLStopAccessingSecurityScopedResource calls the CoreFoundation framework function CFURLStopAccessingSecurityScopedResource.
func CFURLWriteDataAndPropertiesToResource ¶
func CFURLWriteDataAndPropertiesToResource(url obj.Object, dataToWrite obj.Object, propertiesToWrite obj.Object) (result uint8, errorCode int)
CFURLWriteDataAndPropertiesToResource calls the CoreFoundation framework function CFURLWriteDataAndPropertiesToResource.
func CFUUIDCreate ¶
CFUUIDCreate calls the CoreFoundation framework function CFUUIDCreate.
func CFUUIDCreateFromString ¶
CFUUIDCreateFromString calls the CoreFoundation framework function CFUUIDCreateFromString.
func CFUUIDCreateFromUUIDBytes ¶
CFUUIDCreateFromUUIDBytes calls the CoreFoundation framework function CFUUIDCreateFromUUIDBytes.
func CFUUIDCreateString ¶
CFUUIDCreateString calls the CoreFoundation framework function CFUUIDCreateString.
func CFUUIDCreateWithBytes ¶
func CFUUIDCreateWithBytes(alloc obj.Object, 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) obj.Object
CFUUIDCreateWithBytes calls the CoreFoundation framework function CFUUIDCreateWithBytes.
func CFUUIDGetConstantUUIDWithBytes ¶
func CFUUIDGetConstantUUIDWithBytes(alloc obj.Object, 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) obj.Object
CFUUIDGetConstantUUIDWithBytes calls the CoreFoundation framework function CFUUIDGetConstantUUIDWithBytes.
func CFUUIDGetTypeID ¶
func CFUUIDGetTypeID() int
CFUUIDGetTypeID calls the CoreFoundation framework function CFUUIDGetTypeID.
func CFUUIDGetUUIDBytes ¶
CFUUIDGetUUIDBytes calls the CoreFoundation framework function CFUUIDGetUUIDBytes.
func CFUserNotificationCancel ¶
CFUserNotificationCancel calls the CoreFoundation framework function CFUserNotificationCancel.
func CFUserNotificationCheckBoxChecked ¶
CFUserNotificationCheckBoxChecked calls the CoreFoundation framework function CFUserNotificationCheckBoxChecked.
func CFUserNotificationCreate ¶
func CFUserNotificationCreate(allocator obj.Object, timeout float64, flags int, dictionary obj.Object) (result obj.Object, err int)
CFUserNotificationCreate calls the CoreFoundation framework function CFUserNotificationCreate.
func CFUserNotificationCreateRunLoopSource ¶
func CFUserNotificationCreateRunLoopSource(allocator obj.Object, userNotification obj.Object, callout unsafe.Pointer, order int) obj.Object
CFUserNotificationCreateRunLoopSource calls the CoreFoundation framework function CFUserNotificationCreateRunLoopSource.
func CFUserNotificationDisplayAlert ¶
func CFUserNotificationDisplayAlert(timeout float64, flags int, iconURL obj.Object, soundURL obj.Object, localizationURL obj.Object, alertHeader obj.Object, alertMessage obj.Object, defaultButtonTitle obj.Object, alternateButtonTitle obj.Object, otherButtonTitle obj.Object) (result int, responseFlags int)
CFUserNotificationDisplayAlert calls the CoreFoundation framework function CFUserNotificationDisplayAlert.
func CFUserNotificationDisplayNotice ¶
func CFUserNotificationDisplayNotice(timeout float64, flags int, iconURL obj.Object, soundURL obj.Object, localizationURL obj.Object, alertHeader obj.Object, alertMessage obj.Object, defaultButtonTitle obj.Object) int
CFUserNotificationDisplayNotice calls the CoreFoundation framework function CFUserNotificationDisplayNotice.
func CFUserNotificationGetResponseDictionary ¶
CFUserNotificationGetResponseDictionary calls the CoreFoundation framework function CFUserNotificationGetResponseDictionary.
func CFUserNotificationGetResponseValue ¶
func CFUserNotificationGetResponseValue(userNotification obj.Object, key obj.Object, idx int) obj.Object
CFUserNotificationGetResponseValue calls the CoreFoundation framework function CFUserNotificationGetResponseValue.
func CFUserNotificationGetTypeID ¶
func CFUserNotificationGetTypeID() int
CFUserNotificationGetTypeID calls the CoreFoundation framework function CFUserNotificationGetTypeID.
func CFUserNotificationPopUpSelection ¶
CFUserNotificationPopUpSelection calls the CoreFoundation framework function CFUserNotificationPopUpSelection.
func CFUserNotificationReceiveResponse ¶
func CFUserNotificationReceiveResponse(userNotification obj.Object, timeout float64) (result int, responseFlags int)
CFUserNotificationReceiveResponse calls the CoreFoundation framework function CFUserNotificationReceiveResponse.
func CFUserNotificationSecureTextField ¶
CFUserNotificationSecureTextField calls the CoreFoundation framework function CFUserNotificationSecureTextField.
func CFUserNotificationUpdate ¶
func CFUserNotificationUpdate(userNotification obj.Object, timeout float64, flags int, dictionary obj.Object) int
CFUserNotificationUpdate calls the CoreFoundation framework function CFUserNotificationUpdate.
func CFWriteStreamCanAcceptBytes ¶
CFWriteStreamCanAcceptBytes calls the CoreFoundation framework function CFWriteStreamCanAcceptBytes.
func CFWriteStreamClose ¶
CFWriteStreamClose calls the CoreFoundation framework function CFWriteStreamClose.
func CFWriteStreamCopyDispatchQueue ¶
CFWriteStreamCopyDispatchQueue calls the CoreFoundation framework function CFWriteStreamCopyDispatchQueue.
func CFWriteStreamCopyError ¶
CFWriteStreamCopyError calls the CoreFoundation framework function CFWriteStreamCopyError.
func CFWriteStreamCopyProperty ¶
CFWriteStreamCopyProperty calls the CoreFoundation framework function CFWriteStreamCopyProperty.
func CFWriteStreamCreateWithAllocatedBuffers ¶
func CFWriteStreamCreateWithAllocatedBuffers(alloc obj.Object, bufferAllocator obj.Object) obj.Object
CFWriteStreamCreateWithAllocatedBuffers calls the CoreFoundation framework function CFWriteStreamCreateWithAllocatedBuffers.
func CFWriteStreamCreateWithBuffer ¶
func CFWriteStreamCreateWithBuffer(alloc obj.Object, bufferCapacity int) (result obj.Object, buffer uint8)
CFWriteStreamCreateWithBuffer calls the CoreFoundation framework function CFWriteStreamCreateWithBuffer.
func CFWriteStreamCreateWithFile ¶
CFWriteStreamCreateWithFile calls the CoreFoundation framework function CFWriteStreamCreateWithFile.
func CFWriteStreamGetError ¶
CFWriteStreamGetError calls the CoreFoundation framework function CFWriteStreamGetError.
func CFWriteStreamGetTypeID ¶
func CFWriteStreamGetTypeID() int
CFWriteStreamGetTypeID calls the CoreFoundation framework function CFWriteStreamGetTypeID.
func CFWriteStreamOpen ¶
CFWriteStreamOpen calls the CoreFoundation framework function CFWriteStreamOpen.
func CFWriteStreamScheduleWithRunLoop ¶
func CFWriteStreamScheduleWithRunLoop(stream obj.Object, runLoop obj.Object, runLoopMode unsafe.Pointer)
CFWriteStreamScheduleWithRunLoop calls the CoreFoundation framework function CFWriteStreamScheduleWithRunLoop.
func CFWriteStreamSetClient ¶
func CFWriteStreamSetClient(stream obj.Object, streamEvents int, clientCB unsafe.Pointer, clientContext unsafe.Pointer) uint8
CFWriteStreamSetClient calls the CoreFoundation framework function CFWriteStreamSetClient.
func CFWriteStreamSetDispatchQueue ¶
CFWriteStreamSetDispatchQueue calls the CoreFoundation framework function CFWriteStreamSetDispatchQueue.
func CFWriteStreamSetProperty ¶
func CFWriteStreamSetProperty(stream obj.Object, propertyName unsafe.Pointer, propertyValue obj.Object) uint8
CFWriteStreamSetProperty calls the CoreFoundation framework function CFWriteStreamSetProperty.
func CFWriteStreamUnscheduleFromRunLoop ¶
func CFWriteStreamUnscheduleFromRunLoop(stream obj.Object, runLoop obj.Object, runLoopMode unsafe.Pointer)
CFWriteStreamUnscheduleFromRunLoop calls the CoreFoundation framework function CFWriteStreamUnscheduleFromRunLoop.
func CFWriteStreamWrite ¶
CFWriteStreamWrite calls the CoreFoundation framework function CFWriteStreamWrite.
func CFXMLCreateStringByEscapingEntities ¶
func CFXMLCreateStringByEscapingEntities(allocator obj.Object, str obj.Object, entitiesDictionary obj.Object) obj.Object
CFXMLCreateStringByEscapingEntities calls the CoreFoundation framework function CFXMLCreateStringByEscapingEntities.
func CFXMLCreateStringByUnescapingEntities ¶
func CFXMLCreateStringByUnescapingEntities(allocator obj.Object, str obj.Object, entitiesDictionary obj.Object) obj.Object
CFXMLCreateStringByUnescapingEntities calls the CoreFoundation framework function CFXMLCreateStringByUnescapingEntities.
func CFXMLNodeCreate ¶
func CFXMLNodeCreate(alloc obj.Object, xmlType CFXMLNodeTypeCode, dataString obj.Object, additionalInfoPtr unsafe.Pointer, version int) obj.Object
CFXMLNodeCreate calls the CoreFoundation framework function CFXMLNodeCreate.
func CFXMLNodeCreateCopy ¶
CFXMLNodeCreateCopy calls the CoreFoundation framework function CFXMLNodeCreateCopy.
func CFXMLNodeGetInfoPtr ¶
CFXMLNodeGetInfoPtr calls the CoreFoundation framework function CFXMLNodeGetInfoPtr.
func CFXMLNodeGetString ¶
CFXMLNodeGetString calls the CoreFoundation framework function CFXMLNodeGetString.
func CFXMLNodeGetTypeID ¶
func CFXMLNodeGetTypeID() int
CFXMLNodeGetTypeID calls the CoreFoundation framework function CFXMLNodeGetTypeID.
func CFXMLNodeGetVersion ¶
CFXMLNodeGetVersion calls the CoreFoundation framework function CFXMLNodeGetVersion.
func CFXMLParserAbort ¶
func CFXMLParserAbort(parser obj.Object, errorCode CFXMLParserStatusCode, errorDescription obj.Object)
CFXMLParserAbort calls the CoreFoundation framework function CFXMLParserAbort.
func CFXMLParserCopyErrorDescription ¶
CFXMLParserCopyErrorDescription calls the CoreFoundation framework function CFXMLParserCopyErrorDescription.
func CFXMLParserCreate ¶
func CFXMLParserCreate(allocator obj.Object, xmlData obj.Object, dataSource obj.Object, parseOptions int, versionOfNodes int, callBacks unsafe.Pointer, context_ unsafe.Pointer) obj.Object
CFXMLParserCreate calls the CoreFoundation framework function CFXMLParserCreate.
func CFXMLParserCreateWithDataFromURL ¶
func CFXMLParserCreateWithDataFromURL(allocator obj.Object, dataSource obj.Object, parseOptions int, versionOfNodes int, callBacks unsafe.Pointer, context_ unsafe.Pointer) obj.Object
CFXMLParserCreateWithDataFromURL calls the CoreFoundation framework function CFXMLParserCreateWithDataFromURL.
func CFXMLParserGetCallBacks ¶
CFXMLParserGetCallBacks calls the CoreFoundation framework function CFXMLParserGetCallBacks.
func CFXMLParserGetContext ¶
CFXMLParserGetContext calls the CoreFoundation framework function CFXMLParserGetContext.
func CFXMLParserGetDocument ¶
CFXMLParserGetDocument calls the CoreFoundation framework function CFXMLParserGetDocument.
func CFXMLParserGetLineNumber ¶
CFXMLParserGetLineNumber calls the CoreFoundation framework function CFXMLParserGetLineNumber.
func CFXMLParserGetLocation ¶
CFXMLParserGetLocation calls the CoreFoundation framework function CFXMLParserGetLocation.
func CFXMLParserGetSourceURL ¶
CFXMLParserGetSourceURL calls the CoreFoundation framework function CFXMLParserGetSourceURL.
func CFXMLParserGetTypeID ¶
func CFXMLParserGetTypeID() int
CFXMLParserGetTypeID calls the CoreFoundation framework function CFXMLParserGetTypeID.
func CFXMLParserParse ¶
CFXMLParserParse calls the CoreFoundation framework function CFXMLParserParse.
func CFXMLTreeCreateFromData ¶
func CFXMLTreeCreateFromData(allocator obj.Object, xmlData obj.Object, dataSource obj.Object, parseOptions int, versionOfNodes int) obj.Object
CFXMLTreeCreateFromData calls the CoreFoundation framework function CFXMLTreeCreateFromData.
func CFXMLTreeCreateFromDataWithError ¶
func CFXMLTreeCreateFromDataWithError(allocator obj.Object, xmlData obj.Object, dataSource obj.Object, parseOptions int, versionOfNodes int, errorDict unsafe.Pointer) obj.Object
CFXMLTreeCreateFromDataWithError calls the CoreFoundation framework function CFXMLTreeCreateFromDataWithError.
func CFXMLTreeCreateWithDataFromURL ¶
func CFXMLTreeCreateWithDataFromURL(allocator obj.Object, dataSource obj.Object, parseOptions int, versionOfNodes int) obj.Object
CFXMLTreeCreateWithDataFromURL calls the CoreFoundation framework function CFXMLTreeCreateWithDataFromURL.
func CFXMLTreeCreateWithNode ¶
CFXMLTreeCreateWithNode calls the CoreFoundation framework function CFXMLTreeCreateWithNode.
func CFXMLTreeCreateXMLData ¶
CFXMLTreeCreateXMLData calls the CoreFoundation framework function CFXMLTreeCreateXMLData.
func CFXMLTreeGetNode ¶
CFXMLTreeGetNode calls the CoreFoundation framework function CFXMLTreeGetNode.
func KCFAbsoluteTimeIntervalSince1904 ¶
func KCFAbsoluteTimeIntervalSince1904() float64
KCFAbsoluteTimeIntervalSince1904 returns the value of the constant kCFAbsoluteTimeIntervalSince1904.
func KCFAbsoluteTimeIntervalSince1970 ¶
func KCFAbsoluteTimeIntervalSince1970() float64
KCFAbsoluteTimeIntervalSince1970 returns the value of the constant kCFAbsoluteTimeIntervalSince1970.
func KCFAllocatorDefault ¶
KCFAllocatorDefault returns the value of the constant kCFAllocatorDefault.
func KCFAllocatorMalloc ¶
KCFAllocatorMalloc returns the value of the constant kCFAllocatorMalloc.
func KCFAllocatorMallocZone ¶
KCFAllocatorMallocZone returns the value of the constant kCFAllocatorMallocZone.
func KCFAllocatorNull ¶
KCFAllocatorNull returns the value of the constant kCFAllocatorNull.
func KCFAllocatorSystemDefault ¶
KCFAllocatorSystemDefault returns the value of the constant kCFAllocatorSystemDefault.
func KCFAllocatorUseContext ¶
KCFAllocatorUseContext returns the value of the constant kCFAllocatorUseContext.
func KCFBanglaCalendar ¶
func KCFBanglaCalendar() uintptr
KCFBanglaCalendar returns the address of the symbol kCFBanglaCalendar.
func KCFBooleanFalse ¶
KCFBooleanFalse returns the value of the constant kCFBooleanFalse.
func KCFBooleanTrue ¶
KCFBooleanTrue returns the value of the constant kCFBooleanTrue.
func KCFBuddhistCalendar ¶
func KCFBuddhistCalendar() uintptr
KCFBuddhistCalendar returns the address of the symbol kCFBuddhistCalendar.
func KCFBundleDevelopmentRegionKey ¶
KCFBundleDevelopmentRegionKey returns the value of the constant kCFBundleDevelopmentRegionKey.
func KCFBundleExecutableKey ¶
KCFBundleExecutableKey returns the value of the constant kCFBundleExecutableKey.
func KCFBundleIdentifierKey ¶
KCFBundleIdentifierKey returns the value of the constant kCFBundleIdentifierKey.
func KCFBundleInfoDictionaryVersionKey ¶
KCFBundleInfoDictionaryVersionKey returns the value of the constant kCFBundleInfoDictionaryVersionKey.
func KCFBundleLocalizationsKey ¶
KCFBundleLocalizationsKey returns the value of the constant kCFBundleLocalizationsKey.
func KCFBundleNameKey ¶
KCFBundleNameKey returns the value of the constant kCFBundleNameKey.
func KCFBundleVersionKey ¶
KCFBundleVersionKey returns the value of the constant kCFBundleVersionKey.
func KCFChineseCalendar ¶
func KCFChineseCalendar() uintptr
KCFChineseCalendar returns the address of the symbol kCFChineseCalendar.
func KCFCopyStringBagCallBacks ¶
func KCFCopyStringBagCallBacks() uintptr
KCFCopyStringBagCallBacks returns the address of the symbol kCFCopyStringBagCallBacks.
func KCFCopyStringDictionaryKeyCallBacks ¶
func KCFCopyStringDictionaryKeyCallBacks() uintptr
KCFCopyStringDictionaryKeyCallBacks returns the address of the symbol kCFCopyStringDictionaryKeyCallBacks.
func KCFCopyStringSetCallBacks ¶
func KCFCopyStringSetCallBacks() uintptr
KCFCopyStringSetCallBacks returns the address of the symbol kCFCopyStringSetCallBacks.
func KCFCoreFoundationVersionNumber ¶
func KCFCoreFoundationVersionNumber() float64
KCFCoreFoundationVersionNumber returns the value of the constant kCFCoreFoundationVersionNumber.
func KCFDangiCalendar ¶
func KCFDangiCalendar() uintptr
KCFDangiCalendar returns the address of the symbol kCFDangiCalendar.
func KCFDateFormatterAMSymbol ¶
func KCFDateFormatterAMSymbol() uintptr
KCFDateFormatterAMSymbol returns the address of the symbol kCFDateFormatterAMSymbol.
func KCFDateFormatterCalendar ¶
func KCFDateFormatterCalendar() uintptr
KCFDateFormatterCalendar returns the address of the symbol kCFDateFormatterCalendar.
func KCFDateFormatterCalendarName ¶
func KCFDateFormatterCalendarName() uintptr
KCFDateFormatterCalendarName returns the address of the symbol kCFDateFormatterCalendarName.
func KCFDateFormatterDefaultDate ¶
func KCFDateFormatterDefaultDate() uintptr
KCFDateFormatterDefaultDate returns the address of the symbol kCFDateFormatterDefaultDate.
func KCFDateFormatterDefaultFormat ¶
func KCFDateFormatterDefaultFormat() uintptr
KCFDateFormatterDefaultFormat returns the address of the symbol kCFDateFormatterDefaultFormat.
func KCFDateFormatterDoesRelativeDateFormattingKey ¶
func KCFDateFormatterDoesRelativeDateFormattingKey() uintptr
KCFDateFormatterDoesRelativeDateFormattingKey returns the address of the symbol kCFDateFormatterDoesRelativeDateFormattingKey.
func KCFDateFormatterEraSymbols ¶
func KCFDateFormatterEraSymbols() uintptr
KCFDateFormatterEraSymbols returns the address of the symbol kCFDateFormatterEraSymbols.
func KCFDateFormatterGregorianStartDate ¶
func KCFDateFormatterGregorianStartDate() uintptr
KCFDateFormatterGregorianStartDate returns the address of the symbol kCFDateFormatterGregorianStartDate.
func KCFDateFormatterIsLenient ¶
func KCFDateFormatterIsLenient() uintptr
KCFDateFormatterIsLenient returns the address of the symbol kCFDateFormatterIsLenient.
func KCFDateFormatterLongEraSymbols ¶
func KCFDateFormatterLongEraSymbols() uintptr
KCFDateFormatterLongEraSymbols returns the address of the symbol kCFDateFormatterLongEraSymbols.
func KCFDateFormatterMonthSymbols ¶
func KCFDateFormatterMonthSymbols() uintptr
KCFDateFormatterMonthSymbols returns the address of the symbol kCFDateFormatterMonthSymbols.
func KCFDateFormatterPMSymbol ¶
func KCFDateFormatterPMSymbol() uintptr
KCFDateFormatterPMSymbol returns the address of the symbol kCFDateFormatterPMSymbol.
func KCFDateFormatterQuarterSymbols ¶
func KCFDateFormatterQuarterSymbols() uintptr
KCFDateFormatterQuarterSymbols returns the address of the symbol kCFDateFormatterQuarterSymbols.
func KCFDateFormatterShortMonthSymbols ¶
func KCFDateFormatterShortMonthSymbols() uintptr
KCFDateFormatterShortMonthSymbols returns the address of the symbol kCFDateFormatterShortMonthSymbols.
func KCFDateFormatterShortQuarterSymbols ¶
func KCFDateFormatterShortQuarterSymbols() uintptr
KCFDateFormatterShortQuarterSymbols returns the address of the symbol kCFDateFormatterShortQuarterSymbols.
func KCFDateFormatterShortStandaloneMonthSymbols ¶
func KCFDateFormatterShortStandaloneMonthSymbols() uintptr
KCFDateFormatterShortStandaloneMonthSymbols returns the address of the symbol kCFDateFormatterShortStandaloneMonthSymbols.
func KCFDateFormatterShortStandaloneQuarterSymbols ¶
func KCFDateFormatterShortStandaloneQuarterSymbols() uintptr
KCFDateFormatterShortStandaloneQuarterSymbols returns the address of the symbol kCFDateFormatterShortStandaloneQuarterSymbols.
func KCFDateFormatterShortStandaloneWeekdaySymbols ¶
func KCFDateFormatterShortStandaloneWeekdaySymbols() uintptr
KCFDateFormatterShortStandaloneWeekdaySymbols returns the address of the symbol kCFDateFormatterShortStandaloneWeekdaySymbols.
func KCFDateFormatterShortWeekdaySymbols ¶
func KCFDateFormatterShortWeekdaySymbols() uintptr
KCFDateFormatterShortWeekdaySymbols returns the address of the symbol kCFDateFormatterShortWeekdaySymbols.
func KCFDateFormatterStandaloneMonthSymbols ¶
func KCFDateFormatterStandaloneMonthSymbols() uintptr
KCFDateFormatterStandaloneMonthSymbols returns the address of the symbol kCFDateFormatterStandaloneMonthSymbols.
func KCFDateFormatterStandaloneQuarterSymbols ¶
func KCFDateFormatterStandaloneQuarterSymbols() uintptr
KCFDateFormatterStandaloneQuarterSymbols returns the address of the symbol kCFDateFormatterStandaloneQuarterSymbols.
func KCFDateFormatterStandaloneWeekdaySymbols ¶
func KCFDateFormatterStandaloneWeekdaySymbols() uintptr
KCFDateFormatterStandaloneWeekdaySymbols returns the address of the symbol kCFDateFormatterStandaloneWeekdaySymbols.
func KCFDateFormatterTimeZone ¶
func KCFDateFormatterTimeZone() uintptr
KCFDateFormatterTimeZone returns the address of the symbol kCFDateFormatterTimeZone.
func KCFDateFormatterTwoDigitStartDate ¶
func KCFDateFormatterTwoDigitStartDate() uintptr
KCFDateFormatterTwoDigitStartDate returns the address of the symbol kCFDateFormatterTwoDigitStartDate.
func KCFDateFormatterVeryShortMonthSymbols ¶
func KCFDateFormatterVeryShortMonthSymbols() uintptr
KCFDateFormatterVeryShortMonthSymbols returns the address of the symbol kCFDateFormatterVeryShortMonthSymbols.
func KCFDateFormatterVeryShortStandaloneMonthSymbols ¶
func KCFDateFormatterVeryShortStandaloneMonthSymbols() uintptr
KCFDateFormatterVeryShortStandaloneMonthSymbols returns the address of the symbol kCFDateFormatterVeryShortStandaloneMonthSymbols.
func KCFDateFormatterVeryShortStandaloneWeekdaySymbols ¶
func KCFDateFormatterVeryShortStandaloneWeekdaySymbols() uintptr
KCFDateFormatterVeryShortStandaloneWeekdaySymbols returns the address of the symbol kCFDateFormatterVeryShortStandaloneWeekdaySymbols.
func KCFDateFormatterVeryShortWeekdaySymbols ¶
func KCFDateFormatterVeryShortWeekdaySymbols() uintptr
KCFDateFormatterVeryShortWeekdaySymbols returns the address of the symbol kCFDateFormatterVeryShortWeekdaySymbols.
func KCFDateFormatterWeekdaySymbols ¶
func KCFDateFormatterWeekdaySymbols() uintptr
KCFDateFormatterWeekdaySymbols returns the address of the symbol kCFDateFormatterWeekdaySymbols.
func KCFErrorDescriptionKey ¶
KCFErrorDescriptionKey returns the value of the constant kCFErrorDescriptionKey.
func KCFErrorDomainCocoa ¶
func KCFErrorDomainCocoa() uintptr
KCFErrorDomainCocoa returns the address of the symbol kCFErrorDomainCocoa.
func KCFErrorDomainMach ¶
func KCFErrorDomainMach() uintptr
KCFErrorDomainMach returns the address of the symbol kCFErrorDomainMach.
func KCFErrorDomainOSStatus ¶
func KCFErrorDomainOSStatus() uintptr
KCFErrorDomainOSStatus returns the address of the symbol kCFErrorDomainOSStatus.
func KCFErrorDomainPOSIX ¶
func KCFErrorDomainPOSIX() uintptr
KCFErrorDomainPOSIX returns the address of the symbol kCFErrorDomainPOSIX.
func KCFErrorFilePathKey ¶
KCFErrorFilePathKey returns the value of the constant kCFErrorFilePathKey.
func KCFErrorLocalizedDescriptionKey ¶
KCFErrorLocalizedDescriptionKey returns the value of the constant kCFErrorLocalizedDescriptionKey.
func KCFErrorLocalizedFailureKey ¶
KCFErrorLocalizedFailureKey returns the value of the constant kCFErrorLocalizedFailureKey.
func KCFErrorLocalizedFailureReasonKey ¶
KCFErrorLocalizedFailureReasonKey returns the value of the constant kCFErrorLocalizedFailureReasonKey.
func KCFErrorLocalizedRecoverySuggestionKey ¶
KCFErrorLocalizedRecoverySuggestionKey returns the value of the constant kCFErrorLocalizedRecoverySuggestionKey.
func KCFErrorURLKey ¶
KCFErrorURLKey returns the value of the constant kCFErrorURLKey.
func KCFErrorUnderlyingErrorKey ¶
KCFErrorUnderlyingErrorKey returns the value of the constant kCFErrorUnderlyingErrorKey.
func KCFGregorianCalendar ¶
func KCFGregorianCalendar() uintptr
KCFGregorianCalendar returns the address of the symbol kCFGregorianCalendar.
func KCFGujaratiCalendar ¶
func KCFGujaratiCalendar() uintptr
KCFGujaratiCalendar returns the address of the symbol kCFGujaratiCalendar.
func KCFHebrewCalendar ¶
func KCFHebrewCalendar() uintptr
KCFHebrewCalendar returns the address of the symbol kCFHebrewCalendar.
func KCFISO8601Calendar ¶
func KCFISO8601Calendar() uintptr
KCFISO8601Calendar returns the address of the symbol kCFISO8601Calendar.
func KCFIndianCalendar ¶
func KCFIndianCalendar() uintptr
KCFIndianCalendar returns the address of the symbol kCFIndianCalendar.
func KCFIslamicCalendar ¶
func KCFIslamicCalendar() uintptr
KCFIslamicCalendar returns the address of the symbol kCFIslamicCalendar.
func KCFIslamicCivilCalendar ¶
func KCFIslamicCivilCalendar() uintptr
KCFIslamicCivilCalendar returns the address of the symbol kCFIslamicCivilCalendar.
func KCFIslamicTabularCalendar ¶
func KCFIslamicTabularCalendar() uintptr
KCFIslamicTabularCalendar returns the address of the symbol kCFIslamicTabularCalendar.
func KCFIslamicUmmAlQuraCalendar ¶
func KCFIslamicUmmAlQuraCalendar() uintptr
KCFIslamicUmmAlQuraCalendar returns the address of the symbol kCFIslamicUmmAlQuraCalendar.
func KCFJapaneseCalendar ¶
func KCFJapaneseCalendar() uintptr
KCFJapaneseCalendar returns the address of the symbol kCFJapaneseCalendar.
func KCFKannadaCalendar ¶
func KCFKannadaCalendar() uintptr
KCFKannadaCalendar returns the address of the symbol kCFKannadaCalendar.
func KCFLocaleAlternateQuotationBeginDelimiterKey ¶
func KCFLocaleAlternateQuotationBeginDelimiterKey() uintptr
KCFLocaleAlternateQuotationBeginDelimiterKey returns the address of the symbol kCFLocaleAlternateQuotationBeginDelimiterKey.
func KCFLocaleAlternateQuotationEndDelimiterKey ¶
func KCFLocaleAlternateQuotationEndDelimiterKey() uintptr
KCFLocaleAlternateQuotationEndDelimiterKey returns the address of the symbol kCFLocaleAlternateQuotationEndDelimiterKey.
func KCFLocaleCalendar ¶
func KCFLocaleCalendar() uintptr
KCFLocaleCalendar returns the address of the symbol kCFLocaleCalendar.
func KCFLocaleCalendarIdentifier ¶
func KCFLocaleCalendarIdentifier() uintptr
KCFLocaleCalendarIdentifier returns the address of the symbol kCFLocaleCalendarIdentifier.
func KCFLocaleCollationIdentifier ¶
func KCFLocaleCollationIdentifier() uintptr
KCFLocaleCollationIdentifier returns the address of the symbol kCFLocaleCollationIdentifier.
func KCFLocaleCollatorIdentifier ¶
func KCFLocaleCollatorIdentifier() uintptr
KCFLocaleCollatorIdentifier returns the address of the symbol kCFLocaleCollatorIdentifier.
func KCFLocaleCountryCode ¶
func KCFLocaleCountryCode() uintptr
KCFLocaleCountryCode returns the address of the symbol kCFLocaleCountryCode.
func KCFLocaleCurrencyCode ¶
func KCFLocaleCurrencyCode() uintptr
KCFLocaleCurrencyCode returns the address of the symbol kCFLocaleCurrencyCode.
func KCFLocaleCurrencySymbol ¶
func KCFLocaleCurrencySymbol() uintptr
KCFLocaleCurrencySymbol returns the address of the symbol kCFLocaleCurrencySymbol.
func KCFLocaleCurrentLocaleDidChangeNotification ¶
func KCFLocaleCurrentLocaleDidChangeNotification() uintptr
KCFLocaleCurrentLocaleDidChangeNotification returns the address of the symbol kCFLocaleCurrentLocaleDidChangeNotification.
func KCFLocaleDecimalSeparator ¶
func KCFLocaleDecimalSeparator() uintptr
KCFLocaleDecimalSeparator returns the address of the symbol kCFLocaleDecimalSeparator.
func KCFLocaleExemplarCharacterSet ¶
func KCFLocaleExemplarCharacterSet() uintptr
KCFLocaleExemplarCharacterSet returns the address of the symbol kCFLocaleExemplarCharacterSet.
func KCFLocaleGroupingSeparator ¶
func KCFLocaleGroupingSeparator() uintptr
KCFLocaleGroupingSeparator returns the address of the symbol kCFLocaleGroupingSeparator.
func KCFLocaleIdentifier ¶
func KCFLocaleIdentifier() uintptr
KCFLocaleIdentifier returns the address of the symbol kCFLocaleIdentifier.
func KCFLocaleLanguageCode ¶
func KCFLocaleLanguageCode() uintptr
KCFLocaleLanguageCode returns the address of the symbol kCFLocaleLanguageCode.
func KCFLocaleMeasurementSystem ¶
func KCFLocaleMeasurementSystem() uintptr
KCFLocaleMeasurementSystem returns the address of the symbol kCFLocaleMeasurementSystem.
func KCFLocaleQuotationBeginDelimiterKey ¶
func KCFLocaleQuotationBeginDelimiterKey() uintptr
KCFLocaleQuotationBeginDelimiterKey returns the address of the symbol kCFLocaleQuotationBeginDelimiterKey.
func KCFLocaleQuotationEndDelimiterKey ¶
func KCFLocaleQuotationEndDelimiterKey() uintptr
KCFLocaleQuotationEndDelimiterKey returns the address of the symbol kCFLocaleQuotationEndDelimiterKey.
func KCFLocaleScriptCode ¶
func KCFLocaleScriptCode() uintptr
KCFLocaleScriptCode returns the address of the symbol kCFLocaleScriptCode.
func KCFLocaleUsesMetricSystem ¶
func KCFLocaleUsesMetricSystem() uintptr
KCFLocaleUsesMetricSystem returns the address of the symbol kCFLocaleUsesMetricSystem.
func KCFLocaleVariantCode ¶
func KCFLocaleVariantCode() uintptr
KCFLocaleVariantCode returns the address of the symbol kCFLocaleVariantCode.
func KCFMalayalamCalendar ¶
func KCFMalayalamCalendar() uintptr
KCFMalayalamCalendar returns the address of the symbol kCFMalayalamCalendar.
func KCFMarathiCalendar ¶
func KCFMarathiCalendar() uintptr
KCFMarathiCalendar returns the address of the symbol kCFMarathiCalendar.
func KCFNumberFormatterAlwaysShowDecimalSeparator ¶
func KCFNumberFormatterAlwaysShowDecimalSeparator() uintptr
KCFNumberFormatterAlwaysShowDecimalSeparator returns the address of the symbol kCFNumberFormatterAlwaysShowDecimalSeparator.
func KCFNumberFormatterCurrencyCode ¶
func KCFNumberFormatterCurrencyCode() uintptr
KCFNumberFormatterCurrencyCode returns the address of the symbol kCFNumberFormatterCurrencyCode.
func KCFNumberFormatterCurrencyDecimalSeparator ¶
func KCFNumberFormatterCurrencyDecimalSeparator() uintptr
KCFNumberFormatterCurrencyDecimalSeparator returns the address of the symbol kCFNumberFormatterCurrencyDecimalSeparator.
func KCFNumberFormatterCurrencyGroupingSeparator ¶
func KCFNumberFormatterCurrencyGroupingSeparator() uintptr
KCFNumberFormatterCurrencyGroupingSeparator returns the address of the symbol kCFNumberFormatterCurrencyGroupingSeparator.
func KCFNumberFormatterCurrencySymbol ¶
func KCFNumberFormatterCurrencySymbol() uintptr
KCFNumberFormatterCurrencySymbol returns the address of the symbol kCFNumberFormatterCurrencySymbol.
func KCFNumberFormatterDecimalSeparator ¶
func KCFNumberFormatterDecimalSeparator() uintptr
KCFNumberFormatterDecimalSeparator returns the address of the symbol kCFNumberFormatterDecimalSeparator.
func KCFNumberFormatterDefaultFormat ¶
func KCFNumberFormatterDefaultFormat() uintptr
KCFNumberFormatterDefaultFormat returns the address of the symbol kCFNumberFormatterDefaultFormat.
func KCFNumberFormatterExponentSymbol ¶
func KCFNumberFormatterExponentSymbol() uintptr
KCFNumberFormatterExponentSymbol returns the address of the symbol kCFNumberFormatterExponentSymbol.
func KCFNumberFormatterFormatWidth ¶
func KCFNumberFormatterFormatWidth() uintptr
KCFNumberFormatterFormatWidth returns the address of the symbol kCFNumberFormatterFormatWidth.
func KCFNumberFormatterGroupingSeparator ¶
func KCFNumberFormatterGroupingSeparator() uintptr
KCFNumberFormatterGroupingSeparator returns the address of the symbol kCFNumberFormatterGroupingSeparator.
func KCFNumberFormatterGroupingSize ¶
func KCFNumberFormatterGroupingSize() uintptr
KCFNumberFormatterGroupingSize returns the address of the symbol kCFNumberFormatterGroupingSize.
func KCFNumberFormatterInfinitySymbol ¶
func KCFNumberFormatterInfinitySymbol() uintptr
KCFNumberFormatterInfinitySymbol returns the address of the symbol kCFNumberFormatterInfinitySymbol.
func KCFNumberFormatterInternationalCurrencySymbol ¶
func KCFNumberFormatterInternationalCurrencySymbol() uintptr
KCFNumberFormatterInternationalCurrencySymbol returns the address of the symbol kCFNumberFormatterInternationalCurrencySymbol.
func KCFNumberFormatterIsLenient ¶
func KCFNumberFormatterIsLenient() uintptr
KCFNumberFormatterIsLenient returns the address of the symbol kCFNumberFormatterIsLenient.
func KCFNumberFormatterMaxFractionDigits ¶
func KCFNumberFormatterMaxFractionDigits() uintptr
KCFNumberFormatterMaxFractionDigits returns the address of the symbol kCFNumberFormatterMaxFractionDigits.
func KCFNumberFormatterMaxIntegerDigits ¶
func KCFNumberFormatterMaxIntegerDigits() uintptr
KCFNumberFormatterMaxIntegerDigits returns the address of the symbol kCFNumberFormatterMaxIntegerDigits.
func KCFNumberFormatterMaxSignificantDigits ¶
func KCFNumberFormatterMaxSignificantDigits() uintptr
KCFNumberFormatterMaxSignificantDigits returns the address of the symbol kCFNumberFormatterMaxSignificantDigits.
func KCFNumberFormatterMinFractionDigits ¶
func KCFNumberFormatterMinFractionDigits() uintptr
KCFNumberFormatterMinFractionDigits returns the address of the symbol kCFNumberFormatterMinFractionDigits.
func KCFNumberFormatterMinGroupingDigits ¶
func KCFNumberFormatterMinGroupingDigits() uintptr
KCFNumberFormatterMinGroupingDigits returns the address of the symbol kCFNumberFormatterMinGroupingDigits.
func KCFNumberFormatterMinIntegerDigits ¶
func KCFNumberFormatterMinIntegerDigits() uintptr
KCFNumberFormatterMinIntegerDigits returns the address of the symbol kCFNumberFormatterMinIntegerDigits.
func KCFNumberFormatterMinSignificantDigits ¶
func KCFNumberFormatterMinSignificantDigits() uintptr
KCFNumberFormatterMinSignificantDigits returns the address of the symbol kCFNumberFormatterMinSignificantDigits.
func KCFNumberFormatterMinusSign ¶
func KCFNumberFormatterMinusSign() uintptr
KCFNumberFormatterMinusSign returns the address of the symbol kCFNumberFormatterMinusSign.
func KCFNumberFormatterMultiplier ¶
func KCFNumberFormatterMultiplier() uintptr
KCFNumberFormatterMultiplier returns the address of the symbol kCFNumberFormatterMultiplier.
func KCFNumberFormatterNaNSymbol ¶
func KCFNumberFormatterNaNSymbol() uintptr
KCFNumberFormatterNaNSymbol returns the address of the symbol kCFNumberFormatterNaNSymbol.
func KCFNumberFormatterNegativePrefix ¶
func KCFNumberFormatterNegativePrefix() uintptr
KCFNumberFormatterNegativePrefix returns the address of the symbol kCFNumberFormatterNegativePrefix.
func KCFNumberFormatterNegativeSuffix ¶
func KCFNumberFormatterNegativeSuffix() uintptr
KCFNumberFormatterNegativeSuffix returns the address of the symbol kCFNumberFormatterNegativeSuffix.
func KCFNumberFormatterPaddingCharacter ¶
func KCFNumberFormatterPaddingCharacter() uintptr
KCFNumberFormatterPaddingCharacter returns the address of the symbol kCFNumberFormatterPaddingCharacter.
func KCFNumberFormatterPaddingPosition ¶
func KCFNumberFormatterPaddingPosition() uintptr
KCFNumberFormatterPaddingPosition returns the address of the symbol kCFNumberFormatterPaddingPosition.
func KCFNumberFormatterPerMillSymbol ¶
func KCFNumberFormatterPerMillSymbol() uintptr
KCFNumberFormatterPerMillSymbol returns the address of the symbol kCFNumberFormatterPerMillSymbol.
func KCFNumberFormatterPercentSymbol ¶
func KCFNumberFormatterPercentSymbol() uintptr
KCFNumberFormatterPercentSymbol returns the address of the symbol kCFNumberFormatterPercentSymbol.
func KCFNumberFormatterPlusSign ¶
func KCFNumberFormatterPlusSign() uintptr
KCFNumberFormatterPlusSign returns the address of the symbol kCFNumberFormatterPlusSign.
func KCFNumberFormatterPositivePrefix ¶
func KCFNumberFormatterPositivePrefix() uintptr
KCFNumberFormatterPositivePrefix returns the address of the symbol kCFNumberFormatterPositivePrefix.
func KCFNumberFormatterPositiveSuffix ¶
func KCFNumberFormatterPositiveSuffix() uintptr
KCFNumberFormatterPositiveSuffix returns the address of the symbol kCFNumberFormatterPositiveSuffix.
func KCFNumberFormatterRoundingIncrement ¶
func KCFNumberFormatterRoundingIncrement() uintptr
KCFNumberFormatterRoundingIncrement returns the address of the symbol kCFNumberFormatterRoundingIncrement.
func KCFNumberFormatterRoundingMode ¶
func KCFNumberFormatterRoundingMode() uintptr
KCFNumberFormatterRoundingMode returns the address of the symbol kCFNumberFormatterRoundingMode.
func KCFNumberFormatterSecondaryGroupingSize ¶
func KCFNumberFormatterSecondaryGroupingSize() uintptr
KCFNumberFormatterSecondaryGroupingSize returns the address of the symbol kCFNumberFormatterSecondaryGroupingSize.
func KCFNumberFormatterUseGroupingSeparator ¶
func KCFNumberFormatterUseGroupingSeparator() uintptr
KCFNumberFormatterUseGroupingSeparator returns the address of the symbol kCFNumberFormatterUseGroupingSeparator.
func KCFNumberFormatterUseSignificantDigits ¶
func KCFNumberFormatterUseSignificantDigits() uintptr
KCFNumberFormatterUseSignificantDigits returns the address of the symbol kCFNumberFormatterUseSignificantDigits.
func KCFNumberFormatterZeroSymbol ¶
func KCFNumberFormatterZeroSymbol() uintptr
KCFNumberFormatterZeroSymbol returns the address of the symbol kCFNumberFormatterZeroSymbol.
func KCFNumberNaN ¶
KCFNumberNaN returns the value of the constant kCFNumberNaN.
func KCFNumberNegativeInfinity ¶
KCFNumberNegativeInfinity returns the value of the constant kCFNumberNegativeInfinity.
func KCFNumberPositiveInfinity ¶
KCFNumberPositiveInfinity returns the value of the constant kCFNumberPositiveInfinity.
func KCFOdiaCalendar ¶
func KCFOdiaCalendar() uintptr
KCFOdiaCalendar returns the address of the symbol kCFOdiaCalendar.
func KCFPersianCalendar ¶
func KCFPersianCalendar() uintptr
KCFPersianCalendar returns the address of the symbol kCFPersianCalendar.
func KCFPlugInDynamicRegisterFunctionKey ¶
KCFPlugInDynamicRegisterFunctionKey returns the value of the constant kCFPlugInDynamicRegisterFunctionKey.
func KCFPlugInDynamicRegistrationKey ¶
KCFPlugInDynamicRegistrationKey returns the value of the constant kCFPlugInDynamicRegistrationKey.
func KCFPlugInFactoriesKey ¶
KCFPlugInFactoriesKey returns the value of the constant kCFPlugInFactoriesKey.
func KCFPlugInTypesKey ¶
KCFPlugInTypesKey returns the value of the constant kCFPlugInTypesKey.
func KCFPlugInUnloadFunctionKey ¶
KCFPlugInUnloadFunctionKey returns the value of the constant kCFPlugInUnloadFunctionKey.
func KCFPreferencesAnyApplication ¶
KCFPreferencesAnyApplication returns the value of the constant kCFPreferencesAnyApplication.
func KCFPreferencesAnyHost ¶
KCFPreferencesAnyHost returns the value of the constant kCFPreferencesAnyHost.
func KCFPreferencesAnyUser ¶
KCFPreferencesAnyUser returns the value of the constant kCFPreferencesAnyUser.
func KCFPreferencesCurrentApplication ¶
KCFPreferencesCurrentApplication returns the value of the constant kCFPreferencesCurrentApplication.
func KCFPreferencesCurrentHost ¶
KCFPreferencesCurrentHost returns the value of the constant kCFPreferencesCurrentHost.
func KCFPreferencesCurrentUser ¶
KCFPreferencesCurrentUser returns the value of the constant kCFPreferencesCurrentUser.
func KCFRepublicOfChinaCalendar ¶
func KCFRepublicOfChinaCalendar() uintptr
KCFRepublicOfChinaCalendar returns the address of the symbol kCFRepublicOfChinaCalendar.
func KCFRunLoopCommonModes ¶
func KCFRunLoopCommonModes() uintptr
KCFRunLoopCommonModes returns the address of the symbol kCFRunLoopCommonModes.
func KCFRunLoopDefaultMode ¶
func KCFRunLoopDefaultMode() uintptr
KCFRunLoopDefaultMode returns the address of the symbol kCFRunLoopDefaultMode.
func KCFSocketCommandKey ¶
KCFSocketCommandKey returns the value of the constant kCFSocketCommandKey.
func KCFSocketErrorKey ¶
KCFSocketErrorKey returns the value of the constant kCFSocketErrorKey.
func KCFSocketNameKey ¶
KCFSocketNameKey returns the value of the constant kCFSocketNameKey.
func KCFSocketRegisterCommand ¶
KCFSocketRegisterCommand returns the value of the constant kCFSocketRegisterCommand.
func KCFSocketResultKey ¶
KCFSocketResultKey returns the value of the constant kCFSocketResultKey.
func KCFSocketRetrieveCommand ¶
KCFSocketRetrieveCommand returns the value of the constant kCFSocketRetrieveCommand.
func KCFSocketValueKey ¶
KCFSocketValueKey returns the value of the constant kCFSocketValueKey.
func KCFStreamErrorDomainSOCKS ¶
func KCFStreamErrorDomainSOCKS() uintptr
KCFStreamErrorDomainSOCKS returns the address of the symbol kCFStreamErrorDomainSOCKS.
func KCFStreamErrorDomainSSL ¶
func KCFStreamErrorDomainSSL() uintptr
KCFStreamErrorDomainSSL returns the address of the symbol kCFStreamErrorDomainSSL.
func KCFStreamPropertyAppendToFile ¶
func KCFStreamPropertyAppendToFile() uintptr
KCFStreamPropertyAppendToFile returns the address of the symbol kCFStreamPropertyAppendToFile.
func KCFStreamPropertyDataWritten ¶
func KCFStreamPropertyDataWritten() uintptr
KCFStreamPropertyDataWritten returns the address of the symbol kCFStreamPropertyDataWritten.
func KCFStreamPropertyFileCurrentOffset ¶
func KCFStreamPropertyFileCurrentOffset() uintptr
KCFStreamPropertyFileCurrentOffset returns the address of the symbol kCFStreamPropertyFileCurrentOffset.
func KCFStreamPropertySOCKSPassword ¶
KCFStreamPropertySOCKSPassword returns the value of the constant kCFStreamPropertySOCKSPassword.
func KCFStreamPropertySOCKSProxy ¶
KCFStreamPropertySOCKSProxy returns the value of the constant kCFStreamPropertySOCKSProxy.
func KCFStreamPropertySOCKSProxyHost ¶
KCFStreamPropertySOCKSProxyHost returns the value of the constant kCFStreamPropertySOCKSProxyHost.
func KCFStreamPropertySOCKSProxyPort ¶
KCFStreamPropertySOCKSProxyPort returns the value of the constant kCFStreamPropertySOCKSProxyPort.
func KCFStreamPropertySOCKSUser ¶
KCFStreamPropertySOCKSUser returns the value of the constant kCFStreamPropertySOCKSUser.
func KCFStreamPropertySOCKSVersion ¶
KCFStreamPropertySOCKSVersion returns the value of the constant kCFStreamPropertySOCKSVersion.
func KCFStreamPropertyShouldCloseNativeSocket ¶
KCFStreamPropertyShouldCloseNativeSocket returns the value of the constant kCFStreamPropertyShouldCloseNativeSocket.
func KCFStreamPropertySocketNativeHandle ¶
func KCFStreamPropertySocketNativeHandle() uintptr
KCFStreamPropertySocketNativeHandle returns the address of the symbol kCFStreamPropertySocketNativeHandle.
func KCFStreamPropertySocketRemoteHostName ¶
func KCFStreamPropertySocketRemoteHostName() uintptr
KCFStreamPropertySocketRemoteHostName returns the address of the symbol kCFStreamPropertySocketRemoteHostName.
func KCFStreamPropertySocketRemotePortNumber ¶
func KCFStreamPropertySocketRemotePortNumber() uintptr
KCFStreamPropertySocketRemotePortNumber returns the address of the symbol kCFStreamPropertySocketRemotePortNumber.
func KCFStreamPropertySocketSecurityLevel ¶
KCFStreamPropertySocketSecurityLevel returns the value of the constant kCFStreamPropertySocketSecurityLevel.
func KCFStreamSocketSOCKSVersion4 ¶
KCFStreamSocketSOCKSVersion4 returns the value of the constant kCFStreamSocketSOCKSVersion4.
func KCFStreamSocketSOCKSVersion5 ¶
KCFStreamSocketSOCKSVersion5 returns the value of the constant kCFStreamSocketSOCKSVersion5.
func KCFStreamSocketSecurityLevelNegotiatedSSL ¶
KCFStreamSocketSecurityLevelNegotiatedSSL returns the value of the constant kCFStreamSocketSecurityLevelNegotiatedSSL.
func KCFStreamSocketSecurityLevelNone ¶
KCFStreamSocketSecurityLevelNone returns the value of the constant kCFStreamSocketSecurityLevelNone.
func KCFStreamSocketSecurityLevelSSLv2 ¶
KCFStreamSocketSecurityLevelSSLv2 returns the value of the constant kCFStreamSocketSecurityLevelSSLv2.
func KCFStreamSocketSecurityLevelSSLv3 ¶
KCFStreamSocketSecurityLevelSSLv3 returns the value of the constant kCFStreamSocketSecurityLevelSSLv3.
func KCFStreamSocketSecurityLevelTLSv1 ¶
KCFStreamSocketSecurityLevelTLSv1 returns the value of the constant kCFStreamSocketSecurityLevelTLSv1.
func KCFStringBinaryHeapCallBacks ¶
func KCFStringBinaryHeapCallBacks() uintptr
KCFStringBinaryHeapCallBacks returns the address of the symbol kCFStringBinaryHeapCallBacks.
func KCFStringTransformFullwidthHalfwidth ¶
KCFStringTransformFullwidthHalfwidth returns the value of the constant kCFStringTransformFullwidthHalfwidth.
func KCFStringTransformHiraganaKatakana ¶
KCFStringTransformHiraganaKatakana returns the value of the constant kCFStringTransformHiraganaKatakana.
func KCFStringTransformLatinArabic ¶
KCFStringTransformLatinArabic returns the value of the constant kCFStringTransformLatinArabic.
func KCFStringTransformLatinCyrillic ¶
KCFStringTransformLatinCyrillic returns the value of the constant kCFStringTransformLatinCyrillic.
func KCFStringTransformLatinGreek ¶
KCFStringTransformLatinGreek returns the value of the constant kCFStringTransformLatinGreek.
func KCFStringTransformLatinHangul ¶
KCFStringTransformLatinHangul returns the value of the constant kCFStringTransformLatinHangul.
func KCFStringTransformLatinHebrew ¶
KCFStringTransformLatinHebrew returns the value of the constant kCFStringTransformLatinHebrew.
func KCFStringTransformLatinHiragana ¶
KCFStringTransformLatinHiragana returns the value of the constant kCFStringTransformLatinHiragana.
func KCFStringTransformLatinKatakana ¶
KCFStringTransformLatinKatakana returns the value of the constant kCFStringTransformLatinKatakana.
func KCFStringTransformLatinThai ¶
KCFStringTransformLatinThai returns the value of the constant kCFStringTransformLatinThai.
func KCFStringTransformMandarinLatin ¶
KCFStringTransformMandarinLatin returns the value of the constant kCFStringTransformMandarinLatin.
func KCFStringTransformStripCombiningMarks ¶
KCFStringTransformStripCombiningMarks returns the value of the constant kCFStringTransformStripCombiningMarks.
func KCFStringTransformStripDiacritics ¶
KCFStringTransformStripDiacritics returns the value of the constant kCFStringTransformStripDiacritics.
func KCFStringTransformToLatin ¶
KCFStringTransformToLatin returns the value of the constant kCFStringTransformToLatin.
func KCFStringTransformToUnicodeName ¶
KCFStringTransformToUnicodeName returns the value of the constant kCFStringTransformToUnicodeName.
func KCFStringTransformToXMLHex ¶
KCFStringTransformToXMLHex returns the value of the constant kCFStringTransformToXMLHex.
func KCFTamilCalendar ¶
func KCFTamilCalendar() uintptr
KCFTamilCalendar returns the address of the symbol kCFTamilCalendar.
func KCFTeluguCalendar ¶
func KCFTeluguCalendar() uintptr
KCFTeluguCalendar returns the address of the symbol kCFTeluguCalendar.
func KCFTimeZoneSystemTimeZoneDidChangeNotification ¶
func KCFTimeZoneSystemTimeZoneDidChangeNotification() uintptr
KCFTimeZoneSystemTimeZoneDidChangeNotification returns the address of the symbol kCFTimeZoneSystemTimeZoneDidChangeNotification.
func KCFTypeArrayCallBacks ¶
func KCFTypeArrayCallBacks() uintptr
KCFTypeArrayCallBacks returns the address of the symbol kCFTypeArrayCallBacks.
func KCFTypeBagCallBacks ¶
func KCFTypeBagCallBacks() uintptr
KCFTypeBagCallBacks returns the address of the symbol kCFTypeBagCallBacks.
func KCFTypeDictionaryKeyCallBacks ¶
func KCFTypeDictionaryKeyCallBacks() uintptr
KCFTypeDictionaryKeyCallBacks returns the address of the symbol kCFTypeDictionaryKeyCallBacks.
func KCFTypeDictionaryValueCallBacks ¶
func KCFTypeDictionaryValueCallBacks() uintptr
KCFTypeDictionaryValueCallBacks returns the address of the symbol kCFTypeDictionaryValueCallBacks.
func KCFTypeSetCallBacks ¶
func KCFTypeSetCallBacks() uintptr
KCFTypeSetCallBacks returns the address of the symbol kCFTypeSetCallBacks.
func KCFURLAddedToDirectoryDateKey ¶
KCFURLAddedToDirectoryDateKey returns the value of the constant kCFURLAddedToDirectoryDateKey.
func KCFURLApplicationIsScriptableKey ¶
KCFURLApplicationIsScriptableKey returns the value of the constant kCFURLApplicationIsScriptableKey.
func KCFURLAttributeModificationDateKey ¶
KCFURLAttributeModificationDateKey returns the value of the constant kCFURLAttributeModificationDateKey.
func KCFURLCanonicalPathKey ¶
KCFURLCanonicalPathKey returns the value of the constant kCFURLCanonicalPathKey.
func KCFURLContentAccessDateKey ¶
KCFURLContentAccessDateKey returns the value of the constant kCFURLContentAccessDateKey.
func KCFURLContentModificationDateKey ¶
KCFURLContentModificationDateKey returns the value of the constant kCFURLContentModificationDateKey.
func KCFURLCreationDateKey ¶
KCFURLCreationDateKey returns the value of the constant kCFURLCreationDateKey.
func KCFURLCustomIconKey ¶
KCFURLCustomIconKey returns the value of the constant kCFURLCustomIconKey.
func KCFURLDirectoryEntryCountKey ¶
KCFURLDirectoryEntryCountKey returns the value of the constant kCFURLDirectoryEntryCountKey.
func KCFURLDocumentIdentifierKey ¶
KCFURLDocumentIdentifierKey returns the value of the constant kCFURLDocumentIdentifierKey.
func KCFURLEffectiveIconKey ¶
KCFURLEffectiveIconKey returns the value of the constant kCFURLEffectiveIconKey.
func KCFURLFileAllocatedSizeKey ¶
KCFURLFileAllocatedSizeKey returns the value of the constant kCFURLFileAllocatedSizeKey.
func KCFURLFileContentIdentifierKey ¶
KCFURLFileContentIdentifierKey returns the value of the constant kCFURLFileContentIdentifierKey.
func KCFURLFileDirectoryContents ¶
KCFURLFileDirectoryContents returns the value of the constant kCFURLFileDirectoryContents.
func KCFURLFileExists ¶
KCFURLFileExists returns the value of the constant kCFURLFileExists.
func KCFURLFileIdentifierKey ¶
KCFURLFileIdentifierKey returns the value of the constant kCFURLFileIdentifierKey.
func KCFURLFileLastModificationTime ¶
KCFURLFileLastModificationTime returns the value of the constant kCFURLFileLastModificationTime.
func KCFURLFileLength ¶
KCFURLFileLength returns the value of the constant kCFURLFileLength.
func KCFURLFileOwnerID ¶
KCFURLFileOwnerID returns the value of the constant kCFURLFileOwnerID.
func KCFURLFilePOSIXMode ¶
KCFURLFilePOSIXMode returns the value of the constant kCFURLFilePOSIXMode.
func KCFURLFileResourceIdentifierKey ¶
KCFURLFileResourceIdentifierKey returns the value of the constant kCFURLFileResourceIdentifierKey.
func KCFURLFileResourceTypeBlockSpecial ¶
KCFURLFileResourceTypeBlockSpecial returns the value of the constant kCFURLFileResourceTypeBlockSpecial.
func KCFURLFileResourceTypeCharacterSpecial ¶
KCFURLFileResourceTypeCharacterSpecial returns the value of the constant kCFURLFileResourceTypeCharacterSpecial.
func KCFURLFileResourceTypeDirectory ¶
KCFURLFileResourceTypeDirectory returns the value of the constant kCFURLFileResourceTypeDirectory.
func KCFURLFileResourceTypeKey ¶
KCFURLFileResourceTypeKey returns the value of the constant kCFURLFileResourceTypeKey.
func KCFURLFileResourceTypeNamedPipe ¶
KCFURLFileResourceTypeNamedPipe returns the value of the constant kCFURLFileResourceTypeNamedPipe.
func KCFURLFileResourceTypeRegular ¶
KCFURLFileResourceTypeRegular returns the value of the constant kCFURLFileResourceTypeRegular.
func KCFURLFileResourceTypeSocket ¶
KCFURLFileResourceTypeSocket returns the value of the constant kCFURLFileResourceTypeSocket.
func KCFURLFileResourceTypeSymbolicLink ¶
KCFURLFileResourceTypeSymbolicLink returns the value of the constant kCFURLFileResourceTypeSymbolicLink.
func KCFURLFileResourceTypeUnknown ¶
KCFURLFileResourceTypeUnknown returns the value of the constant kCFURLFileResourceTypeUnknown.
func KCFURLFileSecurityKey ¶
KCFURLFileSecurityKey returns the value of the constant kCFURLFileSecurityKey.
func KCFURLFileSizeKey ¶
KCFURLFileSizeKey returns the value of the constant kCFURLFileSizeKey.
func KCFURLGenerationIdentifierKey ¶
KCFURLGenerationIdentifierKey returns the value of the constant kCFURLGenerationIdentifierKey.
func KCFURLHTTPStatusCode ¶
KCFURLHTTPStatusCode returns the value of the constant kCFURLHTTPStatusCode.
func KCFURLHTTPStatusLine ¶
KCFURLHTTPStatusLine returns the value of the constant kCFURLHTTPStatusLine.
func KCFURLHasHiddenExtensionKey ¶
KCFURLHasHiddenExtensionKey returns the value of the constant kCFURLHasHiddenExtensionKey.
func KCFURLIsAliasFileKey ¶
KCFURLIsAliasFileKey returns the value of the constant kCFURLIsAliasFileKey.
func KCFURLIsApplicationKey ¶
KCFURLIsApplicationKey returns the value of the constant kCFURLIsApplicationKey.
func KCFURLIsDirectoryKey ¶
KCFURLIsDirectoryKey returns the value of the constant kCFURLIsDirectoryKey.
func KCFURLIsExcludedFromBackupKey ¶
KCFURLIsExcludedFromBackupKey returns the value of the constant kCFURLIsExcludedFromBackupKey.
func KCFURLIsExecutableKey ¶
KCFURLIsExecutableKey returns the value of the constant kCFURLIsExecutableKey.
func KCFURLIsHiddenKey ¶
KCFURLIsHiddenKey returns the value of the constant kCFURLIsHiddenKey.
func KCFURLIsMountTriggerKey ¶
KCFURLIsMountTriggerKey returns the value of the constant kCFURLIsMountTriggerKey.
func KCFURLIsPackageKey ¶
KCFURLIsPackageKey returns the value of the constant kCFURLIsPackageKey.
func KCFURLIsPurgeableKey ¶
KCFURLIsPurgeableKey returns the value of the constant kCFURLIsPurgeableKey.
func KCFURLIsReadableKey ¶
KCFURLIsReadableKey returns the value of the constant kCFURLIsReadableKey.
func KCFURLIsRegularFileKey ¶
KCFURLIsRegularFileKey returns the value of the constant kCFURLIsRegularFileKey.
func KCFURLIsSparseKey ¶
KCFURLIsSparseKey returns the value of the constant kCFURLIsSparseKey.
func KCFURLIsSymbolicLinkKey ¶
KCFURLIsSymbolicLinkKey returns the value of the constant kCFURLIsSymbolicLinkKey.
func KCFURLIsSystemImmutableKey ¶
KCFURLIsSystemImmutableKey returns the value of the constant kCFURLIsSystemImmutableKey.
func KCFURLIsUbiquitousItemKey ¶
KCFURLIsUbiquitousItemKey returns the value of the constant kCFURLIsUbiquitousItemKey.
func KCFURLIsUserImmutableKey ¶
KCFURLIsUserImmutableKey returns the value of the constant kCFURLIsUserImmutableKey.
func KCFURLIsVolumeKey ¶
KCFURLIsVolumeKey returns the value of the constant kCFURLIsVolumeKey.
func KCFURLIsWritableKey ¶
KCFURLIsWritableKey returns the value of the constant kCFURLIsWritableKey.
func KCFURLKeysOfUnsetValuesKey ¶
KCFURLKeysOfUnsetValuesKey returns the value of the constant kCFURLKeysOfUnsetValuesKey.
func KCFURLLabelColorKey ¶
KCFURLLabelColorKey returns the value of the constant kCFURLLabelColorKey.
func KCFURLLabelNumberKey ¶
KCFURLLabelNumberKey returns the value of the constant kCFURLLabelNumberKey.
func KCFURLLinkCountKey ¶
KCFURLLinkCountKey returns the value of the constant kCFURLLinkCountKey.
func KCFURLLocalizedLabelKey ¶
KCFURLLocalizedLabelKey returns the value of the constant kCFURLLocalizedLabelKey.
func KCFURLLocalizedNameKey ¶
KCFURLLocalizedNameKey returns the value of the constant kCFURLLocalizedNameKey.
func KCFURLLocalizedTypeDescriptionKey ¶
KCFURLLocalizedTypeDescriptionKey returns the value of the constant kCFURLLocalizedTypeDescriptionKey.
func KCFURLMayHaveExtendedAttributesKey ¶
KCFURLMayHaveExtendedAttributesKey returns the value of the constant kCFURLMayHaveExtendedAttributesKey.
func KCFURLMayShareFileContentKey ¶
KCFURLMayShareFileContentKey returns the value of the constant kCFURLMayShareFileContentKey.
func KCFURLNameKey ¶
KCFURLNameKey returns the value of the constant kCFURLNameKey.
func KCFURLParentDirectoryURLKey ¶
KCFURLParentDirectoryURLKey returns the value of the constant kCFURLParentDirectoryURLKey.
func KCFURLPathKey ¶
KCFURLPathKey returns the value of the constant kCFURLPathKey.
func KCFURLPreferredIOBlockSizeKey ¶
KCFURLPreferredIOBlockSizeKey returns the value of the constant kCFURLPreferredIOBlockSizeKey.
func KCFURLQuarantinePropertiesKey ¶
KCFURLQuarantinePropertiesKey returns the value of the constant kCFURLQuarantinePropertiesKey.
func KCFURLTagNamesKey ¶
KCFURLTagNamesKey returns the value of the constant kCFURLTagNamesKey.
func KCFURLTotalFileAllocatedSizeKey ¶
KCFURLTotalFileAllocatedSizeKey returns the value of the constant kCFURLTotalFileAllocatedSizeKey.
func KCFURLTotalFileSizeKey ¶
KCFURLTotalFileSizeKey returns the value of the constant kCFURLTotalFileSizeKey.
func KCFURLTypeIdentifierKey ¶
KCFURLTypeIdentifierKey returns the value of the constant kCFURLTypeIdentifierKey.
func KCFURLUbiquitousItemDownloadingErrorKey ¶
KCFURLUbiquitousItemDownloadingErrorKey returns the value of the constant kCFURLUbiquitousItemDownloadingErrorKey.
func KCFURLUbiquitousItemDownloadingStatusCurrent ¶
KCFURLUbiquitousItemDownloadingStatusCurrent returns the value of the constant kCFURLUbiquitousItemDownloadingStatusCurrent.
func KCFURLUbiquitousItemDownloadingStatusDownloaded ¶
KCFURLUbiquitousItemDownloadingStatusDownloaded returns the value of the constant kCFURLUbiquitousItemDownloadingStatusDownloaded.
func KCFURLUbiquitousItemDownloadingStatusKey ¶
KCFURLUbiquitousItemDownloadingStatusKey returns the value of the constant kCFURLUbiquitousItemDownloadingStatusKey.
func KCFURLUbiquitousItemDownloadingStatusNotDownloaded ¶
KCFURLUbiquitousItemDownloadingStatusNotDownloaded returns the value of the constant kCFURLUbiquitousItemDownloadingStatusNotDownloaded.
func KCFURLUbiquitousItemHasUnresolvedConflictsKey ¶
KCFURLUbiquitousItemHasUnresolvedConflictsKey returns the value of the constant kCFURLUbiquitousItemHasUnresolvedConflictsKey.
func KCFURLUbiquitousItemIsDownloadedKey ¶
KCFURLUbiquitousItemIsDownloadedKey returns the value of the constant kCFURLUbiquitousItemIsDownloadedKey.
func KCFURLUbiquitousItemIsDownloadingKey ¶
KCFURLUbiquitousItemIsDownloadingKey returns the value of the constant kCFURLUbiquitousItemIsDownloadingKey.
func KCFURLUbiquitousItemIsExcludedFromSyncKey ¶
KCFURLUbiquitousItemIsExcludedFromSyncKey returns the value of the constant kCFURLUbiquitousItemIsExcludedFromSyncKey.
func KCFURLUbiquitousItemIsSyncPausedKey ¶
KCFURLUbiquitousItemIsSyncPausedKey returns the value of the constant kCFURLUbiquitousItemIsSyncPausedKey.
func KCFURLUbiquitousItemIsUploadedKey ¶
KCFURLUbiquitousItemIsUploadedKey returns the value of the constant kCFURLUbiquitousItemIsUploadedKey.
func KCFURLUbiquitousItemIsUploadingKey ¶
KCFURLUbiquitousItemIsUploadingKey returns the value of the constant kCFURLUbiquitousItemIsUploadingKey.
func KCFURLUbiquitousItemPercentDownloadedKey ¶
KCFURLUbiquitousItemPercentDownloadedKey returns the value of the constant kCFURLUbiquitousItemPercentDownloadedKey.
func KCFURLUbiquitousItemPercentUploadedKey ¶
KCFURLUbiquitousItemPercentUploadedKey returns the value of the constant kCFURLUbiquitousItemPercentUploadedKey.
func KCFURLUbiquitousItemSupportedSyncControlsKey ¶
KCFURLUbiquitousItemSupportedSyncControlsKey returns the value of the constant kCFURLUbiquitousItemSupportedSyncControlsKey.
func KCFURLUbiquitousItemUploadingErrorKey ¶
KCFURLUbiquitousItemUploadingErrorKey returns the value of the constant kCFURLUbiquitousItemUploadingErrorKey.
func KCFURLVolumeAvailableCapacityForImportantUsageKey ¶
KCFURLVolumeAvailableCapacityForImportantUsageKey returns the value of the constant kCFURLVolumeAvailableCapacityForImportantUsageKey.
func KCFURLVolumeAvailableCapacityForOpportunisticUsageKey ¶
KCFURLVolumeAvailableCapacityForOpportunisticUsageKey returns the value of the constant kCFURLVolumeAvailableCapacityForOpportunisticUsageKey.
func KCFURLVolumeAvailableCapacityKey ¶
KCFURLVolumeAvailableCapacityKey returns the value of the constant kCFURLVolumeAvailableCapacityKey.
func KCFURLVolumeCreationDateKey ¶
KCFURLVolumeCreationDateKey returns the value of the constant kCFURLVolumeCreationDateKey.
func KCFURLVolumeIdentifierKey ¶
KCFURLVolumeIdentifierKey returns the value of the constant kCFURLVolumeIdentifierKey.
func KCFURLVolumeIsAutomountedKey ¶
KCFURLVolumeIsAutomountedKey returns the value of the constant kCFURLVolumeIsAutomountedKey.
func KCFURLVolumeIsBrowsableKey ¶
KCFURLVolumeIsBrowsableKey returns the value of the constant kCFURLVolumeIsBrowsableKey.
func KCFURLVolumeIsEjectableKey ¶
KCFURLVolumeIsEjectableKey returns the value of the constant kCFURLVolumeIsEjectableKey.
func KCFURLVolumeIsEncryptedKey ¶
KCFURLVolumeIsEncryptedKey returns the value of the constant kCFURLVolumeIsEncryptedKey.
func KCFURLVolumeIsInternalKey ¶
KCFURLVolumeIsInternalKey returns the value of the constant kCFURLVolumeIsInternalKey.
func KCFURLVolumeIsJournalingKey ¶
KCFURLVolumeIsJournalingKey returns the value of the constant kCFURLVolumeIsJournalingKey.
func KCFURLVolumeIsLocalKey ¶
KCFURLVolumeIsLocalKey returns the value of the constant kCFURLVolumeIsLocalKey.
func KCFURLVolumeIsReadOnlyKey ¶
KCFURLVolumeIsReadOnlyKey returns the value of the constant kCFURLVolumeIsReadOnlyKey.
func KCFURLVolumeIsRemovableKey ¶
KCFURLVolumeIsRemovableKey returns the value of the constant kCFURLVolumeIsRemovableKey.
func KCFURLVolumeIsRootFileSystemKey ¶
KCFURLVolumeIsRootFileSystemKey returns the value of the constant kCFURLVolumeIsRootFileSystemKey.
func KCFURLVolumeLocalizedFormatDescriptionKey ¶
KCFURLVolumeLocalizedFormatDescriptionKey returns the value of the constant kCFURLVolumeLocalizedFormatDescriptionKey.
func KCFURLVolumeLocalizedNameKey ¶
KCFURLVolumeLocalizedNameKey returns the value of the constant kCFURLVolumeLocalizedNameKey.
func KCFURLVolumeMaximumFileSizeKey ¶
KCFURLVolumeMaximumFileSizeKey returns the value of the constant kCFURLVolumeMaximumFileSizeKey.
func KCFURLVolumeMountFromLocationKey ¶
KCFURLVolumeMountFromLocationKey returns the value of the constant kCFURLVolumeMountFromLocationKey.
func KCFURLVolumeNameKey ¶
KCFURLVolumeNameKey returns the value of the constant kCFURLVolumeNameKey.
func KCFURLVolumeResourceCountKey ¶
KCFURLVolumeResourceCountKey returns the value of the constant kCFURLVolumeResourceCountKey.
func KCFURLVolumeSubtypeKey ¶
KCFURLVolumeSubtypeKey returns the value of the constant kCFURLVolumeSubtypeKey.
func KCFURLVolumeSupportsAccessPermissionsKey ¶
KCFURLVolumeSupportsAccessPermissionsKey returns the value of the constant kCFURLVolumeSupportsAccessPermissionsKey.
func KCFURLVolumeSupportsAdvisoryFileLockingKey ¶
KCFURLVolumeSupportsAdvisoryFileLockingKey returns the value of the constant kCFURLVolumeSupportsAdvisoryFileLockingKey.
func KCFURLVolumeSupportsCasePreservedNamesKey ¶
KCFURLVolumeSupportsCasePreservedNamesKey returns the value of the constant kCFURLVolumeSupportsCasePreservedNamesKey.
func KCFURLVolumeSupportsCaseSensitiveNamesKey ¶
KCFURLVolumeSupportsCaseSensitiveNamesKey returns the value of the constant kCFURLVolumeSupportsCaseSensitiveNamesKey.
func KCFURLVolumeSupportsCompressionKey ¶
KCFURLVolumeSupportsCompressionKey returns the value of the constant kCFURLVolumeSupportsCompressionKey.
func KCFURLVolumeSupportsExclusiveRenamingKey ¶
KCFURLVolumeSupportsExclusiveRenamingKey returns the value of the constant kCFURLVolumeSupportsExclusiveRenamingKey.
func KCFURLVolumeSupportsExtendedSecurityKey ¶
KCFURLVolumeSupportsExtendedSecurityKey returns the value of the constant kCFURLVolumeSupportsExtendedSecurityKey.
func KCFURLVolumeSupportsFileCloningKey ¶
KCFURLVolumeSupportsFileCloningKey returns the value of the constant kCFURLVolumeSupportsFileCloningKey.
func KCFURLVolumeSupportsFileProtectionKey ¶
KCFURLVolumeSupportsFileProtectionKey returns the value of the constant kCFURLVolumeSupportsFileProtectionKey.
func KCFURLVolumeSupportsHardLinksKey ¶
KCFURLVolumeSupportsHardLinksKey returns the value of the constant kCFURLVolumeSupportsHardLinksKey.
func KCFURLVolumeSupportsImmutableFilesKey ¶
KCFURLVolumeSupportsImmutableFilesKey returns the value of the constant kCFURLVolumeSupportsImmutableFilesKey.
func KCFURLVolumeSupportsJournalingKey ¶
KCFURLVolumeSupportsJournalingKey returns the value of the constant kCFURLVolumeSupportsJournalingKey.
func KCFURLVolumeSupportsPersistentIDsKey ¶
KCFURLVolumeSupportsPersistentIDsKey returns the value of the constant kCFURLVolumeSupportsPersistentIDsKey.
func KCFURLVolumeSupportsRenamingKey ¶
KCFURLVolumeSupportsRenamingKey returns the value of the constant kCFURLVolumeSupportsRenamingKey.
func KCFURLVolumeSupportsRootDirectoryDatesKey ¶
KCFURLVolumeSupportsRootDirectoryDatesKey returns the value of the constant kCFURLVolumeSupportsRootDirectoryDatesKey.
func KCFURLVolumeSupportsSparseFilesKey ¶
KCFURLVolumeSupportsSparseFilesKey returns the value of the constant kCFURLVolumeSupportsSparseFilesKey.
func KCFURLVolumeSupportsSwapRenamingKey ¶
KCFURLVolumeSupportsSwapRenamingKey returns the value of the constant kCFURLVolumeSupportsSwapRenamingKey.
func KCFURLVolumeSupportsSymbolicLinksKey ¶
KCFURLVolumeSupportsSymbolicLinksKey returns the value of the constant kCFURLVolumeSupportsSymbolicLinksKey.
func KCFURLVolumeSupportsVolumeSizesKey ¶
KCFURLVolumeSupportsVolumeSizesKey returns the value of the constant kCFURLVolumeSupportsVolumeSizesKey.
func KCFURLVolumeSupportsZeroRunsKey ¶
KCFURLVolumeSupportsZeroRunsKey returns the value of the constant kCFURLVolumeSupportsZeroRunsKey.
func KCFURLVolumeTotalCapacityKey ¶
KCFURLVolumeTotalCapacityKey returns the value of the constant kCFURLVolumeTotalCapacityKey.
func KCFURLVolumeTypeNameKey ¶
KCFURLVolumeTypeNameKey returns the value of the constant kCFURLVolumeTypeNameKey.
func KCFURLVolumeURLForRemountingKey ¶
KCFURLVolumeURLForRemountingKey returns the value of the constant kCFURLVolumeURLForRemountingKey.
func KCFURLVolumeURLKey ¶
KCFURLVolumeURLKey returns the value of the constant kCFURLVolumeURLKey.
func KCFURLVolumeUUIDStringKey ¶
KCFURLVolumeUUIDStringKey returns the value of the constant kCFURLVolumeUUIDStringKey.
func KCFUserNotificationAlertHeaderKey ¶
KCFUserNotificationAlertHeaderKey returns the value of the constant kCFUserNotificationAlertHeaderKey.
func KCFUserNotificationAlertMessageKey ¶
KCFUserNotificationAlertMessageKey returns the value of the constant kCFUserNotificationAlertMessageKey.
func KCFUserNotificationAlertTopMostKey ¶
KCFUserNotificationAlertTopMostKey returns the value of the constant kCFUserNotificationAlertTopMostKey.
func KCFUserNotificationAlternateButtonTitleKey ¶
KCFUserNotificationAlternateButtonTitleKey returns the value of the constant kCFUserNotificationAlternateButtonTitleKey.
func KCFUserNotificationCheckBoxTitlesKey ¶
KCFUserNotificationCheckBoxTitlesKey returns the value of the constant kCFUserNotificationCheckBoxTitlesKey.
func KCFUserNotificationDefaultButtonTitleKey ¶
KCFUserNotificationDefaultButtonTitleKey returns the value of the constant kCFUserNotificationDefaultButtonTitleKey.
func KCFUserNotificationIconURLKey ¶
KCFUserNotificationIconURLKey returns the value of the constant kCFUserNotificationIconURLKey.
func KCFUserNotificationKeyboardTypesKey ¶
KCFUserNotificationKeyboardTypesKey returns the value of the constant kCFUserNotificationKeyboardTypesKey.
func KCFUserNotificationLocalizationURLKey ¶
KCFUserNotificationLocalizationURLKey returns the value of the constant kCFUserNotificationLocalizationURLKey.
func KCFUserNotificationOtherButtonTitleKey ¶
KCFUserNotificationOtherButtonTitleKey returns the value of the constant kCFUserNotificationOtherButtonTitleKey.
func KCFUserNotificationPopUpSelectionKey ¶
KCFUserNotificationPopUpSelectionKey returns the value of the constant kCFUserNotificationPopUpSelectionKey.
func KCFUserNotificationPopUpTitlesKey ¶
KCFUserNotificationPopUpTitlesKey returns the value of the constant kCFUserNotificationPopUpTitlesKey.
func KCFUserNotificationProgressIndicatorValueKey ¶
KCFUserNotificationProgressIndicatorValueKey returns the value of the constant kCFUserNotificationProgressIndicatorValueKey.
func KCFUserNotificationSoundURLKey ¶
KCFUserNotificationSoundURLKey returns the value of the constant kCFUserNotificationSoundURLKey.
func KCFUserNotificationTextFieldTitlesKey ¶
KCFUserNotificationTextFieldTitlesKey returns the value of the constant kCFUserNotificationTextFieldTitlesKey.
func KCFUserNotificationTextFieldValuesKey ¶
KCFUserNotificationTextFieldValuesKey returns the value of the constant kCFUserNotificationTextFieldValuesKey.
func KCFVietnameseCalendar ¶
func KCFVietnameseCalendar() uintptr
KCFVietnameseCalendar returns the address of the symbol kCFVietnameseCalendar.
func KCFVikramCalendar ¶
func KCFVikramCalendar() uintptr
KCFVikramCalendar returns the address of the symbol kCFVikramCalendar.
func KCFXMLTreeErrorDescription ¶
KCFXMLTreeErrorDescription returns the value of the constant kCFXMLTreeErrorDescription.
func KCFXMLTreeErrorLineNumber ¶
KCFXMLTreeErrorLineNumber returns the value of the constant kCFXMLTreeErrorLineNumber.
func KCFXMLTreeErrorLocation ¶
KCFXMLTreeErrorLocation returns the value of the constant kCFXMLTreeErrorLocation.
func KCFXMLTreeErrorStatusCode ¶
KCFXMLTreeErrorStatusCode returns the value of the constant kCFXMLTreeErrorStatusCode.
Types ¶
type CFAllocator ¶
type CFAllocator struct{}
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
}
A structure that defines the context or operating environment for an allocator (CFAllocator) object. Every Core Foundation allocator object must have a context defined for it.
type CFArrayCallBacks ¶
type CFArrayCallBacks struct {
Version int
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
Equal unsafe.Pointer
}
Structure containing the callbacks of a CFArray.
type CFAttributedString ¶
type CFAttributedString struct{}
type CFBagCallBacks ¶
type CFBagCallBacks struct {
Version int
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
Equal unsafe.Pointer
Hash unsafe.Pointer
}
This structure contains the callbacks used to retain, release, describe, and compare the values of a CFBag object.
type CFBinaryHeap ¶
type CFBinaryHeap struct{}
type CFBinaryHeapCallBacks ¶
type CFBinaryHeapCallBacks struct {
Version int
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
Compare unsafe.Pointer
}
Structure containing the callbacks for values for a CFBinaryHeap object.
type CFBinaryHeapCompareContext ¶
type CFBinaryHeapCompareContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
Not used.
type CFBitVector ¶
type CFBitVector struct{}
type CFByteOrder ¶ added in v0.17.0
type CFByteOrder int64
const ( CFByteOrderUnknown CFByteOrder = 0 CFByteOrderLittleEndian CFByteOrder = 1 CFByteOrderBigEndian CFByteOrder = 2 )
func (CFByteOrder) String ¶ added in v0.17.0
func (e CFByteOrder) String() string
String returns the CFByteOrder constant's name, or its numeric form when the value is not a known constant.
type CFCalendar ¶
type CFCalendar struct{}
type CFCalendarUnit ¶
type CFCalendarUnit int64
CFCalendarUnit constants are used to specify calendrical units, such as day or month, in various calendar calculations. Bitmask — values may be combined with |.
const ( // Specifies the era unit. KCFCalendarUnitEra CFCalendarUnit = 2 // Specifies the year unit. KCFCalendarUnitYear CFCalendarUnit = 4 // Specifies the month unit. KCFCalendarUnitMonth CFCalendarUnit = 8 // Specifies the day unit. KCFCalendarUnitDay CFCalendarUnit = 16 // Specifies the hour unit. KCFCalendarUnitHour CFCalendarUnit = 32 // Specifies the minute unit. KCFCalendarUnitMinute CFCalendarUnit = 64 // Specifies the second unit. KCFCalendarUnitSecond CFCalendarUnit = 128 // Specifies the week unit. // // Deprecated: Use kCFCalendarUnitWeekOfYear or kCFCalendarUnitWeekOfMonth instead KCFCalendarUnitWeek CFCalendarUnit = 256 // Specifies the weekday unit. // // Deprecated: Use kCFCalendarUnitWeekOfYear or kCFCalendarUnitWeekOfMonth instead KCFCalendarUnitWeekday CFCalendarUnit = 512 // Specifies the ordinal weekday unit. // // Deprecated: Use kCFCalendarUnitWeekOfYear or kCFCalendarUnitWeekOfMonth instead KCFCalendarUnitWeekdayOrdinal CFCalendarUnit = 1024 // Specifies the quarter-year unit. KCFCalendarUnitQuarter CFCalendarUnit = 2048 // Specifies the original week of a month calendar unit. KCFCalendarUnitWeekOfMonth CFCalendarUnit = 4096 // Specifies the original week of the year calendar unit. KCFCalendarUnitWeekOfYear CFCalendarUnit = 8192 // Specifies the relative year for a week within a year calendar unit. KCFCalendarUnitYearForWeekOfYear CFCalendarUnit = 16384 KCFCalendarUnitDayOfYear CFCalendarUnit = 65536 )
func (CFCalendarUnit) String ¶
func (e CFCalendarUnit) String() string
String returns the CFCalendarUnit constant's name, or its numeric form when the value is not a known constant.
type CFCharacterSet ¶
type CFCharacterSet struct{}
type CFCharacterSetPredefinedSet ¶
type CFCharacterSetPredefinedSet int64
Defines a predefined character set.
const ( // Control character set (Unicode General Category Cc and Cf). KCFCharacterSetControl CFCharacterSetPredefinedSet = 1 // Whitespace character set (Unicode General Category Zs and U0009 CHARACTER TABULATION). KCFCharacterSetWhitespace CFCharacterSetPredefinedSet = 2 // Whitespace and Newline character set (Unicode General Category Z*, U000A ~ U000D, and U0085). KCFCharacterSetWhitespaceAndNewline CFCharacterSetPredefinedSet = 3 // Decimal digit character set. KCFCharacterSetDecimalDigit CFCharacterSetPredefinedSet = 4 // Letter character set (Unicode General Category L* & M*). KCFCharacterSetLetter CFCharacterSetPredefinedSet = 5 // Lowercase character set (Unicode General Category Ll). KCFCharacterSetLowercaseLetter CFCharacterSetPredefinedSet = 6 // Uppercase character set (Unicode General Category Lu and Lt). KCFCharacterSetUppercaseLetter CFCharacterSetPredefinedSet = 7 // Non-base character set (Unicode General Category M*). KCFCharacterSetNonBase CFCharacterSetPredefinedSet = 8 // Canonically decomposable character set. KCFCharacterSetDecomposable CFCharacterSetPredefinedSet = 9 // Alpha Numeric character set (Unicode General Category L*, M*, & N*). KCFCharacterSetAlphaNumeric CFCharacterSetPredefinedSet = 10 // Punctuation character set (Unicode General Category P*). KCFCharacterSetPunctuation CFCharacterSetPredefinedSet = 11 // Titlecase character set (Unicode General Category Lt). KCFCharacterSetCapitalizedLetter CFCharacterSetPredefinedSet = 13 // Symbol character set (Unicode General Category S*). KCFCharacterSetSymbol CFCharacterSetPredefinedSet = 14 // Newline character set (U000A ~ U000D, U0085, U2028, and U2029). KCFCharacterSetNewline CFCharacterSetPredefinedSet = 15 // Illegal character set. KCFCharacterSetIllegal CFCharacterSetPredefinedSet = 12 )
func (CFCharacterSetPredefinedSet) String ¶
func (e CFCharacterSetPredefinedSet) String() string
String returns the CFCharacterSetPredefinedSet constant's name, or its numeric form when the value is not a known constant.
type CFComparisonResult ¶
type CFComparisonResult int64
Constants returned by comparison functions, indicating whether a value is equal to, less than, or greater than another value.
const ( // Returned by a comparison function if the first value is less than the second value. KCFCompareLessThan CFComparisonResult = -1 // Returned by a comparison function if the first value is equal to the second value. KCFCompareEqualTo CFComparisonResult = 0 // Returned by a comparison function if the first value is greater than the second value. KCFCompareGreaterThan CFComparisonResult = 1 )
func CFDateCompare ¶
func CFDateCompare(theDate obj.Object, otherDate obj.Object, context_ unsafe.Pointer) CFComparisonResult
CFDateCompare calls the CoreFoundation framework function CFDateCompare.
func CFNumberCompare ¶
func CFNumberCompare(number obj.Object, otherNumber obj.Object, context_ unsafe.Pointer) CFComparisonResult
CFNumberCompare calls the CoreFoundation framework function CFNumberCompare.
func CFStringCompare ¶
func CFStringCompare(theString1 obj.Object, theString2 obj.Object, compareOptions CFStringCompareFlags) CFComparisonResult
CFStringCompare calls the CoreFoundation framework function CFStringCompare.
func CFStringCompareWithOptions ¶
func CFStringCompareWithOptions(theString1 obj.Object, theString2 obj.Object, rangeToCompare unsafe.Pointer, compareOptions CFStringCompareFlags) CFComparisonResult
CFStringCompareWithOptions calls the CoreFoundation framework function CFStringCompareWithOptions.
func CFStringCompareWithOptionsAndLocale ¶
func CFStringCompareWithOptionsAndLocale(theString1 obj.Object, theString2 obj.Object, rangeToCompare unsafe.Pointer, compareOptions CFStringCompareFlags, locale obj.Object) CFComparisonResult
CFStringCompareWithOptionsAndLocale calls the CoreFoundation framework function CFStringCompareWithOptionsAndLocale.
func (CFComparisonResult) String ¶
func (e CFComparisonResult) String() string
String returns the CFComparisonResult constant's name, or its numeric form when the value is not a known constant.
type CFDataSearchFlags ¶
type CFDataSearchFlags int64
A CFOptionFlags type for specifying options for searching. Bitmask — values may be combined with |.
const ( KCFDataSearchBackwards CFDataSearchFlags = 1 KCFDataSearchAnchored CFDataSearchFlags = 2 )
func (CFDataSearchFlags) String ¶
func (e CFDataSearchFlags) String() string
String returns the CFDataSearchFlags constant's name, or its numeric form when the value is not a known constant.
type CFDateFormatter ¶
type CFDateFormatter struct{}
type CFDateFormatterStyle ¶
type CFDateFormatterStyle int64
Data type for predefined date and time format styles.
const ( // Specifies no output. KCFDateFormatterNoStyle CFDateFormatterStyle = 0 // Specifies a short style, typically numeric only, such as “11/23/37” or “3:30pm”. KCFDateFormatterShortStyle CFDateFormatterStyle = 1 // Specifies a medium style, typically with abbreviated text, such as “Nov 23, 1937”. KCFDateFormatterMediumStyle CFDateFormatterStyle = 2 // Specifies a long style, typically with full text, such as “November 23, 1937” or “3:30:32pm”. KCFDateFormatterLongStyle CFDateFormatterStyle = 3 // Specifies a full style with complete details, such as “Tuesday, April 12, 1952 AD” or “3:30:42pm PST”. KCFDateFormatterFullStyle CFDateFormatterStyle = 4 )
func CFDateFormatterGetDateStyle ¶
func CFDateFormatterGetDateStyle(formatter obj.Object) CFDateFormatterStyle
CFDateFormatterGetDateStyle calls the CoreFoundation framework function CFDateFormatterGetDateStyle.
func CFDateFormatterGetTimeStyle ¶
func CFDateFormatterGetTimeStyle(formatter obj.Object) CFDateFormatterStyle
CFDateFormatterGetTimeStyle calls the CoreFoundation framework function CFDateFormatterGetTimeStyle.
func (CFDateFormatterStyle) String ¶
func (e CFDateFormatterStyle) String() string
String returns the CFDateFormatterStyle constant's name, or its numeric form when the value is not a known constant.
type CFDictionary ¶
type CFDictionary struct{}
type CFDictionaryKeyCallBacks ¶
type CFDictionaryKeyCallBacks struct {
Version int
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
Equal unsafe.Pointer
Hash unsafe.Pointer
}
This structure contains the callbacks used to retain, release, describe, and compare the keys in a dictionary.
type CFDictionaryValueCallBacks ¶
type CFDictionaryValueCallBacks struct {
Version int
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
Equal unsafe.Pointer
}
This structure contains the callbacks used to retain, release, describe, and compare the values in a dictionary.
type CFFileDescriptor ¶
type CFFileDescriptor struct{}
type CFFileDescriptorContext ¶
type CFFileDescriptorContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
Defines a structure for the context of a CFFileDescriptor.
type CFFileSecurity ¶
type CFFileSecurity struct{}
type CFFileSecurityClearOptions ¶
type CFFileSecurityClearOptions int64
Bitmask — values may be combined with |.
const ( // Clear the (POSIX) owner ID. KCFFileSecurityClearOwner CFFileSecurityClearOptions = 1 // Clear the (POSIX) group ID. KCFFileSecurityClearGroup CFFileSecurityClearOptions = 2 // Clear the file’s mode (POSIX permissions). KCFFileSecurityClearMode CFFileSecurityClearOptions = 4 // Clear the owner UUID (for the access control list). KCFFileSecurityClearOwnerUUID CFFileSecurityClearOptions = 8 // Clear the group UUID (for the access control list). KCFFileSecurityClearGroupUUID CFFileSecurityClearOptions = 16 // Clear the access control list. KCFFileSecurityClearAccessControlList CFFileSecurityClearOptions = 32 )
func (CFFileSecurityClearOptions) String ¶
func (e CFFileSecurityClearOptions) String() string
String returns the CFFileSecurityClearOptions constant's name, or its numeric form when the value is not a known constant.
type CFGregorianDate ¶
Structure used to represent a point in time using the Gregorian calendar.
type CFGregorianUnitFlags ¶
type CFGregorianUnitFlags int64
These option flags are used as a mask to indicate a specific set of fields in the CFGregorianDate or CFGregorianUnits structures. Bitmask — values may be combined with |.
const ( // Specifies the year field. // // Deprecated: Use CFCalendar or NSCalendar API instead KCFGregorianUnitsYears CFGregorianUnitFlags = 1 // Specifies the month field. // // Deprecated: Use CFCalendar or NSCalendar API instead KCFGregorianUnitsMonths CFGregorianUnitFlags = 2 // Specifies the day field. // // Deprecated: Use CFCalendar or NSCalendar API instead KCFGregorianUnitsDays CFGregorianUnitFlags = 4 // Specifies the hours field. // // Deprecated: Use CFCalendar or NSCalendar API instead KCFGregorianUnitsHours CFGregorianUnitFlags = 8 // Specifies the minutes field. // // Deprecated: Use CFCalendar or NSCalendar API instead KCFGregorianUnitsMinutes CFGregorianUnitFlags = 16 // Specifies the seconds field. // // Deprecated: Use CFCalendar or NSCalendar API instead KCFGregorianUnitsSeconds CFGregorianUnitFlags = 32 // Specifies all fields. // // Deprecated: Use CFCalendar or NSCalendar API instead KCFGregorianAllUnits CFGregorianUnitFlags = 16777215 )
func (CFGregorianUnitFlags) String ¶
func (e CFGregorianUnitFlags) String() string
String returns the CFGregorianUnitFlags constant's name, or its numeric form when the value is not a known constant.
type CFGregorianUnits ¶
type CFGregorianUnits struct {
Years int
Months int
Days int
Hours int
Minutes int
Seconds float64
}
Structure used to represent a time interval in Gregorian units.
type CFISO8601DateFormatOptions ¶
type CFISO8601DateFormatOptions int64
Bitmask — values may be combined with |.
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 ¶
func (e CFISO8601DateFormatOptions) String() string
String returns the CFISO8601DateFormatOptions constant's name, or its numeric form when the value is not a known constant.
type CFLocaleLanguageDirection ¶
type CFLocaleLanguageDirection int64
These constants describe the text direction for a language. They are returned by the functions CFLocaleGetLanguageCharacterDirection and CFLocaleGetLanguageLineDirection.
const ( KCFLocaleLanguageDirectionUnknown CFLocaleLanguageDirection = 0 KCFLocaleLanguageDirectionLeftToRight CFLocaleLanguageDirection = 1 KCFLocaleLanguageDirectionRightToLeft CFLocaleLanguageDirection = 2 KCFLocaleLanguageDirectionTopToBottom CFLocaleLanguageDirection = 3 KCFLocaleLanguageDirectionBottomToTop CFLocaleLanguageDirection = 4 )
func CFLocaleGetLanguageCharacterDirection ¶
func CFLocaleGetLanguageCharacterDirection(isoLangCode obj.Object) CFLocaleLanguageDirection
CFLocaleGetLanguageCharacterDirection calls the CoreFoundation framework function CFLocaleGetLanguageCharacterDirection.
func CFLocaleGetLanguageLineDirection ¶
func CFLocaleGetLanguageLineDirection(isoLangCode obj.Object) CFLocaleLanguageDirection
CFLocaleGetLanguageLineDirection calls the CoreFoundation framework function CFLocaleGetLanguageLineDirection.
func (CFLocaleLanguageDirection) String ¶
func (e CFLocaleLanguageDirection) String() string
String returns the CFLocaleLanguageDirection constant's name, or its numeric form when the value is not a known constant.
type CFMachPort ¶
type CFMachPort struct{}
type CFMachPortContext ¶
type CFMachPortContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
A structure that contains program-defined data and callbacks with which you can configure a CFMachPort object’s behavior.
type CFMessagePort ¶
type CFMessagePort struct{}
type CFMessagePortContext ¶
type CFMessagePortContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
A structure that contains program-defined data and callbacks with which you can configure a CFMessagePort object’s behavior.
type CFNotificationCenter ¶
type CFNotificationCenter struct{}
type CFNotificationSuspensionBehavior ¶
type CFNotificationSuspensionBehavior int64
Suspension flags that indicate how distributed notifications should be handled when the receiving application is in the background.
const ( // The server will not queue any notifications of the specified name and object while the receiving application is in the background. CFNotificationSuspensionBehaviorDrop CFNotificationSuspensionBehavior = 1 // The server will only queue the last notification of the specified name and object; earlier notifications are dropped. CFNotificationSuspensionBehaviorCoalesce CFNotificationSuspensionBehavior = 2 // The server will hold all matching notifications until the queue has been filled (queue size determined by the server) at which point the server may flush queued notifications. CFNotificationSuspensionBehaviorHold CFNotificationSuspensionBehavior = 3 // The server will deliver notifications of the specified name and object whether or not the application is in the background. When a notification with this suspension behavior is matched, it has the effect of first flushing any queued notifications. CFNotificationSuspensionBehaviorDeliverImmediately CFNotificationSuspensionBehavior = 4 )
func (CFNotificationSuspensionBehavior) String ¶
func (e CFNotificationSuspensionBehavior) String() string
String returns the CFNotificationSuspensionBehavior constant's name, or its numeric form when the value is not a known constant.
type CFNumberFormatter ¶
type CFNumberFormatter struct{}
type CFNumberFormatterOptionFlags ¶
type CFNumberFormatterOptionFlags int64
Type for constants specifying how numbers should be parsed. Bitmask — values may be combined with |.
const ( // Specifies that only integers should be parsed. KCFNumberFormatterParseIntegersOnly CFNumberFormatterOptionFlags = 1 )
func (CFNumberFormatterOptionFlags) String ¶
func (e CFNumberFormatterOptionFlags) String() string
String returns the CFNumberFormatterOptionFlags constant's name, or its numeric form when the value is not a known constant.
type CFNumberFormatterPadPosition ¶
type CFNumberFormatterPadPosition int64
Type for constants specifying how numbers should be padded.
const ( // Specifies the number of padding characters before the prefix. KCFNumberFormatterPadBeforePrefix CFNumberFormatterPadPosition = 0 // Specifies the number of padding characters after the prefix. KCFNumberFormatterPadAfterPrefix CFNumberFormatterPadPosition = 1 // Specifies the number of padding characters before the suffix. KCFNumberFormatterPadBeforeSuffix CFNumberFormatterPadPosition = 2 // Specifies the number of padding characters after the suffix. KCFNumberFormatterPadAfterSuffix CFNumberFormatterPadPosition = 3 )
func (CFNumberFormatterPadPosition) String ¶
func (e CFNumberFormatterPadPosition) String() string
String returns the CFNumberFormatterPadPosition constant's name, or its numeric form when the value is not a known constant.
type CFNumberFormatterRoundingMode ¶
type CFNumberFormatterRoundingMode int64
These constants are used to specify how numbers should be rounded.
const ( // Round towards positive infinity. KCFNumberFormatterRoundCeiling CFNumberFormatterRoundingMode = 0 // Round towards negative infinity. KCFNumberFormatterRoundFloor CFNumberFormatterRoundingMode = 1 // Round towards zero. KCFNumberFormatterRoundDown CFNumberFormatterRoundingMode = 2 // Round away from zero. KCFNumberFormatterRoundUp CFNumberFormatterRoundingMode = 3 // Round towards the nearest integer, or towards an even number if equidistant. KCFNumberFormatterRoundHalfEven CFNumberFormatterRoundingMode = 4 // Round towards the nearest integer, or towards zero if equidistant. KCFNumberFormatterRoundHalfDown CFNumberFormatterRoundingMode = 5 // Round towards the nearest integer, or away from zero if equidistant. KCFNumberFormatterRoundHalfUp CFNumberFormatterRoundingMode = 6 )
func (CFNumberFormatterRoundingMode) String ¶
func (e CFNumberFormatterRoundingMode) String() string
String returns the CFNumberFormatterRoundingMode constant's name, or its numeric form when the value is not a known constant.
type CFNumberFormatterStyle ¶
type CFNumberFormatterStyle int64
Type for constants specifying a formatter style.
const ( // Specifies no style. KCFNumberFormatterNoStyle CFNumberFormatterStyle = 0 // Specifies a decimal style format. KCFNumberFormatterDecimalStyle CFNumberFormatterStyle = 1 // Specifies a currency style format. KCFNumberFormatterCurrencyStyle CFNumberFormatterStyle = 2 // Specifies a percent style format. KCFNumberFormatterPercentStyle CFNumberFormatterStyle = 3 // Specifies a scientific style format. KCFNumberFormatterScientificStyle CFNumberFormatterStyle = 4 // Specifies a spelled out format. KCFNumberFormatterSpellOutStyle CFNumberFormatterStyle = 5 KCFNumberFormatterOrdinalStyle CFNumberFormatterStyle = 6 KCFNumberFormatterCurrencyISOCodeStyle CFNumberFormatterStyle = 8 KCFNumberFormatterCurrencyPluralStyle CFNumberFormatterStyle = 9 KCFNumberFormatterCurrencyAccountingStyle CFNumberFormatterStyle = 10 )
func CFNumberFormatterGetStyle ¶
func CFNumberFormatterGetStyle(formatter obj.Object) CFNumberFormatterStyle
CFNumberFormatterGetStyle calls the CoreFoundation framework function CFNumberFormatterGetStyle.
func (CFNumberFormatterStyle) String ¶
func (e CFNumberFormatterStyle) String() string
String returns the CFNumberFormatterStyle constant's name, or its numeric form when the value is not a known constant.
type CFNumberType ¶
type CFNumberType int64
Flags used by CFNumber to indicate the data type of a value.
const ( // Eight-bit, signed integer. The SInt8 data type is defined in MacTypes.h. KCFNumberSInt8Type CFNumberType = 1 // Sixteen-bit, signed integer. The SInt16 data type is defined in MacTypes.h. KCFNumberSInt16Type CFNumberType = 2 // Thirty-two-bit, signed integer. The SInt32 data type is defined in MacTypes.h. KCFNumberSInt32Type CFNumberType = 3 // Sixty-four-bit, signed integer. The SInt64 data type is defined in MacTypes.h. KCFNumberSInt64Type CFNumberType = 4 // Thirty-two-bit real. The Float32 data type is defined in MacTypes.h. KCFNumberFloat32Type CFNumberType = 5 // Sixty-four-bit real. The Float64 data type is defined in MacTypes.h and conforms to the 64-bit IEEE 754 standard. KCFNumberFloat64Type CFNumberType = 6 // Basic C char type. KCFNumberCharType CFNumberType = 7 // Basic C short type. KCFNumberShortType CFNumberType = 8 // Basic C int type. KCFNumberIntType CFNumberType = 9 // Basic C long type. KCFNumberLongType CFNumberType = 10 // Basic C long long type. KCFNumberLongLongType CFNumberType = 11 // Basic C float type. KCFNumberFloatType CFNumberType = 12 // Basic C double type. KCFNumberDoubleType CFNumberType = 13 // CFIndex value. KCFNumberCFIndexType CFNumberType = 14 // NSInteger value. KCFNumberNSIntegerType CFNumberType = 15 // CGFloat value. KCFNumberCGFloatType CFNumberType = 16 // Same as kCFNumberCGFloatType. KCFNumberMaxType CFNumberType = 16 )
func CFNumberGetType ¶
func CFNumberGetType(number obj.Object) CFNumberType
CFNumberGetType calls the CoreFoundation framework function CFNumberGetType.
func (CFNumberType) String ¶
func (e CFNumberType) String() string
String returns the CFNumberType constant's name, or its numeric form when the value is not a known constant.
type CFPlugInInstance ¶
type CFPlugInInstance struct{}
type CFPropertyListFormat ¶
type CFPropertyListFormat int64
Specifies the format of a property list.
const ( // OpenStep format (use of this format is discouraged). KCFPropertyListOpenStepFormat CFPropertyListFormat = 1 // XML format version 1.0. KCFPropertyListXMLFormat_v1_0 CFPropertyListFormat = 100 // Binary format version 1.0. KCFPropertyListBinaryFormat_v1_0 CFPropertyListFormat = 200 )
func CFPropertyListCreateFromStream ¶
func CFPropertyListCreateFromStream(allocator obj.Object, stream obj.Object, streamLength int, mutabilityOption int, errorString unsafe.Pointer) (result obj.Object, format CFPropertyListFormat)
CFPropertyListCreateFromStream calls the CoreFoundation framework function CFPropertyListCreateFromStream.
func CFPropertyListCreateWithData ¶
func CFPropertyListCreateWithData(allocator obj.Object, data obj.Object, options int, err unsafe.Pointer) (result obj.Object, format CFPropertyListFormat)
CFPropertyListCreateWithData calls the CoreFoundation framework function CFPropertyListCreateWithData.
func CFPropertyListCreateWithStream ¶
func CFPropertyListCreateWithStream(allocator obj.Object, stream obj.Object, streamLength int, options int, err unsafe.Pointer) (result obj.Object, format CFPropertyListFormat)
CFPropertyListCreateWithStream calls the CoreFoundation framework function CFPropertyListCreateWithStream.
func (CFPropertyListFormat) String ¶
func (e CFPropertyListFormat) String() string
String returns the CFPropertyListFormat constant's name, or its numeric form when the value is not a known constant.
type CFPropertyListMutabilityOptions ¶
type CFPropertyListMutabilityOptions int64
Type for flags that determine the degree of mutability of newly created property lists. Bitmask — values may be combined with |.
const ( // Specifies that the property list should be immutable. KCFPropertyListImmutable CFPropertyListMutabilityOptions = 0 // Specifies that the property list should have mutable containers but immutable leaves. KCFPropertyListMutableContainers CFPropertyListMutabilityOptions = 1 // Specifies that the property list should have mutable containers and mutable leaves. KCFPropertyListMutableContainersAndLeaves CFPropertyListMutabilityOptions = 2 )
func (CFPropertyListMutabilityOptions) String ¶
func (e CFPropertyListMutabilityOptions) String() string
String returns the CFPropertyListMutabilityOptions constant's name, or its numeric form when the value is not a known constant.
type CFRange ¶
A structure representing a range of sequential items in a container, such as characters in a buffer or elements in a collection.
func CFAttributedStringGetAttribute ¶
func CFAttributedStringGetAttribute(aStr obj.Object, loc int, attrName obj.Object) (result obj.Object, effectiveRange CFRange)
CFAttributedStringGetAttribute calls the CoreFoundation framework function CFAttributedStringGetAttribute.
func CFAttributedStringGetAttributeAndLongestEffectiveRange ¶
func CFAttributedStringGetAttributeAndLongestEffectiveRange(aStr obj.Object, loc int, attrName obj.Object, inRange unsafe.Pointer) (result obj.Object, longestEffectiveRange CFRange)
CFAttributedStringGetAttributeAndLongestEffectiveRange calls the CoreFoundation framework function CFAttributedStringGetAttributeAndLongestEffectiveRange.
func CFAttributedStringGetAttributes ¶
func CFAttributedStringGetAttributes(aStr obj.Object, loc int) (result obj.Object, effectiveRange CFRange)
CFAttributedStringGetAttributes calls the CoreFoundation framework function CFAttributedStringGetAttributes.
func CFAttributedStringGetAttributesAndLongestEffectiveRange ¶
func CFAttributedStringGetAttributesAndLongestEffectiveRange(aStr obj.Object, loc int, inRange unsafe.Pointer) (result obj.Object, longestEffectiveRange CFRange)
CFAttributedStringGetAttributesAndLongestEffectiveRange calls the CoreFoundation framework function CFAttributedStringGetAttributesAndLongestEffectiveRange.
func CFDateFormatterCreateDateFromString ¶
func CFDateFormatterCreateDateFromString(allocator obj.Object, formatter obj.Object, str obj.Object) (result obj.Object, rangep CFRange)
CFDateFormatterCreateDateFromString calls the CoreFoundation framework function CFDateFormatterCreateDateFromString.
func CFDateFormatterGetAbsoluteTimeFromString ¶
func CFDateFormatterGetAbsoluteTimeFromString(formatter obj.Object, str obj.Object) (result uint8, rangep CFRange, atp float64)
CFDateFormatterGetAbsoluteTimeFromString calls the CoreFoundation framework function CFDateFormatterGetAbsoluteTimeFromString.
func CFNumberFormatterCreateNumberFromString ¶
func CFNumberFormatterCreateNumberFromString(allocator obj.Object, formatter obj.Object, str obj.Object, options int) (result obj.Object, rangep CFRange)
CFNumberFormatterCreateNumberFromString calls the CoreFoundation framework function CFNumberFormatterCreateNumberFromString.
func CFNumberFormatterGetValueFromString ¶
func CFNumberFormatterGetValueFromString(formatter obj.Object, str obj.Object, numberType CFNumberType, valuePtr unsafe.Pointer) (result uint8, rangep CFRange)
CFNumberFormatterGetValueFromString calls the CoreFoundation framework function CFNumberFormatterGetValueFromString.
func CFStringFindCharacterFromSet ¶
func CFStringFindCharacterFromSet(theString obj.Object, theSet obj.Object, rangeToSearch unsafe.Pointer, searchOptions CFStringCompareFlags) (result uint8, result_ CFRange)
CFStringFindCharacterFromSet calls the CoreFoundation framework function CFStringFindCharacterFromSet.
func CFStringFindWithOptions ¶
func CFStringFindWithOptions(theString obj.Object, stringToFind obj.Object, rangeToSearch unsafe.Pointer, searchOptions CFStringCompareFlags) (result uint8, result_ CFRange)
CFStringFindWithOptions calls the CoreFoundation framework function CFStringFindWithOptions.
func CFStringFindWithOptionsAndLocale ¶
func CFStringFindWithOptionsAndLocale(theString obj.Object, stringToFind obj.Object, rangeToSearch unsafe.Pointer, searchOptions CFStringCompareFlags, locale obj.Object) (result uint8, result_ CFRange)
CFStringFindWithOptionsAndLocale calls the CoreFoundation framework function CFStringFindWithOptionsAndLocale.
func CFStringTokenizerGetCurrentSubTokens ¶
func CFStringTokenizerGetCurrentSubTokens(tokenizer obj.Object, maxRangeLength int, derivedSubTokens obj.Object) (result int, ranges CFRange)
CFStringTokenizerGetCurrentSubTokens calls the CoreFoundation framework function CFStringTokenizerGetCurrentSubTokens.
func CFStringTransform ¶
func CFStringTransform(str obj.Object, transform obj.Object, reverse uint8) (result uint8, range_ CFRange)
CFStringTransform calls the CoreFoundation framework function CFStringTransform.
func CFURLGetByteRangeForComponent ¶
func CFURLGetByteRangeForComponent(url obj.Object, component CFURLComponentType) (result unsafe.Pointer, rangeIncludingSeparators CFRange)
CFURLGetByteRangeForComponent calls the CoreFoundation framework function CFURLGetByteRangeForComponent.
type CFReadStream ¶
type CFReadStream struct{}
type CFRunLoopActivity ¶
type CFRunLoopActivity int64
Run loop activity stages in which run loop observers can be scheduled. Bitmask — values may be combined with |.
const ( // The entrance of the run loop, before entering the event processing loop. This activity occurs once for each call to CFRunLoopRun and CFRunLoopRunInMode. KCFRunLoopEntry CFRunLoopActivity = 1 // Inside the event processing loop before any timers are processed. KCFRunLoopBeforeTimers CFRunLoopActivity = 2 // Inside the event processing loop before any sources are processed. KCFRunLoopBeforeSources CFRunLoopActivity = 4 KCFRunLoopBeforeWaiting CFRunLoopActivity = 32 // Inside the event processing loop after the run loop wakes up, but before processing the event that woke it up. This activity occurs only if the run loop did in fact go to sleep during the current loop. KCFRunLoopAfterWaiting CFRunLoopActivity = 64 // The exit of the run loop, after exiting the event processing loop. This activity occurs once for each call to CFRunLoopRun and CFRunLoopRunInMode. KCFRunLoopExit CFRunLoopActivity = 128 // A combination of all the preceding stages. KCFRunLoopAllActivities CFRunLoopActivity = 268435455 )
func (CFRunLoopActivity) String ¶
func (e CFRunLoopActivity) String() string
String returns the CFRunLoopActivity constant's name, or its numeric form when the value is not a known constant.
type CFRunLoopObserver ¶
type CFRunLoopObserver struct{}
type CFRunLoopObserverContext ¶
type CFRunLoopObserverContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
A structure that contains program-defined data and callbacks with which you can configure a CFRunLoopObserver object’s behavior.
type CFRunLoopRunResult ¶
type CFRunLoopRunResult int64
const ( // The running run loop mode has no sources or timers to process. KCFRunLoopRunFinished CFRunLoopRunResult = 1 // CFRunLoopStop was called on the run loop. KCFRunLoopRunStopped CFRunLoopRunResult = 2 // The specified time interval for running the run loop has passed. KCFRunLoopRunTimedOut CFRunLoopRunResult = 3 // A source has been processed. This value is returned only if the run loop was told to run only until a source was processed. KCFRunLoopRunHandledSource CFRunLoopRunResult = 4 )
func CFRunLoopRunInMode ¶
func CFRunLoopRunInMode(mode unsafe.Pointer, seconds float64, returnAfterSourceHandled uint8) CFRunLoopRunResult
CFRunLoopRunInMode calls the CoreFoundation framework function CFRunLoopRunInMode.
func (CFRunLoopRunResult) String ¶
func (e CFRunLoopRunResult) String() string
String returns the CFRunLoopRunResult constant's name, or its numeric form when the value is not a known constant.
type CFRunLoopSource ¶
type CFRunLoopSource struct{}
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
}
A structure that contains program-defined data and callbacks with which you can configure a version 0 CFRunLoopSource’s behavior.
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
}
A structure that contains program-defined data and callbacks with which you can configure a version 1 CFRunLoopSource’s behavior.
type CFRunLoopTimer ¶
type CFRunLoopTimer struct{}
type CFRunLoopTimerContext ¶
type CFRunLoopTimerContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
A structure that contains program-defined data and callbacks with which you can configure a CFRunLoopTimer’s behavior.
type CFSetCallBacks ¶
type CFSetCallBacks struct {
Version int
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
Equal unsafe.Pointer
Hash unsafe.Pointer
}
This structure contains the callbacks used to retain, release, describe, and compare the values of a CFSet object.
type CFSocketCallBackType ¶
type CFSocketCallBackType int64
Types of socket activity that can cause the callback function of a CFSocket object to be called. Bitmask — values may be combined with |.
const ( // No callback should be made for any activity. KCFSocketNoCallBack CFSocketCallBackType = 0 // The callback is called when data is available to be read or a new connection is waiting to be accepted. The data is not automatically read; the callback must read the data itself. KCFSocketReadCallBack CFSocketCallBackType = 1 // New connections will be automatically accepted and the callback is called with the data argument being a pointer to a CFSocketNativeHandle of the child socket. This callback is usable only with listening sockets. KCFSocketAcceptCallBack CFSocketCallBackType = 2 // Incoming data will be read in chunks in the background and the callback is called with the data argument being a CFData object containing the read data. KCFSocketDataCallBack CFSocketCallBackType = 3 KCFSocketConnectCallBack CFSocketCallBackType = 4 // The callback is called when the socket is writable. This callback type may be useful when large amounts of data are being sent rapidly over the socket and you want a notification when there is space in the kernel buffers for more data. KCFSocketWriteCallBack CFSocketCallBackType = 8 )
func (CFSocketCallBackType) String ¶
func (e CFSocketCallBackType) String() string
String returns the CFSocketCallBackType constant's name, or its numeric form when the value is not a known constant.
type CFSocketContext ¶
type CFSocketContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
A structure that contains program-defined data and callbacks with which you can configure a CFSocket object’s behavior.
type CFSocketError ¶
type CFSocketError int64
Error codes for many CFSocket functions.
const ( // The socket operation succeeded. KCFSocketSuccess CFSocketError = 0 // The socket operation failed. KCFSocketError CFSocketError = -1 // The socket operation timed out. KCFSocketTimeout CFSocketError = -2 )
func CFSocketConnectToAddress ¶
CFSocketConnectToAddress calls the CoreFoundation framework function CFSocketConnectToAddress.
func CFSocketCopyRegisteredSocketSignature ¶
func CFSocketCopyRegisteredSocketSignature(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object, signature unsafe.Pointer, nameServerAddress unsafe.Pointer) CFSocketError
CFSocketCopyRegisteredSocketSignature calls the CoreFoundation framework function CFSocketCopyRegisteredSocketSignature.
func CFSocketCopyRegisteredValue ¶
func CFSocketCopyRegisteredValue(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object, value unsafe.Pointer, nameServerAddress unsafe.Pointer) CFSocketError
CFSocketCopyRegisteredValue calls the CoreFoundation framework function CFSocketCopyRegisteredValue.
func CFSocketRegisterSocketSignature ¶
func CFSocketRegisterSocketSignature(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object, signature unsafe.Pointer) CFSocketError
CFSocketRegisterSocketSignature calls the CoreFoundation framework function CFSocketRegisterSocketSignature.
func CFSocketRegisterValue ¶
func CFSocketRegisterValue(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object, value obj.Object) CFSocketError
CFSocketRegisterValue calls the CoreFoundation framework function CFSocketRegisterValue.
func CFSocketSendData ¶
func CFSocketSendData(s obj.Object, address obj.Object, data obj.Object, timeout float64) CFSocketError
CFSocketSendData calls the CoreFoundation framework function CFSocketSendData.
func CFSocketSetAddress ¶
func CFSocketSetAddress(s obj.Object, address obj.Object) CFSocketError
CFSocketSetAddress calls the CoreFoundation framework function CFSocketSetAddress.
func CFSocketUnregister ¶
func CFSocketUnregister(nameServerSignature unsafe.Pointer, timeout float64, name obj.Object) CFSocketError
CFSocketUnregister calls the CoreFoundation framework function CFSocketUnregister.
func (CFSocketError) String ¶
func (e CFSocketError) String() string
String returns the CFSocketError constant's name, or its numeric form when the value is not a known constant.
type CFSocketSignature ¶
type CFSocketSignature struct {
ProtocolFamily int
SocketType int
Protocol int
Address unsafe.Pointer
}
A structure that fully specifies the communication protocol and connection address of a CFSocket object.
type CFStreamClientContext ¶
type CFStreamClientContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
A structure that contains program-defined data and callbacks with which you can configure a stream’s client behavior.
type CFStreamError ¶
The structure returned by CFReadStreamGetError and CFWriteStreamGetError.
type CFStreamErrorDomain ¶
type CFStreamErrorDomain int64
Defines constants for values returned in the domain field of the CFStreamError structure.
const ( // The error code is a custom error code. KCFStreamErrorDomainCustom CFStreamErrorDomain = -1 // The error code is an error code defined in errno.h. KCFStreamErrorDomainPOSIX CFStreamErrorDomain = 1 // The error is an OSStatus value defined in MacErrors.h. KCFStreamErrorDomainMacOSStatus CFStreamErrorDomain = 2 )
func (CFStreamErrorDomain) String ¶
func (e CFStreamErrorDomain) String() string
String returns the CFStreamErrorDomain constant's name, or its numeric form when the value is not a known constant.
type CFStreamEventType ¶
type CFStreamEventType int64
Defines constants for stream-related events. Bitmask — values may be combined with |.
const ( // No event has occurred. KCFStreamEventNone CFStreamEventType = 0 // The open has completed successfully. KCFStreamEventOpenCompleted CFStreamEventType = 1 // The stream has bytes to be read. KCFStreamEventHasBytesAvailable CFStreamEventType = 2 // The stream can accept bytes for writing. KCFStreamEventCanAcceptBytes CFStreamEventType = 4 // An error has occurred on the stream. KCFStreamEventErrorOccurred CFStreamEventType = 8 // The end of the stream has been reached. KCFStreamEventEndEncountered CFStreamEventType = 16 )
func (CFStreamEventType) String ¶
func (e CFStreamEventType) String() string
String returns the CFStreamEventType constant's name, or its numeric form when the value is not a known constant.
type CFStreamStatus ¶
type CFStreamStatus int64
Constants that describe the status of a stream.
const ( // The stream is not open for reading or writing. KCFStreamStatusNotOpen CFStreamStatus = 0 // The stream is being opened for reading or for writing. KCFStreamStatusOpening CFStreamStatus = 1 // The stream is open. KCFStreamStatusOpen CFStreamStatus = 2 // The stream is being read from. KCFStreamStatusReading CFStreamStatus = 3 // The stream is being written to. KCFStreamStatusWriting CFStreamStatus = 4 // There is no more data to read, or no more data can be written. KCFStreamStatusAtEnd CFStreamStatus = 5 // The stream is closed. KCFStreamStatusClosed CFStreamStatus = 6 // An error occurred on the stream. KCFStreamStatusError CFStreamStatus = 7 )
func CFReadStreamGetStatus ¶
func CFReadStreamGetStatus(stream obj.Object) CFStreamStatus
CFReadStreamGetStatus calls the CoreFoundation framework function CFReadStreamGetStatus.
func CFWriteStreamGetStatus ¶
func CFWriteStreamGetStatus(stream obj.Object) CFStreamStatus
CFWriteStreamGetStatus calls the CoreFoundation framework function CFWriteStreamGetStatus.
func (CFStreamStatus) String ¶
func (e CFStreamStatus) String() string
String returns the CFStreamStatus constant's name, or its numeric form when the value is not a known constant.
type CFStringBuiltInEncodings ¶
type CFStringBuiltInEncodings int64
Encodings that are built-in on all platforms on which macOS runs.
const ( // An encoding constant that identifies the Mac Roman encoding. KCFStringEncodingMacRoman CFStringBuiltInEncodings = 0 // An encoding constant that identifies the Windows Latin 1 encoding (ANSI codepage 1252). KCFStringEncodingWindowsLatin1 CFStringBuiltInEncodings = 1280 // An encoding constant that identifies the ISO Latin 1 encoding (ISO 8859-1) KCFStringEncodingISOLatin1 CFStringBuiltInEncodings = 513 // An encoding constant that identifies the NextStep/OpenStep encoding. KCFStringEncodingNextStepLatin CFStringBuiltInEncodings = 2817 // An encoding constant that identifies the ASCII encoding (decimal values 0 through 127). KCFStringEncodingASCII CFStringBuiltInEncodings = 1536 // An encoding constant that identifies the Unicode encoding. KCFStringEncodingUnicode CFStringBuiltInEncodings = 256 // An encoding constant that identifies the UTF 8 encoding. KCFStringEncodingUTF8 CFStringBuiltInEncodings = 134217984 // An encoding constant that identifies non-lossy ASCII encoding. KCFStringEncodingNonLossyASCII CFStringBuiltInEncodings = 3071 // An encoding constant that identifies kTextEncodingUnicodeDefault + kUnicodeUTF16Format encoding (alias of kCFStringEncodingUnicode). KCFStringEncodingUTF16 CFStringBuiltInEncodings = 256 // An encoding constant that identifies kTextEncodingUnicodeDefault + kUnicodeUTF16BEFormat encoding. This constant specifies big-endian byte order. KCFStringEncodingUTF16BE CFStringBuiltInEncodings = 268435712 // An encoding constant that identifies kTextEncodingUnicodeDefault + kUnicodeUTF16LEFormat encoding. This constant specifies little-endian byte order. KCFStringEncodingUTF16LE CFStringBuiltInEncodings = 335544576 // An encoding constant that identifies kTextEncodingUnicodeDefault + kUnicodeUTF32Format encoding. KCFStringEncodingUTF32 CFStringBuiltInEncodings = 201326848 // An encoding constant that identifies kTextEncodingUnicodeDefault + kUnicodeUTF32BEFormat encoding. This constant specifies big-endian byte order. KCFStringEncodingUTF32BE CFStringBuiltInEncodings = 402653440 // An encoding constant that identifies kTextEncodingUnicodeDefault + kUnicodeUTF32LEFormat encoding. This constant specifies little-endian byte order. KCFStringEncodingUTF32LE CFStringBuiltInEncodings = 469762304 )
func (CFStringBuiltInEncodings) String ¶
func (e CFStringBuiltInEncodings) String() string
String returns the CFStringBuiltInEncodings constant's name, or its numeric form when the value is not a known constant.
type CFStringCompareFlags ¶
type CFStringCompareFlags int64
A CFOptionFlags type for specifying options for string comparison . Bitmask — values may be combined with |.
const ( // Specifies that the comparison should ignore differences in case between alphabetical characters. KCFCompareCaseInsensitive CFStringCompareFlags = 1 // Specifies that the comparison should start at the last elements of the entities being compared (for example, strings or arrays). KCFCompareBackwards CFStringCompareFlags = 4 // Performs searching only on characters at the beginning or end of the range. KCFCompareAnchored CFStringCompareFlags = 8 // Specifies that loose equivalence is acceptable, especially as pertains to diacritical marks. KCFCompareNonliteral CFStringCompareFlags = 16 // Specifies that the comparison should take into account differences related to locale, such as the thousands separator character. KCFCompareLocalized CFStringCompareFlags = 32 // Specifies that represented numeric values should be used as the basis for comparison and not the actual character values. KCFCompareNumerically CFStringCompareFlags = 64 // Specifies that the comparison should ignore diacritic markers. KCFCompareDiacriticInsensitive CFStringCompareFlags = 128 // Specifies that the comparison should ignore width differences. KCFCompareWidthInsensitive CFStringCompareFlags = 256 // Specifies that the comparison is forced to return either kCFCompareLessThan or kCFCompareGreaterThan if the strings are equivalent but not strictly equal. KCFCompareForcedOrdering CFStringCompareFlags = 512 )
func (CFStringCompareFlags) String ¶
func (e CFStringCompareFlags) String() string
String returns the CFStringCompareFlags constant's name, or its numeric form when the value is not a known constant.
type CFStringEncodings ¶
type CFStringEncodings int64
Index type for constants used to specify external string encodings.
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 // Like MacArabic but uses Farsi digits. KCFStringEncodingMacFarsi CFStringEncodings = 140 KCFStringEncodingMacUkrainian CFStringEncodings = 152 KCFStringEncodingMacInuit CFStringEncodings = 236 // VT100102 font from Comm Toolbox: Latin-1 repertoire + box drawing etc. KCFStringEncodingMacVT100 CFStringEncodings = 252 // Meta-value, should never appear in a table. KCFStringEncodingMacHFS CFStringEncodings = 255 // ISO 8859-2. KCFStringEncodingISOLatin2 CFStringEncodings = 514 // ISO 8859-3. KCFStringEncodingISOLatin3 CFStringEncodings = 515 // ISO 8859-4. KCFStringEncodingISOLatin4 CFStringEncodings = 516 // ISO 8859-5. KCFStringEncodingISOLatinCyrillic CFStringEncodings = 517 // ISO 8859-6, =ASMO 708, =DOS CP 708. KCFStringEncodingISOLatinArabic CFStringEncodings = 518 // ISO 8859-7. KCFStringEncodingISOLatinGreek CFStringEncodings = 519 // ISO 8859-8. KCFStringEncodingISOLatinHebrew CFStringEncodings = 520 // ISO 8859-9. KCFStringEncodingISOLatin5 CFStringEncodings = 521 // ISO 8859-10. KCFStringEncodingISOLatin6 CFStringEncodings = 522 // ISO 8859-11. KCFStringEncodingISOLatinThai CFStringEncodings = 523 // ISO 8859-13. KCFStringEncodingISOLatin7 CFStringEncodings = 525 // ISO 8859-14. KCFStringEncodingISOLatin8 CFStringEncodings = 526 // ISO 8859-15. KCFStringEncodingISOLatin9 CFStringEncodings = 527 // ISO 8859-16. KCFStringEncodingISOLatin10 CFStringEncodings = 528 // Code page 437. KCFStringEncodingDOSLatinUS CFStringEncodings = 1024 // Code page 737 (formerly code page 437G). KCFStringEncodingDOSGreek CFStringEncodings = 1029 // Code page 775. KCFStringEncodingDOSBalticRim CFStringEncodings = 1030 // Code page 850, “Multilingual”. KCFStringEncodingDOSLatin1 CFStringEncodings = 1040 // Code page 851. KCFStringEncodingDOSGreek1 CFStringEncodings = 1041 // Code page 852, Slavic. KCFStringEncodingDOSLatin2 CFStringEncodings = 1042 // Code page 855, IBM Cyrillic. KCFStringEncodingDOSCyrillic CFStringEncodings = 1043 // Code page 857, IBM Turkish. KCFStringEncodingDOSTurkish CFStringEncodings = 1044 // Code page 860. KCFStringEncodingDOSPortuguese CFStringEncodings = 1045 // Code page 861. KCFStringEncodingDOSIcelandic CFStringEncodings = 1046 // Code page 862. KCFStringEncodingDOSHebrew CFStringEncodings = 1047 // Code page 863. KCFStringEncodingDOSCanadianFrench CFStringEncodings = 1048 // Code page 864. KCFStringEncodingDOSArabic CFStringEncodings = 1049 // Code page 865. KCFStringEncodingDOSNordic CFStringEncodings = 1050 // Code page 866. KCFStringEncodingDOSRussian CFStringEncodings = 1051 // Code page 869, IBM Modern Greek. KCFStringEncodingDOSGreek2 CFStringEncodings = 1052 // Code page 874, also for Windows. KCFStringEncodingDOSThai CFStringEncodings = 1053 // Code page 932, also for Windows. KCFStringEncodingDOSJapanese CFStringEncodings = 1056 // Code page 936, also for Windows. KCFStringEncodingDOSChineseSimplif CFStringEncodings = 1057 // Code page 949, also for Windows; Unified Hangul Code. KCFStringEncodingDOSKorean CFStringEncodings = 1058 // Code page 950, also for Windows. KCFStringEncodingDOSChineseTrad CFStringEncodings = 1059 // Code page 1250, Central Europe. KCFStringEncodingWindowsLatin2 CFStringEncodings = 1281 // Code page 1251, Slavic Cyrillic. KCFStringEncodingWindowsCyrillic CFStringEncodings = 1282 // Code page 1253. KCFStringEncodingWindowsGreek CFStringEncodings = 1283 // Code page 1254, Turkish. KCFStringEncodingWindowsLatin5 CFStringEncodings = 1284 // Code page 1255. KCFStringEncodingWindowsHebrew CFStringEncodings = 1285 // Code page 1256. KCFStringEncodingWindowsArabic CFStringEncodings = 1286 // Code page 1257. KCFStringEncodingWindowsBalticRim CFStringEncodings = 1287 // Code page 1258. KCFStringEncodingWindowsVietnamese CFStringEncodings = 1288 // Code page 1361, for Windows NT. KCFStringEncodingWindowsKoreanJohab CFStringEncodings = 1296 // ANSEL (ANSI Z39.47). 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 // Shift-JIS format encoding of JIS X0213 planes 1 and 2. KCFStringEncodingShiftJIS_X0213 CFStringEncodings = 1576 // JIS X0213 in plane-row-column notation. KCFStringEncodingShiftJIS_X0213_MenKuTen CFStringEncodings = 1577 KCFStringEncodingGB_2312_80 CFStringEncodings = 1584 // Annex to GB 13000-93; for Windows 95. KCFStringEncodingGBK_95 CFStringEncodings = 1585 KCFStringEncodingGB_18030_2000 CFStringEncodings = 1586 // Same as KSC 5601-92 without Johab annex. KCFStringEncodingKSC_5601_87 CFStringEncodings = 1600 // KSC 5601-92 Johab annex. KCFStringEncodingKSC_5601_92_Johab CFStringEncodings = 1601 // CNS 11643-1992 plane 1. KCFStringEncodingCNS_11643_92_P1 CFStringEncodings = 1617 // CNS 11643-1992 plane 2. KCFStringEncodingCNS_11643_92_P2 CFStringEncodings = 1618 // CNS 11643-1992 plane 3 (was plane 14 in 1986 version). KCFStringEncodingCNS_11643_92_P3 CFStringEncodings = 1619 KCFStringEncodingISO_2022_JP CFStringEncodings = 2080 KCFStringEncodingISO_2022_JP_2 CFStringEncodings = 2081 // RFC 2237. KCFStringEncodingISO_2022_JP_1 CFStringEncodings = 2082 // JIS X0213. KCFStringEncodingISO_2022_JP_3 CFStringEncodings = 2083 KCFStringEncodingISO_2022_CN CFStringEncodings = 2096 KCFStringEncodingISO_2022_CN_EXT CFStringEncodings = 2097 KCFStringEncodingISO_2022_KR CFStringEncodings = 2112 // ISO 646, 1-byte katakana, JIS 208, JIS 212. KCFStringEncodingEUC_JP CFStringEncodings = 2336 // ISO 646, GB 2312-80. KCFStringEncodingEUC_CN CFStringEncodings = 2352 // ISO 646, CNS 11643-1992 Planes 1-16. KCFStringEncodingEUC_TW CFStringEncodings = 2353 // ISO 646, KS C 5601-1987. KCFStringEncodingEUC_KR CFStringEncodings = 2368 // Plain Shift-JIS. KCFStringEncodingShiftJIS CFStringEncodings = 2561 // Russian internet standard. KCFStringEncodingKOI8_R CFStringEncodings = 2562 // Big-5 (has variants) KCFStringEncodingBig5 CFStringEncodings = 2563 // Mac OS Roman permuted to align with ISO Latin-1. KCFStringEncodingMacRomanLatin1 CFStringEncodings = 2564 // HZ (RFC 1842, for Chinese mail & news). KCFStringEncodingHZ_GB_2312 CFStringEncodings = 2565 // Big-5 with Hong Kong special char set supplement. KCFStringEncodingBig5_HKSCS_1999 CFStringEncodings = 2566 // RFC 1456, Vietnamese. KCFStringEncodingVISCII CFStringEncodings = 2567 // RFC 2319, Ukrainian. KCFStringEncodingKOI8_U CFStringEncodings = 2568 // Taiwan Big-5E standard. KCFStringEncodingBig5_E CFStringEncodings = 2569 // NextStep Japanese encoding. KCFStringEncodingNextStepJapanese CFStringEncodings = 2818 // basic EBCDIC-US KCFStringEncodingEBCDIC_US CFStringEncodings = 3073 // code page 037, extended EBCDIC (Latin-1 set) for US, Canada. KCFStringEncodingEBCDIC_CP037 CFStringEncodings = 3074 // kTextEncodingUnicodeDefault + kUnicodeUTF7Format RFC2152. KCFStringEncodingUTF7 CFStringEncodings = 67109120 // UTF-7 (IMAP folder variant) RFC3501. KCFStringEncodingUTF7_IMAP CFStringEncodings = 2576 // Shift-JIS format encoding of JIS X0213 planes 1 and 2. KCFStringEncodingShiftJIS_X0213_00 CFStringEncodings = 1576 )
func (CFStringEncodings) String ¶
func (e CFStringEncodings) String() string
String returns the CFStringEncodings constant's name, or its numeric form when the value is not a known constant.
type CFStringInlineBuffer ¶
type CFStringInlineBuffer struct {
Buffer [64]uint16
TheString unsafe.Pointer
DirectUniCharBuffer unsafe.Pointer
DirectCStringBuffer unsafe.Pointer
RangeToBuffer CFRange
BufferedRangeStart int
BufferedRangeEnd int
}
Defines the buffer and related fields used for in-line buffer access of characters in CFString objects.
type CFStringNormalizationForm ¶
type CFStringNormalizationForm int64
Unicode normalization forms as described in Unicode Technical Report #15.
const ( // Canonical decomposition. KCFStringNormalizationFormD CFStringNormalizationForm = 0 // Compatibility decomposition. KCFStringNormalizationFormKD CFStringNormalizationForm = 1 // Canonical decomposition followed by canonical composition. KCFStringNormalizationFormC CFStringNormalizationForm = 2 // Compatibility decomposition followed by canonical composition. KCFStringNormalizationFormKC CFStringNormalizationForm = 3 )
func (CFStringNormalizationForm) String ¶
func (e CFStringNormalizationForm) String() string
String returns the CFStringNormalizationForm constant's name, or its numeric form when the value is not a known constant.
type CFStringTokenizer ¶
type CFStringTokenizer struct{}
type CFStringTokenizerTokenType ¶
type CFStringTokenizerTokenType int64
Token types returned by CFStringTokenizerGoToTokenAtIndex and CFStringTokenizerAdvanceToNextToken. Bitmask — values may be combined with |.
const ( // Has no token. KCFStringTokenizerTokenNone CFStringTokenizerTokenType = 0 // Has a normal token. KCFStringTokenizerTokenNormal CFStringTokenizerTokenType = 1 // Compound token which may contain subtokens but with no derived subtokens. KCFStringTokenizerTokenHasSubTokensMask CFStringTokenizerTokenType = 2 // Compound token which may contain derived subtokens. KCFStringTokenizerTokenHasDerivedSubTokensMask CFStringTokenizerTokenType = 4 // Appears to contain a number. KCFStringTokenizerTokenHasHasNumbersMask CFStringTokenizerTokenType = 8 // Contains punctuation, symbols, and so on. KCFStringTokenizerTokenHasNonLettersMask CFStringTokenizerTokenType = 16 // Contains kana and/or ideographs. KCFStringTokenizerTokenIsCJWordMask CFStringTokenizerTokenType = 32 )
func CFStringTokenizerAdvanceToNextToken ¶
func CFStringTokenizerAdvanceToNextToken(tokenizer obj.Object) CFStringTokenizerTokenType
CFStringTokenizerAdvanceToNextToken calls the CoreFoundation framework function CFStringTokenizerAdvanceToNextToken.
func CFStringTokenizerGoToTokenAtIndex ¶
func CFStringTokenizerGoToTokenAtIndex(tokenizer obj.Object, index int) CFStringTokenizerTokenType
CFStringTokenizerGoToTokenAtIndex calls the CoreFoundation framework function CFStringTokenizerGoToTokenAtIndex.
func (CFStringTokenizerTokenType) String ¶
func (e CFStringTokenizerTokenType) String() string
String returns the CFStringTokenizerTokenType constant's name, or its numeric form when the value is not a known constant.
type CFSwappedFloat32 ¶
type CFSwappedFloat32 struct {
V uint32
}
Structure holding a 32-bit float value in a platform-independentbyte order.
type CFSwappedFloat64 ¶
type CFSwappedFloat64 struct {
V uint64
}
Structure holding a 64-bit float value in a platform-independentbyte order.
type CFTimeZone ¶
type CFTimeZone struct{}
type CFTimeZoneNameStyle ¶
type CFTimeZoneNameStyle int64
Index type for constants used to specify styles of time zone names.
const ( // Specifies the standard name style; for example, “Central Standard Time” for the Central time zone. KCFTimeZoneNameStyleStandard CFTimeZoneNameStyle = 0 // Specifies the short standard name style; for example, “CST” for the Central time zone. KCFTimeZoneNameStyleShortStandard CFTimeZoneNameStyle = 1 // Specifies the daylight saving name style; for example, “Central Daylight Time” for the Central time zone. KCFTimeZoneNameStyleDaylightSaving CFTimeZoneNameStyle = 2 // Specifies the short daylight saving name style; for example, “CDT” for the Central time zone. KCFTimeZoneNameStyleShortDaylightSaving CFTimeZoneNameStyle = 3 // Specifies the generic name style, which does not distinguish between daylight saving and standard time; for example, “Central Time” for the Central time zone. KCFTimeZoneNameStyleGeneric CFTimeZoneNameStyle = 4 // Specifies the short generic name style, which does not distinguish between daylight saving and standard time; for example, “CT” for the Central time zone. KCFTimeZoneNameStyleShortGeneric CFTimeZoneNameStyle = 5 )
func (CFTimeZoneNameStyle) String ¶
func (e CFTimeZoneNameStyle) String() string
String returns the CFTimeZoneNameStyle constant's name, or its numeric form when the value is not a known constant.
type CFTreeContext ¶
type CFTreeContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
Structure containing program-defined data and callbacks for a CFTree object.
type CFURLBookmarkCreationOptions ¶
type CFURLBookmarkCreationOptions int64
Type for bookmark data creation options. Bitmask — values may be combined with |.
const ( // Specifies that an alias created with the bookmark data be created with minimal information, which may make it smaller but still able to resolve in certain ways. KCFURLBookmarkCreationMinimalBookmarkMask CFURLBookmarkCreationOptions = 512 // Specifies that the bookmark data include properties required to create Finder alias files. KCFURLBookmarkCreationSuitableForBookmarkFile CFURLBookmarkCreationOptions = 1024 // Specifies that you want to create a security-scoped bookmark that, when resolved, provides a security-scoped URL allowing read/write access to a file-system resource; for use in an app that adopts App Sandbox. KCFURLBookmarkCreationWithSecurityScope CFURLBookmarkCreationOptions = 2048 // When combined with the kCFURLBookmarkCreationWithSecurityScope option, specifies that you want to create a security-scoped bookmark that, when resolved, provides a security-scoped URL allowing read-only access to a file-system resource; for use in an app that adopts App Sandbox. KCFURLBookmarkCreationSecurityScopeAllowOnlyReadAccess CFURLBookmarkCreationOptions = 4096 KCFURLBookmarkCreationWithoutImplicitSecurityScope CFURLBookmarkCreationOptions = 536870912 // Specifies that an alias created with the bookmark data prefers resolving with its embedded file ID. // // Deprecated: kCFURLBookmarkCreationPreferFileIDResolutionMask does nothing and has no effect on bookmark resolution KCFURLBookmarkCreationPreferFileIDResolutionMask CFURLBookmarkCreationOptions = 256 )
func (CFURLBookmarkCreationOptions) String ¶
func (e CFURLBookmarkCreationOptions) String() string
String returns the CFURLBookmarkCreationOptions constant's name, or its numeric form when the value is not a known constant.
type CFURLBookmarkResolutionOptions ¶
type CFURLBookmarkResolutionOptions int64
Type for bookmark data resolution options. Bitmask — values may be combined with |.
const ( KCFURLBookmarkResolutionWithoutUIMask CFURLBookmarkResolutionOptions = 256 KCFURLBookmarkResolutionWithoutMountingMask CFURLBookmarkResolutionOptions = 512 // Specifies that the security scope, applied to the bookmark when it was created, should be used during resolution of the bookmark data. KCFURLBookmarkResolutionWithSecurityScope CFURLBookmarkResolutionOptions = 1024 KCFURLBookmarkResolutionWithoutImplicitStartAccessing CFURLBookmarkResolutionOptions = 32768 // Specifies that no UI feedback accompany resolution of the bookmark data. KCFBookmarkResolutionWithoutUIMask CFURLBookmarkResolutionOptions = 256 // Specifies that no volume should be mounted during resolution of the bookmark data. KCFBookmarkResolutionWithoutMountingMask CFURLBookmarkResolutionOptions = 512 )
func (CFURLBookmarkResolutionOptions) String ¶
func (e CFURLBookmarkResolutionOptions) String() string
String returns the CFURLBookmarkResolutionOptions constant's name, or its numeric form when the value is not a known constant.
type CFURLComponentType ¶
type CFURLComponentType int64
The types of components in a URL.
const ( // The URL’s scheme. KCFURLComponentScheme CFURLComponentType = 1 // The URL’s network location. KCFURLComponentNetLocation CFURLComponentType = 2 // The URL’s path component. KCFURLComponentPath CFURLComponentType = 3 // The URL’s resource specifier. KCFURLComponentResourceSpecifier CFURLComponentType = 4 // The URL’s user. KCFURLComponentUser CFURLComponentType = 5 // The user’s password. KCFURLComponentPassword CFURLComponentType = 6 // The user’s information. KCFURLComponentUserInfo CFURLComponentType = 7 // The URL’s host. KCFURLComponentHost CFURLComponentType = 8 // The URL’s port. KCFURLComponentPort CFURLComponentType = 9 // The URL’s parameter string. KCFURLComponentParameterString CFURLComponentType = 10 // The URL’s query. KCFURLComponentQuery CFURLComponentType = 11 // The URL’s fragment. KCFURLComponentFragment CFURLComponentType = 12 )
func (CFURLComponentType) String ¶
func (e CFURLComponentType) String() string
String returns the CFURLComponentType constant's name, or its numeric form when the value is not a known constant.
type CFURLEnumerator ¶
type CFURLEnumerator struct{}
type CFURLEnumeratorOptions ¶
type CFURLEnumeratorOptions int64
Options for controlling enumerator behavior. Bitmask — values may be combined with |.
const ( // The enumerator performs its default behavior. KCFURLEnumeratorDefaultBehavior CFURLEnumeratorOptions = 0 // The enumerator recurses into each subdirectory enumerated. KCFURLEnumeratorDescendRecursively CFURLEnumeratorOptions = 1 // The enumerator skips “hidden” or “invisible” objects. KCFURLEnumeratorSkipInvisibles CFURLEnumeratorOptions = 2 // The enumerator generates file reference URLs instead of file path URLs. KCFURLEnumeratorGenerateFileReferenceURLs CFURLEnumeratorOptions = 4 // The enumerator skips package directory contents. KCFURLEnumeratorSkipPackageContents CFURLEnumeratorOptions = 8 // If provided along with the kCFURLEnumeratorDescendRecursively option, the recursive enumerator returns a directory’s URL before returning the URLs of the directory’s descendents. KCFURLEnumeratorIncludeDirectoriesPreOrder CFURLEnumeratorOptions = 16 // If provided along with the kCFURLEnumeratorDescendRecursively option, the recursive enumerator returns a directory’s URL after returning the URLs of the directory’s descendents. KCFURLEnumeratorIncludeDirectoriesPostOrder CFURLEnumeratorOptions = 32 KCFURLEnumeratorGenerateRelativePathURLs CFURLEnumeratorOptions = 64 )
func (CFURLEnumeratorOptions) String ¶
func (e CFURLEnumeratorOptions) String() string
String returns the CFURLEnumeratorOptions constant's name, or its numeric form when the value is not a known constant.
type CFURLEnumeratorResult ¶
type CFURLEnumeratorResult int64
Result codes from the CFURLEnumeratorGetNextURL function.
const ( // The enumerator was advanced successfully and returned a valid URL. KCFURLEnumeratorSuccess CFURLEnumeratorResult = 1 // The enumeration is complete. KCFURLEnumeratorEnd CFURLEnumeratorResult = 2 // An error occurred during enumeration. The error parameter of the function is populated with error information. KCFURLEnumeratorError CFURLEnumeratorResult = 3 // The recursive post-order enumerator returned the URL for a directory after having returned the URLs for all of the directory’s descendents. KCFURLEnumeratorDirectoryPostOrderSuccess CFURLEnumeratorResult = 4 )
func (CFURLEnumeratorResult) String ¶
func (e CFURLEnumeratorResult) String() string
String returns the CFURLEnumeratorResult constant's name, or its numeric form when the value is not a known constant.
type CFURLError
deprecated
type CFURLError int64
CFURL error codes.
Deprecated: Use CFError codes instead
const ( // Indicates an unknown error. KCFURLUnknownError CFURLError = -10 // Indicates that the scheme is not recognized. KCFURLUnknownSchemeError CFURLError = -11 // Indicates a resource was not found. KCFURLResourceNotFoundError CFURLError = -12 // Indicates an error in accessing a resource. KCFURLResourceAccessViolationError CFURLError = -13 KCFURLRemoteHostUnavailableError CFURLError = -14 // Indicates one or more arguments are improper. KCFURLImproperArgumentsError CFURLError = -15 // Indicates a property key is unknown. KCFURLUnknownPropertyKeyError CFURLError = -16 KCFURLPropertyKeyUnavailableError CFURLError = -17 // Indicates a timeout. KCFURLTimeoutError CFURLError = -18 )
func (CFURLError) String ¶
func (e CFURLError) String() string
String returns the CFURLError constant's name, or its numeric form when the value is not a known constant.
type CFURLPathStyle ¶
type CFURLPathStyle int64
Options you can use to determine how CFURL functions parse a file system path name.
const ( // Indicates a POSIX style path name. Components are slash delimited. A leading slash indicates an absolute path; a trailing slash is not significant. KCFURLPOSIXPathStyle CFURLPathStyle = 0 // Indicates a HFS style path name. Components are colon delimited. A leading colon indicates a relative path, otherwise the first path component denotes the volume. // // Deprecated: Carbon File Manager is deprecated, use kCFURLPOSIXPathStyle where possible KCFURLHFSPathStyle CFURLPathStyle = 1 // Indicates a Windows style path name. // // Deprecated: Carbon File Manager is deprecated, use kCFURLPOSIXPathStyle where possible KCFURLWindowsPathStyle CFURLPathStyle = 2 )
func (CFURLPathStyle) String ¶
func (e CFURLPathStyle) String() string
String returns the CFURLPathStyle constant's name, or its numeric form when the value is not a known constant.
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
}
A 128-bit struct that represents a UUID as raw bytes.
type CFUserNotification ¶
type CFUserNotification struct{}
type CFWriteStream ¶
type CFWriteStream struct{}
type CFXMLAttributeDeclarationInfo ¶
type CFXMLAttributeDeclarationInfo struct {
AttributeName unsafe.Pointer
TypeString unsafe.Pointer
DefaultString unsafe.Pointer
}
Contains information about an element attribute definition.
type CFXMLAttributeListDeclarationInfo ¶
Contains a list of the attributes associated with an element.
type CFXMLDocumentInfo ¶
Contains the source URL and text encoding information for the XML document.
type CFXMLDocumentTypeInfo ¶
type CFXMLDocumentTypeInfo struct {
ExternalID CFXMLExternalID
}
Contains the external ID of the DTD.
type CFXMLElementInfo ¶
type CFXMLElementInfo struct {
Attributes unsafe.Pointer
AttributeOrder unsafe.Pointer
IsEmpty uint8
}
Contains a list of element attributes packaged as CFDictionary key/value pairs.
type CFXMLElementTypeDeclarationInfo ¶
Contains a description of the element type.
type CFXMLEntityInfo ¶
type CFXMLEntityInfo struct {
EntityType CFXMLEntityTypeCode
ReplacementText unsafe.Pointer
EntityID CFXMLExternalID
NotationName unsafe.Pointer
}
Contains information describing an XML entity.
type CFXMLEntityReferenceInfo ¶
type CFXMLEntityReferenceInfo struct {
EntityType CFXMLEntityTypeCode
}
Contains information describing an XML entity reference.
type CFXMLEntityTypeCode ¶
type CFXMLEntityTypeCode int64
The entity type identification codes that the parser uses to describe XML entities.
const ( // Implies a parsed, internal entity. KCFXMLEntityTypeParameter CFXMLEntityTypeCode = 0 // Indicates a parsed, internal entity. KCFXMLEntityTypeParsedInternal CFXMLEntityTypeCode = 1 // Indicates a parsed, external entity. KCFXMLEntityTypeParsedExternal CFXMLEntityTypeCode = 2 // Indicates an unparsed entity. KCFXMLEntityTypeUnparsed CFXMLEntityTypeCode = 3 // Indicates a character entity type. KCFXMLEntityTypeCharacter CFXMLEntityTypeCode = 4 )
func (CFXMLEntityTypeCode) String ¶
func (e CFXMLEntityTypeCode) String() string
String returns the CFXMLEntityTypeCode constant's name, or its numeric form when the value is not a known constant.
type CFXMLExternalID ¶
Contains the system and public IDs for an external entity reference.
type CFXMLNodeTypeCode ¶
type CFXMLNodeTypeCode int64
The various XML data type identification codes that the parser uses to describe XML structures.
const ( // Indicates a document where the data string is NULL and the additional information is a pointer to a CFXMLDocumentInfo structure. KCFXMLNodeTypeDocument CFXMLNodeTypeCode = 1 // Indicates an element where the data string is the name of the tag and the additional information is a pointer to a CFXMLElementInfo structure. KCFXMLNodeTypeElement CFXMLNodeTypeCode = 2 // Currently not used. KCFXMLNodeTypeAttribute CFXMLNodeTypeCode = 3 // Indicates a processing instruction where the data string is the name of the target and the additional information is a pointer to a CFXMLProcessingInstructionInfo structure. KCFXMLNodeTypeProcessingInstruction CFXMLNodeTypeCode = 4 // Indicates a comment section where the data string is the text of the comment and the additional information is NULL. KCFXMLNodeTypeComment CFXMLNodeTypeCode = 5 // Indicates a text section where the data string is the text’s contents and the additional information is NULL. KCFXMLNodeTypeText CFXMLNodeTypeCode = 6 // Indicates a CDATA section where the data string is the text of the CDATA and the additional information is NULL. KCFXMLNodeTypeCDATASection CFXMLNodeTypeCode = 7 // Currently not used. KCFXMLNodeTypeDocumentFragment CFXMLNodeTypeCode = 8 // Indicates an entity where the data string is the name of the entity and the additional information is a pointer to a CFXMLEntityInfo structure. KCFXMLNodeTypeEntity CFXMLNodeTypeCode = 9 // Indicates an entity reference where the data string is the name of the referenced entity and the additional information is a pointer to a CFXMLEntityReferenceInfo structure. KCFXMLNodeTypeEntityReference CFXMLNodeTypeCode = 10 // Indicates a document type where the data string is the name given to the top-level element and the additional information is a pointer to a CFXMLDocumentTypeInfo structure. KCFXMLNodeTypeDocumentType CFXMLNodeTypeCode = 11 // Indicates white space where the data string is the text of the white space and the additional information is NULL. KCFXMLNodeTypeWhitespace CFXMLNodeTypeCode = 12 // Indicates a notation where the data string is the notation name and the additional information is a pointer to a CFXMLNotationInfo structure. KCFXMLNodeTypeNotation CFXMLNodeTypeCode = 13 // Indicates an element type declaration where the data string is the tag name and the additional information is a pointer to a CFXMLElementTypeDeclarationInfo structure. KCFXMLNodeTypeElementTypeDeclaration CFXMLNodeTypeCode = 14 // Indicates an attribute list declaration where the data string is the tag name and the additional information is a pointer to a CFXMLAttributeListDeclarationInfo structure. KCFXMLNodeTypeAttributeListDeclaration CFXMLNodeTypeCode = 15 )
func CFXMLNodeGetTypeCode ¶
func CFXMLNodeGetTypeCode(node obj.Object) CFXMLNodeTypeCode
CFXMLNodeGetTypeCode calls the CoreFoundation framework function CFXMLNodeGetTypeCode.
func (CFXMLNodeTypeCode) String ¶
func (e CFXMLNodeTypeCode) String() string
String returns the CFXMLNodeTypeCode constant's name, or its numeric form when the value is not a known constant.
type CFXMLNotationInfo ¶
type CFXMLNotationInfo struct {
ExternalID CFXMLExternalID
}
Contains the external ID of the notation.
type CFXMLParser ¶
type CFXMLParser struct{}
type CFXMLParserCallBacks ¶
type CFXMLParserCallBacks struct {
Version int
CreateXMLStructure unsafe.Pointer
AddChild unsafe.Pointer
EndXMLStructure unsafe.Pointer
ResolveExternalEntity unsafe.Pointer
HandleError unsafe.Pointer
}
Contains version information and function pointers to callbacks needed when parsing XML.
type CFXMLParserContext ¶
type CFXMLParserContext struct {
Version int
Info unsafe.Pointer
Retain unsafe.Pointer
Release unsafe.Pointer
CopyDescription unsafe.Pointer
}
Contains version information and function pointers to callbacks used when handling a program-defined context.
type CFXMLParserOptions ¶
type CFXMLParserOptions int64
Options you can use to control the parser’s treatment of an XML document. Bitmask — values may be combined with |.
const ( // Validates the document against its grammar from the DTD, reporting any errors. Currently not supported. KCFXMLParserValidateDocument CFXMLParserOptions = 1 // Silently skip over metadata constructs (the DTD and comments). KCFXMLParserSkipMetaData CFXMLParserOptions = 2 // Replaces declared entities like <. Note that other than the 5 predefined entities (lt, gt, quot, amp, apos), these must be defined in the DTD. Currently not supported. KCFXMLParserReplacePhysicalEntities CFXMLParserOptions = 4 KCFXMLParserSkipWhitespace CFXMLParserOptions = 8 // Resolves all external entities. KCFXMLParserResolveExternalEntities CFXMLParserOptions = 16 // Where the DTD specifies implied attribute-value pairs for a particular element, add those pairs to any occurrences of the element in the element tree. Currently not supported. KCFXMLParserAddImpliedAttributes CFXMLParserOptions = 32 // Makes the parser do the most work, returning only the pure elementtree. KCFXMLParserAllOptions CFXMLParserOptions = 16777215 // Leaves the XML as “intact” as possible (reports all structures; performs no replacements). KCFXMLParserNoOptions CFXMLParserOptions = 0 )
func (CFXMLParserOptions) String ¶
func (e CFXMLParserOptions) String() string
String returns the CFXMLParserOptions constant's name, or its numeric form when the value is not a known constant.
type CFXMLParserStatusCode ¶
type CFXMLParserStatusCode int64
The various status and error flags that can be returned by the parser. Bitmask — values may be combined with |.
const ( // Indicates the parser has not begun. KCFXMLStatusParseNotBegun CFXMLParserStatusCode = -2 // Indicates the parser is in progress. KCFXMLStatusParseInProgress CFXMLParserStatusCode = -1 // Indicates the parser was successful. KCFXMLStatusParseSuccessful CFXMLParserStatusCode = 0 // Indicates an unexpected EOF occurred. KCFXMLErrorUnexpectedEOF CFXMLParserStatusCode = 1 // Indicates an unknown encoding error. KCFXMLErrorUnknownEncoding CFXMLParserStatusCode = 2 // Indicates an encoding conversion error. KCFXMLErrorEncodingConversionFailure CFXMLParserStatusCode = 3 // Indicates a malformed processing instruction. KCFXMLErrorMalformedProcessingInstruction CFXMLParserStatusCode = 4 // Indicates a malformed DTD. KCFXMLErrorMalformedDTD CFXMLParserStatusCode = 5 // Indicates a malformed name. KCFXMLErrorMalformedName CFXMLParserStatusCode = 6 // Indicates a malformed CDATA section. KCFXMLErrorMalformedCDSect CFXMLParserStatusCode = 7 // Indicates a malformed close tag. KCFXMLErrorMalformedCloseTag CFXMLParserStatusCode = 8 // Indicates a malformed start tag. KCFXMLErrorMalformedStartTag CFXMLParserStatusCode = 9 // Indicates a malformed document. KCFXMLErrorMalformedDocument CFXMLParserStatusCode = 10 // Indicates a document containing no elements. KCFXMLErrorElementlessDocument CFXMLParserStatusCode = 11 // Indicates a malformed comment. KCFXMLErrorMalformedComment CFXMLParserStatusCode = 12 // Indicates a malformed character reference. KCFXMLErrorMalformedCharacterReference CFXMLParserStatusCode = 13 // Indicates malformed character data. KCFXMLErrorMalformedParsedCharacterData CFXMLParserStatusCode = 14 // Indicates a no data error. KCFXMLErrorNoData CFXMLParserStatusCode = 15 )
func CFXMLParserGetStatusCode ¶
func CFXMLParserGetStatusCode(parser obj.Object) CFXMLParserStatusCode
CFXMLParserGetStatusCode calls the CoreFoundation framework function CFXMLParserGetStatusCode.
func (CFXMLParserStatusCode) String ¶
func (e CFXMLParserStatusCode) String() string
String returns the CFXMLParserStatusCode constant's name, or its numeric form when the value is not a known constant.
type CFXMLProcessingInstructionInfo ¶
Contains the text of the processing instruction.
type CGAffineTransform ¶
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
String returns the CGRectEdge constant's name, or its numeric form when the value is not a known constant.
type DispatchAutoreleaseFrequency ¶ added in v0.17.0
type DispatchAutoreleaseFrequency uint64
const ( DispatchAutoreleaseFrequencyInherit DispatchAutoreleaseFrequency = 0 DispatchAutoreleaseFrequencyWorkItem DispatchAutoreleaseFrequency = 1 DispatchAutoreleaseFrequencyNever DispatchAutoreleaseFrequency = 2 )
func (DispatchAutoreleaseFrequency) String ¶ added in v0.17.0
func (e DispatchAutoreleaseFrequency) String() string
String returns the DispatchAutoreleaseFrequency constant's name, or its numeric form when the value is not a known constant.
type DispatchBlockFlags ¶ added in v0.17.0
type DispatchBlockFlags uint64
Bitmask — values may be combined with |.
const ( DispatchBlockFlagsBarrier DispatchBlockFlags = 1 DispatchBlockFlagsDetached DispatchBlockFlags = 2 DispatchBlockFlagsAssignCurrent DispatchBlockFlags = 4 DispatchBlockFlagsNoQosClass DispatchBlockFlags = 8 DispatchBlockFlagsInheritQosClass DispatchBlockFlags = 16 DispatchBlockFlagsEnforceQosClass DispatchBlockFlags = 32 )
func (DispatchBlockFlags) String ¶ added in v0.17.0
func (e DispatchBlockFlags) String() string
String returns the DispatchBlockFlags constant's name, or its numeric form when the value is not a known constant.
type FilesecProperty ¶ added in v0.17.0
type FilesecProperty int64
const ( FilesecPropertyOwner FilesecProperty = 1 FilesecPropertyGroup FilesecProperty = 2 FilesecPropertyUUID FilesecProperty = 3 FilesecPropertyMode FilesecProperty = 4 FilesecPropertyACL FilesecProperty = 5 FilesecPropertyGrpuuid FilesecProperty = 6 FilesecPropertyACLRaw FilesecProperty = 100 FilesecPropertyACLAllocsize FilesecProperty = 101 )
func (FilesecProperty) String ¶ added in v0.17.0
func (e FilesecProperty) String() string
String returns the FilesecProperty constant's name, or its numeric form when the value is not a known constant.
type MallocZoneT ¶
type MallocZoneT struct{}
type MpoFlags ¶ added in v0.17.0
type MpoFlags int64
Bitmask — values may be combined with |.
const ( MpoFlagsPort MpoFlags = 0 MpoFlagsServicePort MpoFlags = 1024 MpoFlagsConnectionPort MpoFlags = 2048 MpoFlagsReplyPort MpoFlags = 4096 MpoFlagsWeakReplyPort MpoFlags = 16384 MpoFlagsNotificationPort MpoFlags = 17408 MpoFlagsExceptionPort MpoFlags = 32768 MpoFlagsConnectionPortWithPortArray MpoFlags = 65536 )
type Perm ¶ added in v0.17.0
type Perm int64
const ( PermReadData Perm = 2 PermListDirectory Perm = 2 PermWriteData Perm = 4 PermAddFile Perm = 4 PermExecute Perm = 8 PermSearch Perm = 8 PermDelete Perm = 16 PermAppendData Perm = 32 PermAddSubdirectory Perm = 32 PermDeleteChild Perm = 64 PermReadAttributes Perm = 128 PermWriteAttributes Perm = 256 PermReadExtattributes Perm = 512 PermWriteExtattributes Perm = 1024 PermReadSecurity Perm = 2048 PermWriteSecurity Perm = 4096 PermChangeOwner Perm = 8192 PermSynchronize Perm = 1048576 )
type PtrauthKey ¶ added in v0.17.0
type PtrauthKey int64
const ( Ptrauth_key_none PtrauthKey = -1 Ptrauth_key_asia PtrauthKey = 0 Ptrauth_key_asib PtrauthKey = 1 Ptrauth_key_asda PtrauthKey = 2 Ptrauth_key_asdb PtrauthKey = 3 Ptrauth_key_process_independent_code PtrauthKey = 0 Ptrauth_key_process_dependent_code PtrauthKey = 1 Ptrauth_key_process_independent_data PtrauthKey = 2 Ptrauth_key_process_dependent_data PtrauthKey = 3 Ptrauth_key_return_address PtrauthKey = 1 Ptrauth_key_frame_pointer PtrauthKey = 3 Ptrauth_key_function_pointer PtrauthKey = 0 Ptrauth_key_block_function PtrauthKey = 0 Ptrauth_key_cxx_vtable_pointer PtrauthKey = 2 Ptrauth_key_method_list_pointer PtrauthKey = 2 Ptrauth_key_objc_isa_pointer PtrauthKey = 2 Ptrauth_key_objc_super_pointer PtrauthKey = 2 Ptrauth_key_objc_sel_pointer PtrauthKey = 3 Ptrauth_key_objc_class_ro_pointer PtrauthKey = 2 Ptrauth_key_block_descriptor_pointer PtrauthKey = 2 Ptrauth_key_init_fini_pointer PtrauthKey = 0 )
func (PtrauthKey) String ¶ added in v0.17.0
func (e PtrauthKey) String() string
String returns the PtrauthKey constant's name, or its numeric form when the value is not a known constant.