Home
last modified time | relevance | path

Searched refs:inObj (Results 1 – 1 of 1) sorted by relevance

/xnu-12377.61.12/iokit/Kernel/
H A DIOPlatformExpert.cpp76 static void getCStringForObject(OSObject *inObj, char *outStr, size_t outStrLen);
845 getCStringForObject(OSObject *inObj, char *outStr, size_t outStrLen) in getCStringForObject() argument
850 if ((NULL == inObj) || (NULL == outStr)) { in getCStringForObject()
854 char * objString = (char *) (inObj->getMetaClass())->getClassName(); in getCStringForObject()
858 strlcpy(outStr, ((OSString *)inObj)->getCStringNoCopy(), outStrLen); in getCStringForObject()
860 len = ((OSData *)inObj)->getLength(); in getCStringForObject()
861 buffer = (char *)((OSData *)inObj)->getBytesNoCopy(); in getCStringForObject()