HomeSort by relevance Sort by last modified time
    Searched refs:DataQueue (Results 1 - 6 of 6) sorted by null

  /packages/apps/Nfc/nci/jni/
DataQueue.h 27 class DataQueue {
31 ** Function: DataQueue
38 DataQueue();
42 ** Function: ~DataQueue
49 ~DataQueue();
DataQueue.cpp 21 #include "DataQueue.h"
32 ** Function: DataQueue
39 DataQueue::DataQueue() {}
43 ** Function: ~DataQueue
50 DataQueue::~DataQueue() {
60 bool DataQueue::isEmpty() {
78 bool DataQueue::enqueue(uint8_t* data, uint16_t dataLen) {
95 LOG(ERROR) << StringPrintf("DataQueue::enqueue: out of memory ?????")
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
SockImpl.c 185 Sock->RcvBuffer.DataQueue,
235 NetbufQueTrim (Sock->RcvBuffer.DataQueue, TokenRcvdBytes);
285 NetbufQueAppend (Sock->SndBuffer.DataQueue, SndData);
439 ASSERT (Sock->RcvBuffer.DataQueue != NULL);
441 RcvdBytes = (Sock->RcvBuffer.DataQueue)->BufSize;
594 Sock->SndBuffer.DataQueue = NetbufQueAlloc ();
595 if (NULL == Sock->SndBuffer.DataQueue) {
602 Sock->RcvBuffer.DataQueue = NetbufQueAlloc ();
603 if (NULL == Sock->RcvBuffer.DataQueue) {
695 if (NULL != Sock->SndBuffer.DataQueue) {
    [all...]
Socket.h 247 #define GET_RCV_DATASIZE(Sock) (((Sock)->RcvBuffer.DataQueue)->BufSize)
276 #define GET_SND_DATASIZE(Sock) (((Sock)->SndBuffer.DataQueue)->BufSize)
377 NET_BUF_QUEUE *DataQueue; ///< The queue to buffer data
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
SockImpl.c 33 NetbufList = &(Sockbuf->DataQueue->BufList);
60 NetbufList = &(Sockbuf->DataQueue->BufList);
223 Sock->RcvBuffer.DataQueue,
346 NetbufQueTrim (Sock->RcvBuffer.DataQueue, TokenRcvdBytes);
397 NetbufQueAppend (Sock->SndBuffer.DataQueue, SndData);
550 ASSERT (Sock->RcvBuffer.DataQueue != NULL);
552 RcvdBytes = (Sock->RcvBuffer.DataQueue)->BufSize;
701 Sock->SndBuffer.DataQueue = NetbufQueAlloc ();
702 if (NULL == Sock->SndBuffer.DataQueue) {
711 Sock->RcvBuffer.DataQueue = NetbufQueAlloc ();
    [all...]
Socket.h 261 #define GET_RCV_DATASIZE(Sock) (((Sock)->RcvBuffer.DataQueue)->BufSize)
290 #define GET_SND_DATASIZE(Sock) (((Sock)->SndBuffer.DataQueue)->BufSize)
365 NET_BUF_QUEUE *DataQueue; ///< The queue to buffer data

Completed in 3071 milliseconds