Searched refs:attr_length (Results 1 - 3 of 3) sorted by last modified time

/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c2506 MIN(ref->attr_length, dend - (d + ref->attr_dataoffset)));
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstun.cc98 size_t attr_length = attr->length(); local
99 if (attr_length % 4 != 0) {
100 attr_length += (4 - (attr_length % 4));
102 length_ += static_cast<uint16>(attr_length + 4);
164 uint16 attr_type, attr_length; local
167 attr_length = rtc::GetBE16(&data[current_pos + sizeof(attr_type)]);
171 if (attr_length != kStunMessageIntegritySize ||
172 current_pos + attr_length > size) {
180 current_pos += sizeof(attr_type) + sizeof(attr_length)
352 uint16 attr_type, attr_length; local
[all...]
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host.cc315 uint16 attr_type, attr_length; local
316 const int kAttrHeaderLength = sizeof(attr_type) + sizeof(attr_length);
324 attr_length = rtc::GetBE16(
330 if (length < rtp_begin + attr_length) {
335 rtp_begin += attr_length;
336 if ((attr_length % 4) != 0) {
337 rtp_begin += (4 - (attr_length % 4));
343 rtp_length = attr_length;

Completed in 420 milliseconds