Searched defs:aDev1 (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Main/src-server/
H A DHostUSBDeviceImpl.cpp953 * @param aDev1 Device 1.
958 * @returns < 0 if aDev1 should come before aDev2.
959 * @returns 0 if aDev1 and aDev2 are equal.
960 * @returns > 0 if aDev1 should come after aDev2.
963 int HostUSBDevice::i_compare(PCUSBDEVICE aDev1, PCUSBDEVICE aDev2, bool aIsAwaitingReAttach /*= false */) argument
972 int iDiff = aDev1->idVendor - aDev2->idVendor;
976 iDiff = aDev1->idProduct - aDev2->idProduct;
980 iDiff = aDev1->bcdDevice - aDev2->bcdDevice;
983 //Log3(("compare: bcdDevice: %#x != %#x\n", aDev1->bcdDevice, aDev2->bcdDevice));
988 if ( aDev1
[all...]

Completed in 119 milliseconds