/external/iputils/ |
rdisc.c | 100 static int sendbcast(int s, char *packet, int packetlen); 101 static int sendmcast(int s, char *packet, int packetlen, struct sockaddr_in *); 102 static int sendbcastif(int s, char *packet, int packetlen, struct interface *ifp); 103 static int sendmcastif(int s, char *packet, int packetlen, struct sockaddr_in *sin, struct interface *ifp); 544 int packetlen, i; local 554 packetlen = 8; 557 icp->checksum = in_cksum( (u_short *)icp, packetlen ); 560 i = sendbcast(s, (char *)outpack, packetlen); 562 i = sendmcast(s, (char *)outpack, packetlen, sin); 564 i = sendto( s, (char *)outpack, packetlen, 0 589 int packetlen, i, cc; local [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/ |
NETEQTEST_DummyRTPpacket.cc | 32 int packetLen; 49 packetLen = ntohs(plen); 80 return packetLen; 139 return packetLen;
|
NETEQTEST_RTPpacket.cc | 108 int packetLen; 125 packetLen = ntohs(plen); 166 return(packetLen);
|
/external/android-clat/ |
clatd.h | 25 #define PACKETLEN (MAXMTU+sizeof(struct tun_pi))
|
clatd.c | 128 // three words of the IPv6 address, and if they all match, return PACKETLEN (accept packet). 137 BPF_STMT(BPF_RET | BPF_K, PACKETLEN), 328 uint8_t buf[PACKETLEN], *packet; 331 readlen = read(active_fd, buf, PACKETLEN);
|
dump.c | 227 char output[PACKETLEN*3+2]; 231 for(i = 0; i < len && i < PACKETLEN; i++) {
|
/frameworks/av/cmds/screenrecord/ |
FrameOutput.cpp | 160 size_t packetLen = headerLen - sizeof(uint32_t) + rgbDataLen; 162 setValueLE(&header[0], packetLen);
|
/external/mdnsresponder/mDNSPosix/ |
mDNSPosix.c | 234 ssize_t packetLen; 249 packetLen = recvfrom_flags(skt, &packet, sizeof(packet), &flags, (struct sockaddr *) &from, &fromLen, &packetInfo, &ttl); 251 if (packetLen >= 0) 292 if (mDNSAddrIsDNSMulticast(&destAddr)) packetLen = -1; 304 packetLen = -1; 324 if (packetLen >= 0) 325 mDNSCoreReceive(m, &packet, (mDNSu8 *)&packet + packetLen, [all...] |
/sdk/emulator/opengl/host/tools/emugen/ |
ApiGen.cpp | 780 \t\tunsigned int packetLen = *(int *)(ptr + 4);\n\ 781 \t\tif (len - pos < packetLen) return pos; \n\ [all...] |