| 233 | } |
| 234 | |
| 235 | static void dict_set_data(CFMutableDictionaryRef dict, CFStringRef key, uint8_t *value, uint64_t length) |
| 236 | { |
| 237 | CFDataRef data; |
| 238 | data = CFDataCreate(NULL, value, (CFIndex) length); |
| 239 | CFDictionarySetValue(dict, key, data); |
| 240 | CFRelease(data); |
| 241 | } |
| 242 | |
| 243 | static void dict_set_object(CFMutableDictionaryRef dict, CFStringRef key, CFTypeRef *value) |
| 244 | { |
no outgoing calls
no test coverage detected