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

/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDLibUserClient.cpp1209 IOReturn IOHIDLibUserClient::getReport(void *reportBuffer, uint32_t *pOutsize, IOHIDReportType reportType, uint32_t reportID, uint32_t timeout, IOHIDCompletion * completion) argument
1217 if (*pOutsize > 0x10000) {
1218 IOLog("IOHIDLibUserClient::getReport called with an irrationally large output size: %lu\n", (long unsigned) *pOutsize);
1221 mem = IOBufferMemoryDescriptor::withCapacity(*pOutsize, kIODirectionInOut);
1224 ret = getReport(mem, pOutsize, reportType, reportID, timeout, completion);
1225 mem->readBytes(0, reportBuffer, *pOutsize);
1236 IOReturn IOHIDLibUserClient::getReport(IOMemoryDescriptor * mem, uint32_t * pOutsize, IOHIDReportType reportType, uint32_t reportID, uint32_t timeout, IOHIDCompletion * completion) argument
1243 if (*pOutsize > 0x10000) {
1244 IOLog("IOHIDLibUserClient::getReport called with an irrationally large output size: %lu\n", (long unsigned) *pOutsize);
1251 pb->fMax = *pOutsize;
[all...]
H A DIOHIDLibUserClient.h291 IOReturn getReport(void *reportBuffer, uint32_t *pOutsize, IOHIDReportType reportType, uint32_t reportID, uint32_t timeout = 0, IOHIDCompletion * completion = 0);
292 IOReturn getReport(IOMemoryDescriptor * mem, uint32_t * pOutsize, IOHIDReportType reportType, uint32_t reportID, uint32_t timeout = 0, IOHIDCompletion * completion = 0);

Completed in 76 milliseconds