Home
last modified time | relevance | path

Searched refs:cur_ (Results 1 – 6 of 6) sorted by relevance

/system/security/keystore/include/keystore/
Dutils.h41 : coll_(other.coll_), cur_(other.cur_) {} in SharedNullableIterator()
43 : coll_(std::move(other.coll_)), cur_(std::move(other.cur_)) {} in SharedNullableIterator()
54 T& operator*() const { return **cur_; }
56 T* operator->() const { return &**cur_; }
59 return cur_ == other.cur_ || (is_end() && other.is_end());
67 inline bool is_end() const { return !coll_ || cur_ == coll_->end(); } in is_end()
71 ++cur_; in inc()
73 } while (cur_ != coll_->end() && !(*cur_)); in inc()
79 for (cur_ = coll_->begin(); cur_ != coll_->end() && !(*cur_); ++cur_) { in init()
85 typename CollectionType::iterator cur_; variable
/system/extras/memtrack/
Dmemtrack.cpp149 if (cur_.count(cmd_name_) == 0) { in getInformation()
150 cur_[cmd_name_] = process_info; in getInformation()
152 cur_[cmd_name_].pss_kb += process_info.pss_kb; in getInformation()
154 cur_[cmd_name_].pids.push_back(pid); in getInformation()
175 cur_.clear(); in scan()
195 for (cur_processes_t::const_iterator it = cur_.begin(); in scan()
196 it != cur_.end(); ++it) { in scan()
Dmemtrack.h114 cur_processes_t cur_; variable
/system/extras/simpleperf/
Dutils.cpp54 cur_ = nullptr; in Clear()
60 if (cur_ + size > end_) { in AllocateString()
64 cur_ = p; in AllocateString()
67 memcpy(cur_, s.data(), s.size()); in AllocateString()
68 cur_[s.size()] = '\0'; in AllocateString()
69 const char* result = cur_; in AllocateString()
70 cur_ += size; in AllocateString()
Dutils.h61 : unit_size_(unit_size), cur_(nullptr), end_(nullptr) {} in unit_size_()
71 char* cur_; variable
/system/chre/external/flatbuffers/include/flatbuffers/
Dflatbuffers.h729 cur_(nullptr),
738 cur_(cur),
749 cur_(other.cur_),
769 cur_ = other.cur_;
782 const uint8_t *data() const { return cur_; }
784 uint8_t *data() { return cur_; }
824 uint8_t *cur_;
838 cur_ = nullptr;
859 cur_(nullptr),
875 cur_(other.cur_),
[all …]