OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hdrLen
(Results
1 - 4
of
4
) sorted by null
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
PacketReflector.java
91
private void processTcpPacket(byte[] buf, int version, int len, int
hdrLen
) {
92
if (len <
hdrLen
+ TCP_HEADER_LENGTH) {
105
private void processUdpPacket(byte[] buf, int version, int len, int
hdrLen
) {
106
if (len <
hdrLen
+ UDP_HEADER_LENGTH) {
114
int portOffset =
hdrLen
;
121
private void processIcmpPacket(byte[] buf, int version, int len, int
hdrLen
) {
122
if (len <
hdrLen
+ ICMP_HEADER_LENGTH) {
126
byte type = buf[
hdrLen
];
151
request[
hdrLen
] = buf[
hdrLen
]; // Type
[
all
...]
/system/core/logd/
LogBufferElement.cpp
163
size_t
hdrLen
;
167
hdrLen
= sizeof(android_log_event_string_t);
169
hdrLen
= 1 + sizeof(tag);
172
buffer = static_cast<char *>(calloc(1,
hdrLen
+ len + 1));
179
size_t retval =
hdrLen
+ len;
193
snprintf(buffer +
hdrLen
, len + 1, format_uid, mUid, name ? name : "",
/external/svox/pico/lib/
picokfst.c
59
picoos_int32
hdrLen
; /* length of file header */
162
kfst->
hdrLen
= FileHdrSize;
163
curpos = kfst->
hdrLen
;
170
kfst->alphaHashTabPos = kfst->
hdrLen
+ offs;
173
kfst->transTabPos = kfst->
hdrLen
+ offs;
175
kfst->inEpsStateTabPos = kfst->
hdrLen
+ offs;
177
kfst->accStateTabPos = kfst->
hdrLen
+ offs;
/cts/hostsidetests/devicepolicy/app/VpnApp/src/com/android/cts/vpnfirewall/
PingReflector.java
63
private void processPacket(byte[] buf, int version, int len, int
hdrLen
) throws IOException {
Completed in 232 milliseconds