| 228 | } |
| 229 | |
| 230 | static void dict_set_boolean(CFMutableDictionaryRef dict, CFStringRef key, bool value) |
| 231 | { |
| 232 | CFDictionarySetValue(dict, key, value ? kCFBooleanTrue : kCFBooleanFalse); |
| 233 | } |
| 234 | |
| 235 | static void dict_set_data(CFMutableDictionaryRef dict, CFStringRef key, uint8_t *value, uint64_t length) |
| 236 | { |
no outgoing calls
no test coverage detected