Lines Matching refs:numArgs
2132 IOReturn result, void *args[], UInt32 numArgs) in sendAsyncResult() argument
2138 if (numArgs > kMaxAsyncArgs) { in sendAsyncResult()
2146 for (idx = 0; idx < numArgs; idx++) { in sendAsyncResult()
2150 return sendAsyncResult64(reference64, result, args64, numArgs); in sendAsyncResult()
2155 IOReturn result, io_user_reference_t args[], UInt32 numArgs, IOOptionBits options) in sendAsyncResult64WithOptions() argument
2157 return _sendAsyncResult64(reference, result, args, numArgs, options); in sendAsyncResult64WithOptions()
2162 IOReturn result, io_user_reference_t args[], UInt32 numArgs) in sendAsyncResult64() argument
2164 return _sendAsyncResult64(reference, result, args, numArgs, 0); in sendAsyncResult64()
2169 IOReturn result, io_user_reference_t args[], UInt32 numArgs, IOOptionBits options) in _sendAsyncResult64() argument
2196 if (numArgs > kMaxAsyncArgs) { in _sendAsyncResult64()
2209 - (kMaxAsyncArgs - numArgs) * sizeof(io_user_reference_t); in _sendAsyncResult64()
2211 + numArgs * sizeof(io_user_reference_t); in _sendAsyncResult64()
2217 if (numArgs) { in _sendAsyncResult64()
2218 bcopy(args, replyMsg.m.msg64.args, numArgs * sizeof(io_user_reference_t)); in _sendAsyncResult64()
2225 - (kMaxAsyncArgs - numArgs) * sizeof(uint32_t); in _sendAsyncResult64()
2228 + numArgs * sizeof(uint32_t); in _sendAsyncResult64()
2238 for (idx = 0; idx < numArgs; idx++) { in _sendAsyncResult64()