Lines Matching defs:pEntry
234 DevListEntry *pEntry;
237 pEntry = (DevListEntry *)pBuf;
238 pEntry->id = (pDevice->bPort << 8) + pDevice->bBus;
239 pEntry->bcdUSB = pDevice->bcdUSB;
240 pEntry->bDeviceClass = pDevice->bDeviceClass;
241 pEntry->bDeviceSubClass = pDevice->bDeviceSubClass;
242 pEntry->idVendor = pDevice->idVendor;
243 pEntry->idProduct = pDevice->idProduct;
244 pEntry->bcdRev = pDevice->bcdDevice;
245 pEntry->idPort = pDevice->bPort;
247 &pEntry->oManufacturer, &iNextString);
249 &pEntry->oProduct, &iNextString);
251 &pEntry->oSerialNumber, &pEntry->oNext);
252 *piNext = pEntry->oNext;
279 DevListEntry *pEntry = (DevListEntry *)(pBuf + iCurrent);
285 AssertReturnStmt(cZeros == RT_BOOL(pEntry->oManufacturer)
286 + RT_BOOL(pEntry->oProduct)
287 + RT_BOOL(pEntry->oSerialNumber),
289 Assert(pEntry->oManufacturer == 0 || pBuf[iCurrent + pEntry->oManufacturer] != '\0');
290 Assert(pEntry->oProduct == 0 || pBuf[iCurrent + pEntry->oProduct] != '\0');
291 Assert(pEntry->oSerialNumber == 0 || pBuf[iCurrent + pEntry->oSerialNumber] != '\0');