Lines Matching defs:pbData
462 uint8_t *pbData = NULL;
471 pbData = g_pbTcpStashed;
480 pbData = (uint8_t *)RTMemAlloc(cbDataAlloced);
481 if (!pbData)
491 rc = RTTcpRead(hTcpClient, pbData + offData, sizeof(uint32_t) - offData, &cbRead);
505 cbData = *(uint32_t volatile *)pbData;
514 void *pvNew = RTMemRealloc(pbData, cbData);
517 pbData = (uint8_t *)pvNew;
531 rc = RTTcpRead(hTcpClient, pbData + offData, cbData - offData, &cbRead);
548 *ppPktHdr = (PTXSPKTHDR)pbData;
559 g_pbTcpStashed = pbData;
563 RTMemFree(pbData);