Ejemplo n.º 1
0
CFBinaryHeapRef CFBinaryHeapCreate ( CFAllocatorRef allocator,
                                     CFIndex capacity,
                                     const CFBinaryHeapCallBacks *callBacks,
                                     const CFBinaryHeapCompareContext *compareContext) {
    CFBinaryHeapRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 2
0
CFMutableDictionaryRef CFDictionaryCreateMutable ( CFAllocatorRef allocator,
                                                    CFIndex capacity,
                                                    const CFDictionaryKeyCallBacks *keyCallBacks,
                                                    const CFDictionaryValueCallBacks *valueCallBacks ) {

    CFMutableDictionaryRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 3
0
CFDictionaryRef CFDictionaryCreate ( CFAllocatorRef allocator,
                                        const void **keys,
                                        const void **values,
                                        CFIndex numValues,
                                        const CFDictionaryKeyCallBacks *keyCallBacks,
                                        const CFDictionaryValueCallBacks *valueCallBacks ) {
    CFDictionaryRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 4
0
CGContextRef CGBitmapContextCreate ( void *data,
                                     size_t width,
                                     size_t height,
                                     size_t bitsPerComponent,
                                     size_t bytesPerRow,
                                     CGColorSpaceRef space,
                                     CGBitmapInfo bitmapInfo ) {
    CGContextRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 5
0
CFStringRef CFStringCreateWithBytesNoCopy (
                        CFAllocatorRef alloc,
                        const UInt8 *bytes,
                        CFIndex numBytes,
                        CFStringEncoding encoding,
                        Boolean isExternalRepresentation,
                        CFAllocatorRef contentsDeallocator ) {
   CFStringRef c;
   CFStringRef s =  __cf_alloc(c);
   if (s) {
     if (bytes) {
         __get_array_size(bytes);
         free(bytes);
     }
   }
   return s;
}
Ejemplo n.º 6
0
CTFontRef CTFontCreateWithName(CFStringRef name,
                               CGFloat size,
                               const CGAffineTransform* matrix) {
  CTFontRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 7
0
CFNumberRef CFNumberCreate(CFAllocatorRef allocator,
                           CFNumberType theType,
                           const void* valuePtr) {
  CFNumberRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 8
0
CGImageRef CGImageCreateWithImageInRect(CGImageRef image, CGRect rect) {
  CGImageRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 9
0
CGImageRef CGBitmapContextCreateImage(CGContextRef context) {
  CGImageRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 10
0
CFLocaleRef CFLocaleCreate(CFAllocatorRef allocator,
                           CFStringRef localeIdentifier) {
  CFLocaleRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 11
0
CGFontRef CGFontCreateWithDataProvider ( CGDataProviderRef provider ) {
    CGFontRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 12
0
Archivo: CFError.c Proyecto: 0x73/infer
CFErrorRef CFReadStreamCopyError ( CFReadStreamRef stream ) {
  CFErrorRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 13
0
CTParagraphStyleRef CTParagraphStyleCreate(
    const CTParagraphStyleSetting* settings, size_t settingCount) {
    CTParagraphStyleRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 14
0
CFMutableArrayRef CFArrayCreateMutable(CFAllocatorRef allocator,
                                       CFIndex capacity,
                                       const CFArrayCallBacks* callBacks) {
  CFMutableArrayRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 15
0
CFDictionaryRef CFDictionaryCreateCopy ( CFAllocatorRef allocator,
                                         CFDictionaryRef theDict ) {
    CFDictionaryRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 16
0
CFDictionaryRef CMTimeCopyAsDictionary (CMTime time,
                                        CFAllocatorRef allocator ) {
  CFDictionaryRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 17
0
CFDictionaryRef CFHTTPMessageCopyAllHeaderFields ( CFHTTPMessageRef message ) {
    CFDictionaryRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 18
0
CFDictionaryRef CMCopyDictionaryOfAttachments ( CFAllocatorRef allocator,
                                                CMAttachmentBearerRef target,
                                                CMAttachmentMode attachmentMode ) {
    CFDictionaryRef c;
    return __cf_alloc(c);
}
Ejemplo n.º 19
0
CGColorSpaceRef CGColorSpaceCreateDeviceGray(void) {
  CGColorSpaceRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 20
0
CTFramesetterRef CTFramesetterCreateWithAttributedString(
    CFAttributedStringRef string) {
  CTFramesetterRef c;
  return __cf_alloc(c);
}
Ejemplo n.º 21
0
SecCertificateRef SecCertificateCreateWithData ( CFAllocatorRef allocator,
                                                 CFDataRef data ) {
   SecCertificateRef c;
   return __cf_alloc(c);
}
Ejemplo n.º 22
0
CGDataProviderRef CGDataProviderCreateWithURL ( CFURLRef url ) {
    CGDataProviderRef c;
    return __cf_alloc(c);
}