| 592 | #endif // #ifndef NON_RESIDENT |
| 593 | |
| 594 | static void setStringInDict(OSDictionary* dict, const char* key, const char* value) |
| 595 | { |
| 596 | OSString* str = OSString::withCStringNoCopy(value); |
| 597 | if (str) |
| 598 | { |
| 599 | dict->setObject(key, str); |
| 600 | str->release(); |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | static void setNumberInDict(OSDictionary* dict, const char* key, UInt16 value) |
| 605 | { |
no outgoing calls
no test coverage detected