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

/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDResourceUserClient.cpp389 IOByteCount propertiesLength = 0; local
400 propertiesLength = propertiesDesc->getLength();
401 require_action(propertiesLength, exit, result=kIOReturnNoResources);
403 propertiesData = IOMalloc(propertiesLength);
406 propertiesDesc->readBytes(0, propertiesData, propertiesLength);
408 require_action(strnlen((const char *) propertiesData, propertiesLength) < propertiesLength, exit, result=kIOReturnInternalError);
410 object = OSUnserializeXML((const char *)propertiesData, propertiesLength);
430 if ( propertiesData && propertiesLength )
431 IOFree(propertiesData, propertiesLength);
[all...]

Completed in 80 milliseconds