HomeSort by relevance Sort by last modified time
    Searched refs:RefCnt (Results 1 - 25 of 29) sorted by null

1 2

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Route.h 36 INTN RefCnt;
55 INTN RefCnt;
84 INTN RefCnt;
Ip4Route.c 46 RtEntry->RefCnt = 1;
67 ASSERT (RtEntry->RefCnt > 0);
69 if (--RtEntry->RefCnt == 0) {
106 RtCacheEntry->RefCnt = 1;
127 ASSERT (RtCacheEntry->RefCnt > 0);
129 if (--RtCacheEntry->RefCnt == 0) {
204 RtTable->RefCnt = 1;
235 ASSERT (RtTable->RefCnt > 0);
237 if (--RtTable->RefCnt > 0) {
Ip4Igmp.h 45 INTN RefCnt;
Ip4Igmp.c 59 Group->RefCnt = 1;
287 Group->RefCnt++;
302 Group->RefCnt = 1;
369 // the RefCnt then return.
371 if (--Group->RefCnt > 0) {
Ip4If.h 143 INTN RefCnt;
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.h 32 INTN RefCnt;
41 INTN RefCnt;
63 INTN RefCnt;
Ip6Route.c 71 RtEntry->RefCnt = 1;
97 ASSERT ((RtEntry != NULL) && (RtEntry->RefCnt > 0));
99 if (--RtEntry->RefCnt == 0) {
189 RtCacheEntry->RefCnt = 1;
210 ASSERT (RtCacheEntry->RefCnt > 0);
212 if (--RtCacheEntry->RefCnt == 0) {
346 RtTable->RefCnt = 1;
379 ASSERT (RtTable->RefCnt > 0);
381 if (--RtTable->RefCnt > 0) {
Ip6Mld.h 38 INTN RefCnt;
Ip6Nd.h 122 INTN RefCnt;
139 INTN RefCnt;
147 INTN RefCnt;
Ip6If.h 105 INTN RefCnt;
Ip6Mld.c 42 Entry->RefCnt = 1;
500 Group->RefCnt++;
568 // the RefCnt then return.
570 if ((Group->RefCnt > 0) && (--Group->RefCnt > 0)) {
Ip6If.c 222 Interface->RefCnt = 1;
305 ASSERT (Interface->RefCnt > 0);
312 if (--Interface->RefCnt > 0) {
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
Interpreter.h 42 unsigned RefCnt;
44 AllocaHolder() : RefCnt(0) {}
58 AllocaHolderHandle() : H(new AllocaHolder()) { H->RefCnt++; }
59 AllocaHolderHandle(const AllocaHolderHandle &AH) : H(AH.H) { H->RefCnt++; }
60 ~AllocaHolderHandle() { if (--H->RefCnt == 0) delete H; }
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Driver.c 89 if (mTcp4Timer.RefCnt == 0) {
110 mTcp4Timer.RefCnt++;
126 ASSERT (mTcp4Timer.RefCnt > 0);
128 mTcp4Timer.RefCnt--;
130 if (mTcp4Timer.RefCnt > 0) {
Tcp4Driver.h 39 INTN RefCnt; ///< Number of reference
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
NetBuffer.c 59 Nbuf->RefCnt = 1;
71 Vector->RefCnt = 1;
158 ASSERT (Vector->RefCnt > 0);
160 Vector->RefCnt--;
162 if (Vector->RefCnt > 0) {
211 ASSERT (Nbuf->RefCnt > 0);
213 Nbuf->RefCnt--;
215 if (Nbuf->RefCnt == 0) {
218 // all the sharing of Nbuf increse Vector's RefCnt by one
255 Clone->RefCnt = 1;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpDriver.h 26 INTN RefCnt;
TcpDriver.c 109 if (mTcpTimer.RefCnt == 0) {
130 mTcpTimer.RefCnt++;
145 ASSERT (mTcpTimer.RefCnt > 0);
147 mTcpTimer.RefCnt--;
149 if (mTcpTimer.RefCnt > 0) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
NetLib.h     [all...]
UdpIoLib.h 136 INTN RefCnt;
IpIoLib.h 305 INTN RefCnt;
492 IpIoAddIp(). The IP_IO_IP_INFO::RefCnt is decremented and the IP instance
493 will be dstroyed if the RefCnt is zero.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/
MnpConfig.c 158 // Increase the RefCnt.
187 ASSERT (Nbuf->RefCnt > 1);
193 if (Nbuf->RefCnt == 1) {
    [all...]
MnpImpl.h 81 INTN RefCnt;
    [all...]
MnpIo.c 341 if (RxDataWrap->Nbuf->RefCnt > 2) {
827 // Associate RxDataWrap with Nbuf and increase the RefCnt.
970 if (Nbuf->RefCnt > 2) {
972 // RefCnt > 2 indicates there is at least one receiver of this packet.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeIpIoLib/
DxeIpIoLib.c     [all...]

Completed in 2259 milliseconds

1 2