Home | History | Annotate | Download | only in http

Lines Matching refs:next_state_

41       next_state_(STATE_NONE),
70 DCHECK_EQ(STATE_NONE, next_state_);
120 next_state_ = STATE_DONE;
121 if (next_state_ == STATE_DONE)
124 DCHECK_EQ(STATE_NONE, next_state_);
125 next_state_ = STATE_GENERATE_AUTH_TOKEN;
139 next_state_ = STATE_NONE;
144 return next_state_ == STATE_DONE && transport_->socket()->IsConnected();
148 return next_state_ == STATE_DONE &&
215 if (next_state_ != STATE_DONE) {
234 DCHECK_EQ(STATE_DONE, next_state_);
264 next_state_ = STATE_DRAIN_BODY;
278 next_state_ = STATE_GENERATE_AUTH_TOKEN;
283 next_state_ = STATE_TCP_RESTART;
316 DCHECK_NE(STATE_NONE, next_state_);
317 DCHECK_NE(STATE_DONE, next_state_);
324 DCHECK_NE(next_state_, STATE_NONE);
325 DCHECK_NE(next_state_, STATE_DONE);
328 State state = next_state_;
329 next_state_ = STATE_NONE;
381 } while (rv != ERR_IO_PENDING && next_state_ != STATE_NONE &&
382 next_state_ != STATE_DONE);
387 next_state_ = STATE_GENERATE_AUTH_TOKEN_COMPLETE;
394 next_state_ = STATE_SEND_REQUEST;
399 next_state_ = STATE_SEND_REQUEST_COMPLETE;
429 next_state_ = STATE_READ_HEADERS;
434 next_state_ = STATE_READ_HEADERS_COMPLETE;
456 next_state_ = STATE_DONE;
507 next_state_ = STATE_DRAIN_BODY_COMPLETE;
520 next_state_ = STATE_DRAIN_BODY;
525 next_state_ = STATE_TCP_RESTART_COMPLETE;
534 next_state_ = STATE_GENERATE_AUTH_TOKEN;