Home | History | Annotate | Download | only in include

Lines Matching defs:seqNum

329                 seqNum = 0;
333 uint32 seqNum;
341 seqNum = 0;
346 seqNum = s;
350 uint32 seqNum;
357 ReassemblyBlock(const OsclAny* ptr, uint32 seqNum, ReassemblyBlock* p = NULL) : pnext(p)
359 rangeStart = rangeEnd = seqNum;
360 blocks.push_back(OutOfOrderBlockContainer(ptr, seqNum));
387 bool Insert(const OsclAny* ptr, uint32 seqNum)
389 if (seqNum == rangeEnd + 1)
391 blocks.push_back(OutOfOrderBlockContainer(ptr, seqNum));
395 else if (seqNum == rangeStart - 1)
397 blocks.push_front(OutOfOrderBlockContainer(ptr, seqNum));
474 Oscl_Vector<OutOfOrderBlockContainer, OsclMemAllocator>* GetDeletables(uint32 seqNum)
480 else if (phead->IsInRange(seqNum))
656 PVMF_SOCKALLOC_LOG_SEQNUM_ALLOC_DEALLOC((0, "PVMFSMSharedBufferAllocWithReSize::allocate - Alloc SeqNum=%d", iSeqCount));
659 "SeqNum=%d, PtrS=0x%x, PtrE=0x%x, Begin=%d, End=%d, AllocSize=%d, LastDeallocPtr=0x%x, Avail=%d",
761 uint32 seqNum = 0;
764 /* Get the corresponding block size & seqnum from the pointer itself */
765 oscl_memcpy(&seqNum, (OsclAny*)p, sizeof(uint32));
771 if (seqNum != (uint32)(iLastDeallocatedSeqNum + 1))
773 if (seqNum + 1 == iSeqCount)
777 PVMF_SOCKALLOC_LOG_ALLOC_RESIZE_DEALLOC((0, "SM ATTN seqNum %d blkSize %d iAlloc 0x%x p 0x%x Ln %d"
778 , seqNum, blkSize, aPCContainer->iAllocationPtr, p, __LINE__));
792 bool oRet = iOutOfOrderBlocks.Insert(aDeallocPtr, seqNum);
797 PVMF_SOCKALLOC_LOG_OUT_OF_ORDER_DEALLOC((0, "PVMFSMSharedBufferAllocWithReSize::DeallocateFromParentChunk - OOO Dealloc SeqNum=%d, Size=%d, Ptr=0x%x, NumOOODeallocs=%d", seqNum, blkSize, p, iNumOutOfOrderDeallocs));
805 iLastDeallocatedSeqNum = (int32)(seqNum);
820 PVMF_SOCKALLOC_LOG_SEQNUM_ALLOC_DEALLOC((0, "PVMFSMSharedBufferAllocWithReSize::DeallocateFromParentChunk - Dealloc SeqNum=%d", iLastDeallocatedSeqNum));
822 "SeqNum=%d, PtrS=0x%x, PtrE=0x%x, Begin=%d, End=%d, BlockSize=%d, LastDeallocatedPtr=0x%x, Avail=%d",
823 seqNum,
832 iName.get_cstr(), seqNum, blkSize, getTotalAvailableBufferSpace(), iNumOutStandingBuffers));
938 uint32 seqNum = 0;
941 /* Get the corresponding block size & seqnum from the pointer itself */
942 oscl_memcpy(&seqNum, (OsclAny*)p, sizeof(uint32));
945 if (seqNum + 1 != iSeqCount)
947 PVMF_SOCKALLOC_LOGERROR((0, "PVMFSMSharedBufferAllocWithReSize::deallocate - ERROR seqNum %d iSeqCount %d Name=%s", seqNum, iSeqCount, iName.get_cstr()));
953 PVMF_SOCKALLOC_LOGERROR((0, "PVMFSMSharedBufferAllocWithReSize::deallocate - p 0x%x iAllocPtr 0x%x seqNum %d iSeqCount %d Name=%s",
954 p, parentChunkContainer->iAllocationPtr, seqNum, iSeqCount, iName.get_cstr()));
978 uint32 seqNum = 0;
981 /* Get the corresponding block size & seqnum from the pointer itself */
982 oscl_memcpy(&seqNum, (OsclAny*)p, sizeof(uint32));
986 PVMF_SOCKALLOC_LOGERROR((0, "PVMFSMSharedBufferAllocWithReSize::ReSizeFromParentChunk - Invalid Reclaim Size - Name=%s, ChunkID=%d, SeqNum=%d, Ptr=0x%x, BlockSize=%d, ReclaimSize=%d", iName.get_cstr(), aPCContainer->id, seqNum, p, blkSize, aBytesToReclaim));
994 if (iSeqCount > seqNum + 1)
997 PVMF_SOCKALLOC_LOGERROR((0, "Resize ERROR seq %d iSeqCount %d iJJDataSize %d", seqNum, iSeqCount, iJJDataSize));
1006 "SeqNum=%d, PtrS=0x%x, PtrE=0x%x, AllocPtr=0x%x, Begin=%d, End=%d, NewSize=%d, Avail=%d",
1007 seqNum,
1016 iName.get_cstr(), seqNum, aBytesToReclaim, getTotalAvailableBufferSpace()));