/external/tcpdump/ |
print-ipfc.c | 126 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
|
print-lane.c | 72 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
|
print-sunatm.c | 69 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
|
print-symantec.c | 77 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
|
print-arcnet.c | 107 * 'h->len' is the length of the packet off the wire, and 'h->caplen' 191 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
|
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
DocumentBuilderImpl.java | 270 // Create element node and wire it correctly 286 // Create attribute node and wire it correctly 304 // Create element node and wire it correctly 313 // Create attribute node and wire it correctly
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/ |
nlm_prot.x | 139 * Over-the-wire protocol used between the network lock managers
|
/external/mdnsresponder/mDNSShared/ |
dnssd_ipc.h | 110 // Structure packing macro. If we're not using GNUC, it's not fatal. Most compilers naturally pack the on-the-wire 213 // Check that the compiler generated our on-the-wire packet format structure definitions
|
/external/protobuf/python/google/protobuf/internal/ |
unknown_fields_test.py | 145 # Create a message using the message set wire format with an unknown 158 # Parse message using the message set wire format.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.osgi.services_3.2.100.v20100503.jar | |
/external/protobuf/src/google/protobuf/ |
descriptor.h | 347 TYPE_DOUBLE = 1, // double, exactly eight bytes on the wire. 348 TYPE_FLOAT = 2, // float, exactly four bytes on the wire. 349 TYPE_INT64 = 3, // int64, varint on the wire. Negative numbers 352 TYPE_UINT64 = 4, // uint64, varint on the wire. 353 TYPE_INT32 = 5, // int32, varint on the wire. Negative numbers 356 TYPE_FIXED64 = 6, // uint64, exactly eight bytes on the wire. 357 TYPE_FIXED32 = 7, // uint32, exactly four bytes on the wire. 358 TYPE_BOOL = 8, // bool, varint on the wire. 364 TYPE_UINT32 = 13, // uint32, varint on the wire 365 TYPE_ENUM = 14, // Enum, varint on the wire [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
UnknownFieldSet.java | 208 * {@code MessageSet} wire format. 220 * {@code MessageSet} wire format. 658 * to the five "wire types" used in the protocol buffer binary format. 659 * The wire type of each field can be determined from the encoded form alone, 666 * wire types. 793 * {@code output}, using {@code MessageSet} wire format. 806 * number, using {@code MessageSet} wire format. [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
bcmdevs.h | 377 #define BFL_BTC2WIRE 0x00000001 /* old 2wire Bluetooth coexistence, OBSOLETE */ 394 /* Board's BTC 2wire is in the alternate gpios OBSLETE */ 427 #define BFL2_BTC3WIRE 0x00000080 /* Board support legacy 3 wire or 4 wire */ 428 #define BFL2_BTCLEGACY 0x00000080 /* Board support legacy 3/4 wire, to replace 456 #define BFL2_BTC3WIREONLY 0x02000000 /* standard 3 wire btc only. 4 wire not supported */ [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
UnknownFieldSetTest.java | 68 // numbers as allFieldsData except that each field is some other wire 240 // Test that fields of the wrong wire type are treated like unknown fields 265 // Test that fields of the wrong wire type are treated like unknown fields 538 // Test that fields of the wrong wire type are treated like unknown fields 562 // Test that fields of the wrong wire type are treated like unknown fields
|
/external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/ |
protobufwireadapter.cc | 18 #include "polo/wire/protobuf/protobufwireadapter.h" 28 namespace wire { namespace in namespace:polo 473 } // namespace wire
|
/external/protobuf/java/ |
README.txt | 425 when parsing from the wire. 493 and upon clear(). If parseFrom(...) reads the field from the wire, 502 field was received over the wire is irrelevant. 520 if a field has been explicitly set to its default value from the wire. 541 They are serialized over the wire based on equality to null. 550 default over the wire without paying the extra method cost of the
|
/external/protobuf/java/src/main/java/com/google/protobuf/micro/ |
CodedOutputStreamMicro.java | 259 * the wire format differs from normal fields. 272 * historical reasons, the wire format differs from normal fields. 566 * the wire format differs from normal fields. 578 * historical reasons, the wire format differs from normal fields. [all...] |
/external/libpcap/ |
dlpisubs.c | 229 * doesn't put an Ethernet header onto the wire, it puts raw 230 * DOCSIS frames out on the wire inside the low-level
|
pcap-int.h | 278 bpf_u_int32 len; /* length this packet (off wire) */ 294 bpf_u_int32 len; /* length this packet (off wire) */
|
pcap-nit.c | 325 * doesn't put an Ethernet header onto the wire, it puts raw 326 * DOCSIS frames out on the wire inside the low-level
|
/external/nanopb-c/docs/ |
reference.rst | 299 Protocol Buffers wire types. These are used with `pb_encode_tag`_. :: 436 Writing packed arrays is a little bit more involved: you need to use `pb_encode_tag` and specify `PB_WT_STRING` as the wire type. Then you need to know exactly how much data you are going to write, and use `pb_encode_varint`_ to write out the number of bytes before writing the actual data. Substreams can be used to determine the number of bytes beforehand; see `pb_encode_submessage`_ source code for an example. 440 Starts a field in the Protocol Buffers binary format: encodes the field number and the wire type of the data. :: 461 Wire type mapping is as follows: 464 LTYPEs Wire type 646 Skip a varint-length-prefixed string. This means skipping a value with wire type PB_WT_STRING. :: 660 :wire_type: Pointer to variable where to store the wire type of the field. 735 Decode the length for a field with wire type *PB_WT_STRING* and create a substream for reading the data. :: [all...] |
/external/openssh/ |
sshbuf.h | 181 * Functions to extract or store SSH wire encoded strings (u32 len || data) 208 * Functions to extract or store SSH wire encoded bignums and elliptic
|
/packages/apps/Exchange/src/com/android/exchange/eas/ |
EasLoadAttachment.java | 288 // 1. Grab what came over the wire and write it to a temp file on disk. 330 // Check that we successfully grabbed what came over the wire...
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar | |