Lines Matching refs:xid
223 static int32_t UsbnetHostHandleMsg(struct UsbnetHost *usbNet, struct RndisMsgHdr *buf, int buflen, uint32_t xid)
235 if (requestId == xid) {
271 uint32_t xid = 0;
273 /* Issue the request; xid is unique, don't bother byteswapping it */
275 xid = usbNet->xid++;
276 if (!xid) {
277 xid = usbNet->xid++;
279 buf->requestId = (__le32) xid;
281 HARCH_INFO_PRINT("msgType= %{public}d, xid = %{public}d", msgType, xid);
292 if (retval < 0 || xid == 0) {
296 HARCH_INFO_PRINT("rndis xid %{public}d\n", xid);
313 return UsbnetHostHandleMsg(usbNet, buf, buflen, xid);