Home | History | Annotate | Download | only in http

Lines Matching refs:next_state_

39       next_state_(STATE_NONE),
66 DCHECK_EQ(STATE_NONE, next_state_);
109 next_state_ = STATE_DONE;
110 if (next_state_ == STATE_DONE)
113 DCHECK_EQ(STATE_NONE, next_state_);
114 next_state_ = STATE_GENERATE_AUTH_TOKEN;
128 next_state_ = STATE_NONE;
133 return next_state_ == STATE_DONE && transport_->socket()->IsConnected();
137 return next_state_ == STATE_DONE &&
180 if (next_state_ != STATE_DONE) {
199 DCHECK_EQ(STATE_DONE, next_state_);
229 next_state_ = STATE_DRAIN_BODY;
243 next_state_ = STATE_GENERATE_AUTH_TOKEN;
248 next_state_ = STATE_TCP_RESTART;
291 DCHECK_NE(STATE_NONE, next_state_);
292 DCHECK_NE(STATE_DONE, next_state_);
299 DCHECK_NE(next_state_, STATE_NONE);
300 DCHECK_NE(next_state_, STATE_DONE);
303 State state = next_state_;
304 next_state_ = STATE_NONE;
356 } while (rv != ERR_IO_PENDING && next_state_ != STATE_NONE &&
357 next_state_ != STATE_DONE);
362 next_state_ = STATE_GENERATE_AUTH_TOKEN_COMPLETE;
369 next_state_ = STATE_SEND_REQUEST;
374 next_state_ = STATE_SEND_REQUEST_COMPLETE;
404 next_state_ = STATE_READ_HEADERS;
409 next_state_ = STATE_READ_HEADERS_COMPLETE;
433 next_state_ = STATE_DONE;
466 next_state_ = STATE_DRAIN_BODY_COMPLETE;
479 next_state_ = STATE_DRAIN_BODY;
488 next_state_ = STATE_TCP_RESTART_COMPLETE;
502 next_state_ = STATE_GENERATE_AUTH_TOKEN;