Home | History | Annotate | Download | only in rtcp

Lines Matching refs:start_size

66   size_t start_size = packet->size();
67 if (start_size + 52 > kMaxIpPacketSize) {
73 packet->resize(start_size + 28);
76 reinterpret_cast<char*>(&((*packet)[start_size])), 28);
90 size_t start_size = packet->size();
91 if (start_size + 12 + c_name_.length() > kMaxIpPacketSize) {
97 packet->resize(start_size + 10);
100 reinterpret_cast<char*>(&((*packet)[start_size])), 10);
106 uint32 sdes_length_position = static_cast<uint32>(start_size) + 3;
136 size_t start_size = packet->size();
137 if (start_size + 8 > kMaxIpPacketSize) {
142 packet->resize(start_size + 8);
145 reinterpret_cast<char*>(&((*packet)[start_size])), 8);
172 size_t start_size = packet->size();
173 if (start_size + 24 > kMaxIpPacketSize) {
178 packet->resize(start_size + 24);
181 reinterpret_cast<char*>(&((*packet)[start_size])), 24);