HomeSort by relevance Sort by last modified time
    Searched refs:state_ (Results 176 - 200 of 344) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webrtc/webrtc/p2p/base/
faketransportcontroller.h 118 if (state_ == STATE_INIT) {
119 state_ = STATE_CONNECTING;
135 if (state_ != STATE_INIT) {
136 state_ = STATE_INIT;
138 dest_->state_ = STATE_INIT;
148 if (state_ == STATE_CONNECTING && dest) {
157 state_ = STATE_CONNECTED;
158 dest_->state_ = STATE_CONNECTED;
161 } else if (state_ == STATE_CONNECTED && !dest) {
164 state_ = STATE_CONNECTING
318 State state_ = STATE_INIT; member in class:cricket::FakeTransportChannel
    [all...]
  /system/connectivity/shill/cellular/
cellular.cc 100 state_(kStateDisabled),
233 SLOG(this, 2) << GetStateString(state_) << " -> "
235 state_ = state;
259 SLOG(this, 2) << __func__ << ": " << GetStateString(state_);
263 if (state_ != kStateDisabled && capability_->AreProxiesInitialized()) {
275 SLOG(this, 2) << __func__ << ": " << GetStateString(state_);
317 SLOG(this, 2) << __func__ << ": " << GetStateString(state_);
318 if (error.IsSuccess() && (state_ == kStateDisabled)) {
329 SLOG(this, 2) << __func__ << ": " << GetStateString(state_);
335 if (state_ != kStateDisabled
    [all...]
cellular_unittest.cc 180 device_->state_ = Cellular::kStateDisabled;
360 device_->state_ = Cellular::kStateConnected;
368 EXPECT_EQ(Cellular::kStateRegistered, device_->state_);
389 device_->state_ = Cellular::kStateConnected;
703 EXPECT_EQ(Cellular::kStateRegistered, device_->state_);
753 EXPECT_EQ(Cellular::kStateRegistered, device_->state_);
772 EXPECT_EQ(Cellular::kStateConnected, device_->state_);
790 EXPECT_EQ(Cellular::kStateLinked, device_->state_);
    [all...]
  /external/webrtc/webrtc/base/
opensslstreamadapter.cc 302 state_(SSL_NONE),
378 if (state_ != SSL_CONNECTED)
418 if (state_ != SSL_NONE)
453 ASSERT(state_ == SSL_CONNECTED);
454 if (state_ != SSL_CONNECTED)
484 ASSERT(state_ == SSL_NONE);
501 switch (state_) {
560 switch (state_) {
658 ASSERT(state_ == SSL_CLOSED || state_ == SSL_ERROR)
    [all...]
transformadapter.h 73 State state_; member in class:rtc::TransformAdapter
httpbase.cc 54 state_ = ST_LEADER;
65 if (state_ >= ST_COMPLETE) {
71 if (state_ < ST_DATA) {
93 state_ = ST_CHUNKTERM;
126 LOG_F(LS_VERBOSE) << " state: " << state_ << " line: "
130 switch (state_) {
132 state_ = ST_HEADERS;
171 state_ = chunked_ ? ST_CHUNKSIZE : ST_DATA;
184 state_ = (data_size_ == 0) ? ST_TRAILERS : ST_DATA;
196 state_ = chunked_ ? ST_CHUNKSIZE : ST_DATA
    [all...]
testutils.h 167 state_ = SS_CLOSED;
185 if ((SS_OPEN == state_) && (readable_data_.size() == len)) {
200 if ((SS_OPENING == state_) && (SS_OPEN == state)) {
205 } else if ((SS_CLOSED != state_) && (SS_CLOSED == state)) {
208 state_ = state;
218 virtual StreamState GetState() const { return state_; }
221 if (SS_CLOSED == state_) {
225 if ((SS_OPENING == state_) || (readable_data_.size() <= read_block_)) {
242 if (SS_CLOSED == state_) {
246 if (SS_OPENING == state_) {
267 StreamState state_; member in class:testing::StreamSource
    [all...]
win32socketserver.cc 230 : socket_(INVALID_SOCKET), error_(0), state_(CS_CLOSED), connect_time_(0),
262 state_ = CS_CONNECTED;
320 if (state_ != CS_CLOSED) {
351 state_ = CS_CONNECTING;
370 state_ = CS_CONNECTED;
374 state_ = CS_CONNECTING;
396 return state_;
472 state_ = CS_CONNECTING;
511 state_ = CS_CLOSED;
634 state_ = CS_CLOSED
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutex.h 56 atomic_uintptr_t state_; member in class:__tsan::Mutex
  /external/webrtc/talk/app/webrtc/
remoteaudiosource.cc 83 state_(MediaSourceInterface::kLive) {
106 return state_;
136 if (state_ != MediaSourceInterface::kLive) {
172 state_ = MediaSourceInterface::kEnded;
datachannel.cc 146 state_(kConnecting),
238 if (state_ == kClosed)
247 if (state_ != kOpen) {
384 if (state_ == kOpen && observer_) {
420 if (state_ == kClosed)
434 switch (state_) {
483 if (state_ == state) {
487 state_ = state;
491 if (state_ == kClosed) {
525 ASSERT(state_ == kOpen || state_ == kClosing)
    [all...]
  /external/webrtc/talk/session/media/
srtpfilter.cc 118 : state_(ST_INIT),
126 return state_ >= ST_ACTIVE;
166 state_ = ST_ACTIVE;
296 return ((state_ == ST_INIT) ||
297 (state_ == ST_ACTIVE) ||
298 (state_ == ST_SENTOFFER && source == CS_LOCAL) ||
299 (state_ == ST_SENTUPDATEDOFFER && source == CS_LOCAL) ||
300 (state_ == ST_RECEIVEDOFFER && source == CS_REMOTE) ||
301 (state_ == ST_RECEIVEDUPDATEDOFFER && source == CS_REMOTE));
307 if (state_ == ST_INIT)
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
xmpppump.h 55 buzz::XmppEngine::State state_; member in class:buzz::XmppPump
xmppengineimpl.h 99 virtual State GetState() { return state_; }
219 State state_; member in class:buzz::XmppEngineImpl::EnterExit
241 State state_; member in class:buzz::XmppEngineImpl
  /external/v8/src/
lookup.h 42 // Set state_ to BEFORE_PROPERTY to ensure that the next lookup will be a
50 state_(NOT_FOUND),
74 state_(NOT_FOUND),
97 state_(NOT_FOUND),
118 state_(NOT_FOUND),
168 State state() const { return state_; }
185 bool IsFound() const { return state_ != NOT_FOUND; }
189 state_ = NOT_FOUND;
198 DCHECK_EQ(TRANSITION, state_);
222 if (state_ != TRANSITION) return false
326 State state_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
pairingsession.h 128 ProtocolState state() const { return state_; }
185 ProtocolState state_; member in class:polo::pairing::PairingSession
pairingsession.cc 27 : state_(kUninitialized),
62 if (state_ != kUninitialized) {
77 if (state_ != kUninitialized) {
93 if (!IsInputDevice() || state_ != kWaitingForSecret) {
181 state_ = state;
  /art/runtime/gc/space/
region_space.h 238 state_(RegionState::kRegionStateAllocated), type_(RegionType::kRegionTypeToSpace),
244 state_(RegionState::kRegionStateFree), type_(RegionType::kRegionTypeNone),
252 return state_;
261 state_ = RegionState::kRegionStateFree;
280 bool is_free = state_ == RegionState::kRegionStateFree;
292 state_ = RegionState::kRegionStateAllocated;
299 state_ = RegionState::kRegionStateLarge;
306 state_ = RegionState::kRegionStateLargeTail;
317 return state_ == RegionState::kRegionStateAllocated;
322 bool is_large = state_ == RegionState::kRegionStateLarge
469 RegionState state_; \/\/ The region state (see RegionState). member in class:art::gc::space::FINAL::Region
    [all...]
  /external/libweave/src/commands/
command_instance.cc 80 return state_;
226 json->SetString(commands::attributes::kCommand_State, EnumToString(state_));
264 if (status == state_)
267 return ReportInvalidStateTransition(error, state_, status);
268 switch (state_) {
273 return ReportInvalidStateTransition(error, state_, status);
280 state_ = status;
  /external/opencv3/3rdparty/libwebp/dec/
idec.c 67 DecState state_; // current decoding state member in struct:WebPIDecoder
105 if (idec->state_ == STATE_PRE_VP8) {
114 assert(dec != NULL); // Must be true as idec->state_ != STATE_PRE_VP8.
269 if (idec->state_ == STATE_VP8_DATA) {
275 idec->state_ = STATE_ERROR;
282 idec->state_ = new_state;
352 idec->state_ = STATE_VP8_PARTS0;
422 idec->state_ = STATE_VP8_DATA;
473 idec->state_ = STATE_DONE;
507 idec->state_ = STATE_VP8L_DATA
    [all...]
  /external/webp/src/dec/
idec.c 66 DecState state_; // current decoding state member in struct:WebPIDecoder
96 if (idec->state_ == STATE_WEBP_HEADER) {
105 assert(dec != NULL); // Must be true as idec->state_ != STATE_WEBP_HEADER.
250 idec->state_ = STATE_DONE;
278 if (idec->state_ == STATE_VP8_DATA) {
284 idec->state_ = STATE_ERROR;
291 idec->state_ = new_state;
357 idec->state_ = STATE_VP8_PARTS0;
434 idec->state_ = STATE_VP8_DATA;
528 idec->state_ = STATE_VP8L_DATA
    [all...]
  /external/v8/src/heap/
incremental-marking.h 53 DCHECK(state_ == STOPPED || FLAG_incremental_marking);
54 return state_;
145 if (state_ == COMPLETE) {
146 state_ = MARKING;
273 State state_; member in class:v8::internal::IncrementalMarking
  /external/v8/test/cctest/compiler/
test-gap-resolver.cc 140 state_.ExecuteInParallel(moves);
148 state_.ExecuteInParallel(moves);
152 state_.ExecuteInParallel(moves);
155 InterpreterState state() const { return state_; }
159 InterpreterState state_; member in class:v8::internal::compiler::MoveInterpreter
  /frameworks/av/media/libeffects/loudness/dsp/core/
interpolator_base-inl.h 41 state_ = NULL;
46 delete [] state_;
103 state_ = NULL;
  /build/kati/
parser.cc 51 state_(ParserState::NOT_AFTER_RULE),
61 state_(ParserState::NOT_AFTER_RULE),
132 void set_state(ParserState st) { state_ = st; }
164 if (line[0] == '\t' && state_ != ParserState::NOT_AFTER_RULE) {
237 state_ = is_rule ? ParserState::AFTER_RULE : ParserState::MAYBE_AFTER_RULE;
258 state_ = ParserState::NOT_AFTER_RULE;
267 state_ = ParserState::NOT_AFTER_RULE;
278 state_ = ParserState::NOT_AFTER_RULE;
505 ParserState state_; member in class:Parser

Completed in 5380 milliseconds

1 2 3 4 5 6 78 91011>>