Home
last modified time | relevance | path

Searched refs:states_ (Results 1 – 2 of 2) sorted by relevance

/system/iorap/src/perfetto/
Dperfetto_consumer.cc154 std::map<Handle, HandleDescription> states_; member
205 bool inserted = states_.insert({handle, handle_desc}).second; in Create()
218 auto it = states_.find(handle); in StartTracing()
219 if (it == states_.end()) { in StartTracing()
245 auto it = states_.find(handle); in ReadTrace()
246 if (it == states_.end()) { in ReadTrace()
271 auto it = states_.find(handle); in TryDestroy()
272 if (it == states_.end()) { in TryDestroy()
289 states_.erase(it); in TryDestroy()
304 auto it = states_.find(handle); in GetOrInferHandleDescription()
[all …]
/system/bt/common/
Dstate_machine.h108 for (auto& kv : states_) delete kv.second; in ~StateMachine()
166 auto it = states_.find(dest_state_id); in TransitionTo()
168 CHECK(it != states_.end()) << "Unknown State ID: " << dest_state_id; in TransitionTo()
195 states_.insert(std::make_pair(state->StateId(), state)); in AddState()
209 std::map<int, State*> states_; variable