HomeSort by relevance Sort by last modified time
    Searched refs:hdrLen (Results 1 - 3 of 3) 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 157 size_t hdrLen;
159 hdrLen = sizeof(android_log_event_string_t);
161 hdrLen = 1 + sizeof(tag);
164 buffer = static_cast<char *>(calloc(1, hdrLen + len + 1));
171 size_t retval = hdrLen + len;
184 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;

Completed in 205 milliseconds