Searched refs:cfObj (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/WebKit-7600.1.25/win/
H A DCFDictionaryPropertyBag.cpp97 static bool ConvertCFTypeToVariant(VARIANT* pVar, void* cfObj) argument
99 if (!cfObj) {
106 V_BSTR(pVar) = MarshallingHelpers::CFStringRefToBSTR((CFStringRef) cfObj);
109 V_I4(pVar) = MarshallingHelpers::CFNumberRefToInt((CFNumberRef) cfObj);
113 V_ARRAY(pVar) = MarshallingHelpers::stringArrayToSafeArray((CFArrayRef) cfObj);
116 V_ARRAY(pVar) = MarshallingHelpers::intArrayToSafeArray((CFArrayRef) cfObj);
119 V_ARRAY(pVar) = MarshallingHelpers::iunknownArrayToSafeArray((CFArrayRef) cfObj);
127 static bool ConvertVariantToCFType(VARIANT* pVar, void** cfObj) argument
130 *cfObj = 0;
136 *cfObj
183 void* cfObj; local
[all...]
/macosx-10.10/IOKitUser-1050.1.21/kext.subproj/
H A DKextManager.c351 CFTypeRef cfObj; local
391 cfObj = CFPropertyListCreateWithData(kCFAllocatorDefault,
393 if (!cfObj) {
398 if (CFGetTypeID(cfObj) != CFArrayGetTypeID()) {
399 CFRelease(cfObj);
402 valueArray = (CFMutableArrayRef) cfObj;
/macosx-10.10/mDNSResponder-561.1.1/mDNSShared/
H A DDebugServices.c1512 CFTypeRef cfObj; local
1514 cfObj = (CFTypeRef) va_arg(arg, void *);
1515 cfStr = (CFGetTypeID(cfObj) == CFStringGetTypeID()) ? (CFStringRef)CFRetain(cfObj) : CFCopyDescription(cfObj);

Completed in 103 milliseconds