Searched refs:typeID (Results 1 - 25 of 115) sorted by relevance

12345

/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibPriv.cpp73 IOFireWireLibFactory( CFAllocatorRef allocator, CFUUIDRef typeID )
79 if ( CFEqual( typeID, kIOFireWireLibTypeID ) )
/macosx-10.9.5/CF-855.17/
H A DCFPlugIn_Factory.h45 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.c45 CF_EXPORT CFArrayRef CFPlugInFindFactoriesForPlugInType(CFUUIDRef typeID) { argument
46 CFArrayRef array = _CFPFactoryFindCopyForType(typeID);
64 CF_EXPORT CFArrayRef CFPlugInFindFactoriesForPlugInTypeInPlugIn(CFUUIDRef typeID, CFPlugInRef plugIn) { argument
65 CFArrayRef array = _CFPFactoryFindCopyForType(typeID);
87 CF_EXPORT void *CFPlugInInstanceCreate(CFAllocatorRef allocator, CFUUIDRef factoryID, CFUUIDRef typeID) { argument
94 if (!_CFPFactorySupportsType(factory, typeID)) {
96 CFLog(__kCFLogPlugIn, CFSTR("Factory %@ does not support type %@"), factoryID, typeID);
98 result = _CFPFactoryCreateInstance(allocator, factory, typeID);
135 CF_EXPORT Boolean CFPlugInRegisterPlugInType(CFUUIDRef factoryID, CFUUIDRef typeID) { argument
141 _CFPFactoryAddType(factory, typeID);
146 CFPlugInUnregisterPlugInType(CFUUIDRef factoryID, CFUUIDRef typeID) argument
[all...]
H A DCFPlugIn_Factory.c197 CF_PRIVATE void *_CFPFactoryCreateInstance(CFAllocatorRef allocator, _CFPFactoryRef factory, CFUUIDRef typeID) { argument
211 result = (void *)INVOKE_CALLBACK2(f, allocator, typeID);
237 CF_PRIVATE void _CFPFactoryAddType(_CFPFactoryRef factory, CFUUIDRef typeID) { argument
241 CFArrayAppendValue(factory->_types, typeID);
246 CFMutableArrayRef array = (CFMutableArrayRef)CFDictionaryGetValue(_factoriesByTypeID, typeID);
251 CFDictionarySetValue(_factoriesByTypeID, typeID, array);
258 CF_PRIVATE void _CFPFactoryRemoveType(_CFPFactoryRef factory, CFUUIDRef typeID) { argument
263 idx = CFArrayGetFirstIndexOfValue(factory->_types, CFRangeMake(0, CFArrayGetCount(factory->_types)), typeID);
270 CFMutableArrayRef array = (CFMutableArrayRef)CFDictionaryGetValue(_factoriesByTypeID, typeID);
275 if (CFArrayGetCount(array) == 0) CFDictionaryRemoveValue(_factoriesByTypeID, typeID);
282 _CFPFactorySupportsType(_CFPFactoryRef factory, CFUUIDRef typeID) argument
292 _CFPFactoryFindCopyForType(CFUUIDRef typeID) argument
[all...]
H A DCFPlugIn_PlugIn.c50 CFUUIDRef typeID = (CFGetTypeID(typeIDStr) == CFStringGetTypeID()) ? CFUUIDCreateFromString(kCFAllocatorSystemDefault, typeIDStr) : NULL; local
52 if (!typeID) typeID = (CFUUIDRef)CFRetain(typeIDStr);
57 CFPlugInRegisterPlugInType(curFactoryID, typeID);
63 CFPlugInRegisterPlugInType(curFactoryID, typeID);
66 if (typeID) CFRelease(typeID);
H A DCFRuntime.h192 CF_EXPORT const CFRuntimeClass * _CFRuntimeGetClassWithTypeID(CFTypeID typeID);
197 CF_EXPORT void _CFRuntimeUnregisterClassWithTypeID(CFTypeID typeID);
228 CF_EXPORT CFTypeRef _CFRuntimeCreateInstance(CFAllocatorRef allocator, CFTypeID typeID, CFIndex extraBytes, unsigned char *category);
246 CF_EXPORT void _CFRuntimeSetInstanceTypeID(CFTypeRef cf, CFTypeID typeID);
247 /* This function changes the typeID of the given instance.
256 CF_EXPORT void _CFRuntimeInitStaticInstance(void *memory, CFTypeID typeID);
258 * (unreleaseable) CF object of the given typeID.
H A DCFRuntime.c228 Boolean _CFIsObjC(CFTypeID typeID, void *obj) { argument
229 return CF_IS_OBJC(typeID, obj);
250 CFTypeID typeID = __CFRuntimeClassTableCount - 1; local
252 return typeID;
256 const CFRuntimeClass * _CFRuntimeGetClassWithTypeID(CFTypeID typeID) { argument
257 return __CFRuntimeClassTable[typeID]; // hopelessly unthreadsafe
260 void _CFRuntimeUnregisterClassWithTypeID(CFTypeID typeID) { argument
262 __CFRuntimeClassTable[typeID] = NULL;
290 CFTypeRef _CFRuntimeCreateInstance(CFAllocatorRef allocator, CFTypeID typeID, CFIndex extraBytes, unsigned char *category) { argument
291 if (__CFRuntimeClassTableSize <= typeID) HAL
359 _CFRuntimeInitStaticInstance(void *ptr, CFTypeID typeID) argument
465 CFTypeID typeID = (*cfinfop >> 8) & 0x03FF; // mask up to 0x0FFF local
653 CFTypeID typeID = (cfinfo >> 8) & 0x03FF; // mask up to 0x0FFF local
1339 CFTypeID typeID = (cfinfo >> 8) & 0x03FF; // mask up to 0x0FFF local
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dtoll-free-bridging.m52 CFTypeID typeID = CFGetTypeID(argument);
62 if (typeID == CFStringGetTypeID()) {
64 } else if (typeID == CFArrayGetTypeID()) {
66 } else if (typeID == CFDictionaryGetTypeID()) {
68 } else if (typeID == CFURLGetTypeID()) {
74 } else if (typeID == CFDataGetTypeID()) {
H A Dcorefoundation.h7 extern PyObject* PyObjCCFType_New(char* name, char* encoding, CFTypeID typeID);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A Dtoll-free-bridging.m56 CFTypeID typeID = CFGetTypeID(argument);
66 if (typeID == CFStringGetTypeID()) {
68 } else if (typeID == CFArrayGetTypeID()) {
70 } else if (typeID == CFDictionaryGetTypeID()) {
72 } else if (typeID == CFURLGetTypeID()) {
75 } else if (typeID == CFDataGetTypeID()) {
H A Dcorefoundation.h7 extern PyObject* PyObjCCFType_New(char* name, char* encoding, CFTypeID typeID);
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDLib/
H A DIOHIDIUnknown.cpp40 void *IOHIDLibFactory(CFAllocatorRef allocator __unused, CFUUIDRef typeID) argument
42 if (CFEqual(typeID, kIOHIDDeviceUserClientTypeID))
44 else if (CFEqual(typeID, kIOHIDDeviceTypeID))
47 else if (CFEqual(typeID, kIOHIDServicePlugInTypeID))
50 else if (CFEqual(typeID, kIOUPSPlugInTypeID))
H A DIOHIDIUnknown.h30 extern void *IOHIDLibFactory(CFAllocatorRef allocator, CFUUIDRef typeID);
/macosx-10.9.5/IOKitUser-907.100.13/kext.subproj/
H A DprintPList_new.c87 CFTypeID typeID = 0; local
100 typeID = CFGetTypeID(plist);
102 if (typeID == CFDictionaryGetTypeID()) {
168 } else if (typeID == CFArrayGetTypeID()) {
192 } else if (typeID == CFStringGetTypeID()) {
196 } else if (typeID == CFURLGetTypeID()) {
199 } else if (typeID == CFDataGetTypeID()) {
209 } else if (typeID == CFNumberGetTypeID()) {
212 } else if (typeID == CFBooleanGetTypeID()) {
216 } else if (typeID
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DUTIUtilities.mm61 CFTypeID typeID = CFGetTypeID(value);
63 if (typeID == CFStringGetTypeID())
66 if (typeID == CFArrayGetTypeID()) {
/macosx-10.9.5/system_cmds-597.90.1/nvram.tproj/
H A Dnvram.c47 static CFTypeRef ConvertValueToCFTypeRef(CFTypeID typeID, char *value);
435 CFTypeID typeID; local
446 typeID = CFGetTypeID(valueRef);
449 valueRef = ConvertValueToCFTypeRef(typeID, value);
559 CFTypeID typeID; local
572 typeID = CFGetTypeID(value);
574 if (typeID == CFBooleanGetTypeID()) {
577 } else if (typeID == CFNumberGetTypeID()) {
583 } else if (typeID == CFStringGetTypeID()) {
592 } else if (typeID
655 ConvertValueToCFTypeRef(CFTypeID typeID, char *value) argument
[all...]
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/nvram.tproj/
H A Dnvram.c47 static CFTypeRef ConvertValueToCFTypeRef(CFTypeID typeID, char *value);
435 CFTypeID typeID; local
446 typeID = CFGetTypeID(valueRef);
449 valueRef = ConvertValueToCFTypeRef(typeID, value);
559 CFTypeID typeID; local
572 typeID = CFGetTypeID(value);
574 if (typeID == CFBooleanGetTypeID()) {
577 } else if (typeID == CFNumberGetTypeID()) {
583 } else if (typeID == CFStringGetTypeID()) {
592 } else if (typeID
655 ConvertValueToCFTypeRef(CFTypeID typeID, char *value) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/cf/
H A DArgumentCodersCF.cpp74 CFTypeID typeID = CFGetTypeID(type);
75 if (typeID == CFArrayGetTypeID())
77 if (typeID == CFBooleanGetTypeID())
79 if (typeID == CFDataGetTypeID())
81 if (typeID == CFDateGetTypeID())
83 if (typeID == CFDictionaryGetTypeID())
85 if (typeID == CFNullGetTypeID())
87 if (typeID == CFNumberGetTypeID())
89 if (typeID == CFStringGetTypeID())
91 if (typeID
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecPolicySearch.cpp37 return gTypes().PolicyCursor.typeID;
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dcfclass.h41 CFTypeID typeID; member in class:Security::CFClass
H A Dseccfobject.cpp151 CFTypeRef p = _CFRuntimeCreateInstance(NULL, cfclass.typeID,
161 const CFRuntimeClass *rtc = _CFRuntimeGetClassWithTypeID(cfclass.typeID);
162 SECURITY_DEBUG_SEC_CREATE(q, rtc ? (char *)rtc->className : NULL, (unsigned int)cfclass.typeID);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecPolicySearch.cpp37 return gTypes().PolicyCursor.typeID;
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecPolicySearch.cpp37 return gTypes().PolicyCursor.typeID;
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dcfclass.h41 CFTypeID typeID; member in class:Security::CFClass
/macosx-10.9.5/Heimdal-323.92.1/plugins/GSSNotificationForwarder/
H A DGSSNotificationForwarder.c194 UserEventAgentFactory(CFAllocatorRef allocator, CFUUIDRef typeID);
198 UserEventAgentFactory(CFAllocatorRef allocator, CFUUIDRef typeID) argument
202 if (CFEqual(typeID, kUserEventAgentTypeID))

Completed in 146 milliseconds

12345