Home | History | Annotate | Download | only in spdy

Lines Matching defs:out

1176 // WriteZ writes |data| to the deflate context |out|. WriteZ will flush as
1180 z_stream* out) {
1185 if (out->clas == kZStandardData &&
1187 out->avail_in = 0;
1188 rv = deflate(out, Z_PARTIAL_FLUSH);
1190 DCHECK_EQ(0u, out->avail_in);
1191 DCHECK_LT(0u, out->avail_out);
1194 out->next_in = reinterpret_cast<Bytef*>(const_cast<char*>(data.data()));
1195 out->avail_in = data.size();
1196 out->clas = clas;
1198 rv = deflate(out, Z_NO_FLUSH);
1200 rv = deflate(out, Z_PARTIAL_FLUSH);
1206 DCHECK_EQ(0u, out->avail_in);
1207 DCHECK_LT(0u, out->avail_out);
1210 // WriteLengthZ writes |n| as a |length|-byte, big-endian number to |out|.
1214 z_stream* out) {
1221 WriteZ(base::StringPiece(buf, length), clas, out);
1623 // Parse the setting directly out of the input without buffering.
1828 // Parse out the last good stream id.
1835 // In SPDYv3 and up, frames also specify a status code - parse it out.
1898 // Parse out the last good stream id.
1969 // Parse out the max age, port, and pid_len.
1996 // Parse out the host length.
2358 DLOG(DFATAL) << "Priority out-of-bounds.";
2648 DLOG(DFATAL) << "Priority out-of-bounds.";
2799 // new one. Figure out whether it makes sense to keep SerializeContinuation().
3089 // run out of data to deliver.
3134 // Inflate will generate a Z_BUF_ERROR if it runs out of input