Lines Matching defs:out
1213 // WriteZ writes |data| to the deflate context |out|. WriteZ will flush as
1217 z_stream* out) {
1222 if (out->clas == kZStandardData &&
1224 out->avail_in = 0;
1225 rv = deflate(out, Z_PARTIAL_FLUSH);
1227 DCHECK_EQ(0u, out->avail_in);
1228 DCHECK_LT(0u, out->avail_out);
1231 out->next_in = reinterpret_cast<Bytef*>(const_cast<char*>(data.data()));
1232 out->avail_in = data.size();
1233 out->clas = clas;
1235 rv = deflate(out, Z_NO_FLUSH);
1237 rv = deflate(out, Z_PARTIAL_FLUSH);
1243 DCHECK_EQ(0u, out->avail_in);
1244 DCHECK_LT(0u, out->avail_out);
1247 // WriteLengthZ writes |n| as a |length|-byte, big-endian number to |out|.
1251 z_stream* out) {
1258 WriteZ(base::StringPiece(buf, length), clas, out);
1667 // Parse the setting directly out of the input without buffering.
1850 // Zero out the highest-order bit to get the parent stream id.
1889 // Parse out the last good stream id.
1896 // In SPDYv3 and up, frames also specify a status code - parse it out.
1956 // Parse out the last good stream id.
2025 // Parse out the max age, port, and pid_len.
2052 // Parse out the host length.
2383 DLOG(DFATAL) << "Priority out-of-bounds.";
2621 DLOG(DFATAL) << "Priority out-of-bounds.";
2770 // new one. Figure out whether it makes sense to keep SerializeContinuation().
2830 // Make sure the highest-order bit in the parent stream id is zeroed out.
3074 // run out of data to deliver.
3119 // Inflate will generate a Z_BUF_ERROR if it runs out of input