Home
last modified time | relevance | path

Searched refs:pcbHash (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/
H A Dsysio_udp.c251 list = &(sysioUdpSock->pcbHash[hashIndex & (UDP_HASH_TABLE_SIZE - 1)].list); in SysioFetchPacketUdp()
316 udpSock->pcbHash = (struct SpungePcbhashbucket *)SpungeAlloc(UDP_HASH_TABLE_SIZE, in SysioCreateSocketUdp()
318 if (udpSock->pcbHash == FILLP_NULL_PTR) { in SysioCreateSocketUdp()
324 HLIST_INIT(&udpSock->pcbHash[i].list); in SysioCreateSocketUdp()
356 if (udpSock->pcbHash != FILLP_NULL_PTR) { in SysioDestroySocketUdp()
357 SpungeFree(udpSock->pcbHash, SPUNGE_ALLOC_TYPE_CALLOC); in SysioDestroySocketUdp()
358 udpSock->pcbHash = FILLP_NULL_PTR; in SysioDestroySocketUdp()
385 HlistAddTail(&udpSock->pcbHash[addrHashKey & (UDP_HASH_TABLE_SIZE - 1)].list, &pcb->hashNode); in SysioConnectUdp()
394 if (udpSock->pcbHash == FILLP_NULL_PTR) { in SysioRemovePcbUdp()
398 struct Hlist *pcbHashList = &(udpSock->pcbHash[addrHashKey & (UDP_HASH_TABLE_SIZE - 1)].list); in SysioRemovePcbUdp()
[all …]
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/
H A Dsysio.h63 struct SpungePcbhashbucket *pcbHash; /* spunge_pcb will be added when do connect or do accept */ member