Searched refs:CFUUIDRef (Results 1 - 25 of 106) sorted by path

12345

/macosx-10.9.5/AppleFileSystemDriver-17/
H A Dsetbootuuid.c23 CFUUIDRef uuid;
/macosx-10.9.5/AppleRAID-4.0.6/
H A DAppleRAIDUserLib.c893 CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);
998 CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);
2457 CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);
/macosx-10.9.5/CF-855.17/
H A DCFPlugIn.c45 CF_EXPORT CFArrayRef CFPlugInFindFactoriesForPlugInType(CFUUIDRef typeID) {
53 CFUUIDRef factoryId = _CFPFactoryCopyFactoryID((_CFPFactoryRef)CFArrayGetValueAtIndex(array, i));
64 CF_EXPORT CFArrayRef CFPlugInFindFactoriesForPlugInTypeInPlugIn(CFUUIDRef typeID, CFPlugInRef plugIn) {
76 CFUUIDRef factoryId = _CFPFactoryCopyFactoryID(factory);
87 CF_EXPORT void *CFPlugInInstanceCreate(CFAllocatorRef allocator, CFUUIDRef factoryID, CFUUIDRef typeID) {
108 CF_EXPORT Boolean CFPlugInRegisterFactoryFunction(CFUUIDRef factoryID, CFPlugInFactoryFunction func) {
116 CF_EXPORT Boolean CFPlugInRegisterFactoryFunctionByName(CFUUIDRef factoryID, CFPlugInRef plugIn, CFStringRef functionName) {
124 CF_EXPORT Boolean CFPlugInUnregisterFactory(CFUUIDRef factoryID) {
135 CF_EXPORT Boolean CFPlugInRegisterPlugInType(CFUUIDRef factoryI
[all...]
H A DCFPlugIn.h57 typedef void *(*CFPlugInFactoryFunction)(CFAllocatorRef allocator, CFUUIDRef typeUUID);
83 CF_EXPORT CFArrayRef CFPlugInFindFactoriesForPlugInType(CFUUIDRef typeUUID) CF_RETURNS_RETAINED;
87 CF_EXPORT CFArrayRef CFPlugInFindFactoriesForPlugInTypeInPlugIn(CFUUIDRef typeUUID, CFPlugInRef plugIn) CF_RETURNS_RETAINED;
90 CF_EXPORT void *CFPlugInInstanceCreate(CFAllocatorRef allocator, CFUUIDRef factoryUUID, CFUUIDRef typeUUID);
96 CF_EXPORT Boolean CFPlugInRegisterFactoryFunction(CFUUIDRef factoryUUID, CFPlugInFactoryFunction func);
98 CF_EXPORT Boolean CFPlugInRegisterFactoryFunctionByName(CFUUIDRef factoryUUID, CFPlugInRef plugIn, CFStringRef functionName);
100 CF_EXPORT Boolean CFPlugInUnregisterFactory(CFUUIDRef factoryUUID);
102 CF_EXPORT Boolean CFPlugInRegisterPlugInType(CFUUIDRef factoryUUID, CFUUIDRef typeUUI
[all...]
H A DCFPlugIn_Factory.c37 CFUUIDRef _uuid;
78 CFUUIDRef uuid = (CFUUIDRef)CFRetain(factory->_uuid);
96 CFUUIDRef uuid = factory->_uuid;
107 CF_PRIVATE _CFPFactoryRef _CFPFactoryFind(CFUUIDRef factoryID, Boolean enabled) {
132 while (c-- > 0) _CFPFactoryRemoveType(factory, (CFUUIDRef)CFArrayGetValueAtIndex(factory->_types, c));
139 static _CFPFactoryRef _CFPFactoryCommonCreate(CFAllocatorRef allocator, CFUUIDRef factoryID) {
146 factory->_uuid = (CFUUIDRef)CFRetain(factoryID);
156 CF_PRIVATE _CFPFactoryRef _CFPFactoryCreate(CFAllocatorRef allocator, CFUUIDRef factoryID, CFPlugInFactoryFunction func) {
168 CF_PRIVATE _CFPFactoryRef _CFPFactoryCreateByName(CFAllocatorRef allocator, CFUUIDRef factoryI
[all...]
H A DCFPlugIn_Factory.h37 extern _CFPFactoryRef _CFPFactoryCreate(CFAllocatorRef allocator, CFUUIDRef factoryID, CFPlugInFactoryFunction func);
38 extern _CFPFactoryRef _CFPFactoryCreateByName(CFAllocatorRef allocator, CFUUIDRef factoryID, CFPlugInRef plugIn, CFStringRef funcName);
40 extern _CFPFactoryRef _CFPFactoryFind(CFUUIDRef factoryID, Boolean enabled);
42 extern CFUUIDRef _CFPFactoryCopyFactoryID(_CFPFactoryRef factory);
45 extern void *_CFPFactoryCreateInstance(CFAllocatorRef allocator, _CFPFactoryRef factory, CFUUIDRef typeID);
50 extern void _CFPFactoryAddType(_CFPFactoryRef factory, CFUUIDRef typeID);
51 extern void _CFPFactoryRemoveType(_CFPFactoryRef factory, CFUUIDRef typeID);
53 extern Boolean _CFPFactorySupportsType(_CFPFactoryRef factory, CFUUIDRef typeID);
54 extern CFArrayRef _CFPFactoryFindCopyForType(CFUUIDRef typeID);
H A DCFPlugIn_Instance.c97 instance->factory = _CFPFactoryFind((CFUUIDRef)factoryName, true);
120 CFUUIDRef factoryId = _CFPFactoryCopyFactoryID(instance->factory);
H A DCFPlugIn_PlugIn.c37 CFUUIDRef factoryID = (CFGetTypeID(factoryIDStr) == CFStringGetTypeID()) ? CFUUIDCreateFromString(kCFAllocatorSystemDefault, factoryIDStr) : NULL;
38 if (!factoryID) factoryID = (CFUUIDRef)CFRetain(factoryIDStr);
50 CFUUIDRef typeID = (CFGetTypeID(typeIDStr) == CFStringGetTypeID()) ? CFUUIDCreateFromString(kCFAllocatorSystemDefault, typeIDStr) : NULL;
51 CFUUIDRef curFactoryID;
52 if (!typeID) typeID = (CFUUIDRef)CFRetain(typeIDStr);
56 if (!curFactoryID) curFactoryID = (CFUUIDRef)CFRetain(curFactoryIDStr);
62 if (!curFactoryID) curFactoryID = (CFUUIDRef)CFRetain(curFactoryIDStr);
H A DCFPreferences.c121 CFUUIDRef uuidRef = CFUUIDCreateFromUUIDBytes(kCFAllocatorSystemDefault, uuidBytes);
H A DCFUUID.c174 static void __CFUUIDAddUniqueUUIDHasLock(CFUUIDRef uuid) {
187 static void __CFUUIDRemoveUniqueUUIDHasLock(CFUUIDRef uuid) {
191 static CFUUIDRef __CFUUIDGetUniquedUUIDHasLock(const CFUUIDBytes *bytes) {
192 CFUUIDRef uuid = NULL;
194 uuid = (CFUUIDRef)find_has_lock(bytes);
196 uuid = (CFUUIDRef)CFDictionaryGetValue(_uniquedUUIDs, bytes);
211 CFStringRef uuidStr = CFUUIDCreateString(CFGetAllocator(cf), (CFUUIDRef)cf);
218 return CFUUIDCreateString(CFGetAllocator(cf), (CFUUIDRef)cf);
243 static CFUUIDRef __CFUUIDCreateWithBytesPrimitive(CFAllocatorRef allocator, CFUUIDBytes bytes, Boolean isConst) {
261 return (CFUUIDRef)uui
[all...]
H A DCFUUID.h37 typedef const struct __CFUUID * CFUUIDRef; typedef in typeref:struct:__CFUUID
58 raw UUID. A CFUUIDRef can provide such a struct from the
67 CFUUIDRef CFUUIDCreate(CFAllocatorRef alloc);
71 CFUUIDRef CFUUIDCreateWithBytes(CFAllocatorRef alloc, UInt8 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);
75 CFUUIDRef CFUUIDCreateFromString(CFAllocatorRef alloc, CFStringRef uuidStr);
79 CFStringRef CFUUIDCreateString(CFAllocatorRef alloc, CFUUIDRef uuid);
83 CFUUIDRef CFUUIDGetConstantUUIDWithBytes(CFAllocatorRef alloc, UInt8 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);
84 /* This returns an immortal CFUUIDRef that should not be released. It can be used in headers to declare UUID constants with #define. */
87 CFUUIDBytes CFUUIDGetUUIDBytes(CFUUIDRef uuid);
90 CFUUIDRef CFUUIDCreateFromUUIDByte
[all...]
/macosx-10.9.5/DiskArbitration-266/diskarbitrationd/
H A DDABase.c523 __private_extern__ CFUUIDRef ___CFUUIDCreateFromName( CFAllocatorRef allocator, CFUUIDRef space, CFDataRef name )
547 __private_extern__ CFUUIDRef ___CFUUIDCreateFromString( CFAllocatorRef allocator, CFStringRef string )
H A DDABase.h64 __private_extern__ CFUUIDRef ___CFUUIDCreateFromName( CFAllocatorRef allocator, CFUUIDRef space, CFDataRef name );
65 __private_extern__ CFUUIDRef ___CFUUIDCreateFromString( CFAllocatorRef allocator, CFStringRef string );
H A DDAFileSystem.c73 CFUUIDRef volumeUUID;
390 CFUUIDRef _DAFileSystemCreateUUIDFromString( CFAllocatorRef allocator, CFStringRef string )
393 CFUUIDRef uuid = NULL;
H A DDAFileSystem.h49 typedef void ( *DAFileSystemProbeCallback )( int status, CFBooleanRef clean, CFStringRef name, CFUUIDRef uuid, void * context );
53 extern CFUUIDRef _DAFileSystemCreateUUIDFromString( CFAllocatorRef allocator, CFStringRef string );
H A DDAStage.c56 static void __DAStageProbeCallback( int status, CFBooleanRef clean, CFStringRef name, CFUUIDRef uuid, void * context );
825 static void __DAStageProbeCallback( int status, CFBooleanRef clean, CFStringRef name, CFUUIDRef uuid, void * context )
/macosx-10.9.5/Heimdal-323.92.1/kadmin/
H A Ddump.c52 CFUUIDRef uuid;
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/cf/
H A Dcredential.c275 * @returns CFUUIDRef that can be used to turn into a credential,
276 * normal CoreFoundaton rules for rules applies so the CFUUIDRef needs
282 CFUUIDRef
318 * applies so the CFUUIDRef needs to be released with either CFRelease() or gss_release_name().
324 GSSCreateCredentialFromUUID(CFUUIDRef uuid)
H A Ditem.c221 CFUUIDRef uuid = CFUUIDCreate(NULL);
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/gssapi/
H A Dgssapi_apple.h30 * applies so the CFUUIDRef needs to be released with either CFRelease() or gss_release_name().
35 GSSCreateCredentialFromUUID (CFUUIDRef /*uuid*/) __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
71 * @returns CFUUIDRef that can be used to turn into a credential,
72 * normal CoreFoundaton rules for rules applies so the CFUUIDRef needs
77 CFUUIDRef
/macosx-10.9.5/Heimdal-323.92.1/lib/hdb/
H A Dhdb-od.c1727 CFUUIDRef uuid;
/macosx-10.9.5/Heimdal-323.92.1/lib/heimcred/
H A Dclient.c130 CFUUIDRef uuid;
156 CFUUIDRef uuid = CFDictionaryGetValue(attributes, kHEIMAttrUUID);
218 CFUUIDRef
230 HeimCredCopyFromUUID(CFUUIDRef uuid)
391 CFUUIDRef uuid =_CFXPCCreateCFObjectFromXPCObject(value);
427 SendItemCommand(const char *command, CFUUIDRef uuid)
441 HeimCredDeleteByUUID(CFUUIDRef uuid)
486 HeimCredMove(CFUUIDRef from, CFUUIDRef to)
H A Dcommon.c63 CFUUIDRef
95 HeimCredSetUUID(xpc_object_t object, const char *key, CFUUIDRef uuid)
157 HeimCredCreateItem(CFUUIDRef uuid)
H A Dcommon.h40 CFUUIDRef uuid;
61 HeimCredCreateItem(CFUUIDRef uuid);
63 CFUUIDRef
73 HeimCredSetUUID(xpc_object_t object, const char *key, CFUUIDRef uuid);
H A Dheimcred.h113 CFUUIDRef
117 HeimCredCopyFromUUID(CFUUIDRef);
141 HeimCredDeleteByUUID(CFUUIDRef uuid);
150 HeimCredMove(CFUUIDRef from, CFUUIDRef to);

Completed in 410 milliseconds

12345