/external/quake/quake/src/QW/client/ |
notes.txt | 8 packet sender
15 lock packet
18 unlock packet
20 packet receiver
21 wake up only on packet arrival
22 identify the packet source
24 save the packet off
32 // cause packet received messages to be issued
|
/external/iproute2/include/linux/tc_act/ |
tc_mirred.h | 8 #define TCA_EGRESS_REDIR 1 /* packet redirect to EGRESS*/ 9 #define TCA_EGRESS_MIRROR 2 /* mirror packet to EGRESS */ 10 #define TCA_INGRESS_REDIR 3 /* packet redirect to INGRESS*/ 11 #define TCA_INGRESS_MIRROR 4 /* mirror packet to INGRESS */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_act/ |
tc_mirred.h | 7 #define TCA_EGRESS_REDIR 1 /* packet redirect to EGRESS*/ 8 #define TCA_EGRESS_MIRROR 2 /* mirror packet to EGRESS */ 9 #define TCA_INGRESS_REDIR 3 /* packet redirect to INGRESS*/ 10 #define TCA_INGRESS_MIRROR 4 /* mirror packet to INGRESS */
|
/frameworks/base/media/mtp/ |
MtpObjectInfo.cpp | 58 void MtpObjectInfo::read(MtpDataPacket& packet) { 62 mStorageID = packet.getUInt32(); 63 mFormat = packet.getUInt16(); 64 mProtectionStatus = packet.getUInt16(); 65 mCompressedSize = packet.getUInt32(); 66 mThumbFormat = packet.getUInt16(); 67 mThumbCompressedSize = packet.getUInt32(); 68 mThumbPixWidth = packet.getUInt32(); 69 mThumbPixHeight = packet.getUInt32(); 70 mImagePixWidth = packet.getUInt32() [all...] |
MtpDeviceInfo.cpp | 62 void MtpDeviceInfo::read(MtpDataPacket& packet) { 66 mStandardVersion = packet.getUInt16(); 67 mVendorExtensionID = packet.getUInt32(); 68 mVendorExtensionVersion = packet.getUInt16(); 70 packet.getString(string); 73 mFunctionalCode = packet.getUInt16(); 74 mOperations = packet.getAUInt16(); 75 mEvents = packet.getAUInt16(); 76 mDeviceProperties = packet.getAUInt16(); 77 mCaptureFormats = packet.getAUInt16() [all...] |
MtpStorageInfo.cpp | 46 void MtpStorageInfo::read(MtpDataPacket& packet) { 50 mStorageType = packet.getUInt16(); 51 mFileSystemType = packet.getUInt16(); 52 mAccessCapability = packet.getUInt16(); 53 mMaxCapacity = packet.getUInt64(); 54 mFreeSpaceBytes = packet.getUInt64(); 55 mFreeSpaceObjects = packet.getUInt32(); 57 packet.getString(string); 59 packet.getString(string);
|
/external/llvm/test/CodeGen/Generic/ |
2003-05-30-BadPreselectPhi.ll | 5 ;; Function: struct task *handlerfn(struct packet *pkt) 12 %struct..packet = type { %struct..packet*, i32, i32, i32, [4 x i8] } 13 %struct..task = type { %struct..task*, i32, i32, %struct..packet*, i32, %struct..task* (%struct..packet*)*, i32, i32 } 17 define %struct..task* @handlerfn(%struct..packet* %pkt.2) { 19 %tmp.1 = icmp ne %struct..packet* %pkt.2, null ; <i1> [#uses=1] 27 %tmp.12 = bitcast i32* %mem_tmp.0 to %struct..packet* ; <%struct..packet*> [#uses=1] 28 call void @append( %struct..packet* %pkt.2, %struct..packet* %tmp.12 [all...] |
/external/iptables/extensions/ |
libxt_pkttype.man | 1 This module matches the link-layer packet type.
|
libxt_length.man | 1 This module matches the length of the layer-3 payload (e.g. layer-4 packet) 2 of a packet against a specific value
|
libxt_CONNSECMARK.man | 12 If the packet has a security marking, copy it to the connection 16 If the packet does not have a security marking, and the connection 17 does, copy the security marking from the connection to the packet.
|
libxt_socket.man | 2 packet.
|
libipt_MIRROR.man | 2 and destination fields in the IP header and retransmits the packet. 11 seen by any packet filtering chains, connection tracking or NAT, to
|
libxt_DSCP.man | 2 header of the IPv4 packet. As this manipulates a packet, it can only
|
libxt_state.man | 2 the connection tracking state for this packet. 8 meaning that the packet could not be identified for some reason which 12 meaning that the packet is associated with a connection which has seen 15 meaning that the packet has started a new connection, or otherwise 19 meaning that the packet is starting a new connection, but is 23 meaning that the packet is not tracked at all, which happens if you use
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ip_queue.h | 22 unsigned long packet_id; /* ID of queued packet */ 24 long timestamp_sec; /* Packet arrival time (seconds) */ 25 long timestamp_usec; /* Packet arrvial time (+useconds) */ 33 size_t data_len; /* Length of packet data */ 34 unsigned char payload[0]; /* Optional packet data */ 40 size_t range; /* Optional range of packet requested */ 45 unsigned long id; /* Packet ID for this verdict */ 47 unsigned char payload[0]; /* Optional replacement packet */ 57 /* Packet delivery modes */ 61 IPQ_COPY_PACKET /* Copy metadata + packet (range) * [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_ipv4/ |
ip_queue.h | 14 unsigned long packet_id; /* ID of queued packet */ 16 long timestamp_sec; /* Packet arrival time (seconds) */ 17 long timestamp_usec; /* Packet arrvial time (+useconds) */ 25 size_t data_len; /* Length of packet data */ 26 unsigned char payload[0]; /* Optional packet data */ 32 size_t range; /* Optional range of packet requested */ 37 unsigned long id; /* Packet ID for this verdict */ 39 unsigned char payload[0]; /* Optional replacement packet */ 49 /* Packet delivery modes */ 53 IPQ_COPY_PACKET /* Copy metadata + packet (range) * [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
OldAndroidDatagramTest.java | 46 DatagramPacket packet; field in class:OldAndroidDatagramTest.Reflector 56 packet.setLength(buffer.length); 57 socket.receive(packet); 58 String s = stringFromPacket(packet); 59 // System.out.println(s + " (from " + packet.getAddress() + ":" + packet.getPort() + ")"); 67 stringToPacket(s.toUpperCase(), packet); local 69 packet.setAddress(InetAddress.getLocalHost()); 70 packet.setPort(2345); 72 socket.send(packet); 128 DatagramPacket packet = new DatagramPacket(buffer, buffer.length); local [all...] |
/external/qemu/ |
shaper.c | 46 * we're going to implement a scheme where, when we send a packet of 47 * 'count' bytes, no other packet will go through in the same direction for 48 * at least 'count*8/MAX_RATE' seconds. any successive packet that is "sent" 69 QueuedPacket packet; local 70 size_t packet_size = sizeof(*packet); 75 packet = qemu_malloc(packet_size); 76 packet->next = NULL; 77 packet->expiration = 0; 78 packet->size = (size_t)size; 79 packet->opaque = opaque 120 QueuedPacket packet = shaper->packets; local 137 QueuedPacket packet; local 188 QueuedPacket packet = shaper->packets; local 229 QueuedPacket packet; local 297 QueuedPacket packet; member in struct:SessionRec_ 433 QueuedPacket packet = session->packet; local 488 QueuedPacket packet = session->packet; local [all...] |
tcpdump.h | 17 /* global flag, set to 1 when packet captupe is active */ 20 /* start a new packet capture, close the current one if any. 24 /* stop the current packet capture, if any */ 27 /* send an ethernet packet to the packet capture file, if any */ 32 * due to global and packet headers.
|
/system/core/libnetutils/ |
packet.c | 164 } packet; local 170 nread = read(s, &packet, sizeof(packet)); 175 * The raw packet interface gives us all packets received by the 182 LOGD("Packet is too small (%d) to be a UDP datagram", nread); 184 } else if (packet.ip.version != IPVERSION || packet.ip.ihl != (sizeof(packet.ip) >> 2)) { 186 LOGD("Not a valid IP packet"); 188 } else if (nread < ntohs(packet.ip.tot_len)) [all...] |
Android.mk | 9 packet.c
|
/external/speex/include/speex/ |
speex_jitter.h | 56 /** Definition of an incoming packet */ 59 /** Definition of an incoming packet */ 61 char *data; /**< Data bytes contained in the packet */ 62 spx_uint32_t len; /**< Length of the packet in bytes */ 63 spx_uint32_t timestamp; /**< Timestamp for the packet */ 64 spx_uint32_t span; /**< Time covered by the packet (same units as timestamp) */ 69 /** Packet has been retrieved */ 71 /** Packet is lost or is late */ 73 /** A "fake" packet is meant to be inserted here to increase buffering */ 92 /** Assign a function to destroy unused packet. When setting that, the jitter [all...] |
/external/iproute2/include/linux/ |
ip6_tunnel.h | 9 /* don't add encapsulation limit if one isn't present in inner packet */ 11 /* copy the traffic class field from the inner packet */ 13 /* copy the flowlabel from the inner packet */ 17 /* copy DSCP from the outer packet */
|
/external/tcpdump/ |
stime.awk | 5 # where <send time> is the time packet was sent (in seconds with 6 # zero at time of first packet) and <seq no> is the tcp sequence 7 # number of the packet divided by 1024 (i.e., Kbytes sent). 16 # get packet sequence number
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
ip6_tunnel.h | 11 /* don't add encapsulation limit if one isn't present in inner packet */ 13 /* copy the traffic class field from the inner packet */ 15 /* copy the flowlabel from the inner packet */ 19 /* copy DSCP from the outer packet */
|