HomeSort by relevance Sort by last modified time
    Searched defs:next_id_ (Results 1 - 24 of 24) sorted by null

  /external/libchrome/base/task/
cancelable_task_tracker.h 132 TaskId next_id_; member in class:base::CancelableTaskTracker
  /external/v8/src/
value-serializer.h 161 uint32_t next_id_ = 0; member in class:v8::internal::SerializationTag
287 uint32_t next_id_ = 0; member in class:v8::internal::ValueDeserializer
  /hardware/qcom/display/msm8996/libgralloc1/
gr_buf_descriptor.h 38 BufferDescriptor() : id_(next_id_++) {}
46 id_(next_id_++) {}
55 id_(next_id_++) {}
92 static std::atomic<gralloc1_buffer_descriptor_t> next_id_; member in class:gralloc1::BufferDescriptor
gr_buf_mgr.h 126 // from next_id_ is not unique across processes. The correct way to resolve this would
131 std::atomic<uint64_t> next_id_; member in class:gralloc1::BufferManager
  /hardware/qcom/display/msm8998/libgralloc1/
gr_buf_descriptor.h 38 BufferDescriptor() : id_(next_id_++) {}
46 id_(next_id_++) {}
55 id_(next_id_++) {}
92 static std::atomic<gralloc1_buffer_descriptor_t> next_id_; member in class:gralloc1::BufferDescriptor
gr_buf_mgr.h 126 // from next_id_ is not unique across processes. The correct way to resolve this would
131 std::atomic<uint64_t> next_id_; member in class:gralloc1::BufferManager
  /hardware/qcom/display/sdm845/libgralloc1/
gr_buf_descriptor.h 39 BufferDescriptor() : id_(next_id_++) {}
47 id_(next_id_++) {}
56 id_(next_id_++) {}
93 static std::atomic<gralloc1_buffer_descriptor_t> next_id_; member in class:gralloc1::BufferDescriptor
gr_buf_mgr.h 126 // from next_id_ is not unique across processes. The correct way to resolve this would
131 std::atomic<uint64_t> next_id_; member in class:gralloc1::BufferManager
  /external/compiler-rt/lib/lsan/
lsan_common.h 80 LeakReport() : next_id_(0), leaks_(1), leaked_objects_(1) {}
93 u32 next_id_; member in class:__lsan::LeakReport
  /external/sfntly/cpp/src/sfntly/port/
refcount.h 123 object_id_ = AtomicIncrement(&next_id_);
162 static size_t next_id_; member in class:sfntly::RefCounted
169 template <typename TDerived> size_t RefCounted<TDerived>::next_id_ = 0; member in class:sfntly::RefCounted
  /external/webrtc/webrtc/base/
optional_unittest.cc 31 Logger() : id_(next_id_++), origin_(id_) { Log("default constructor"); }
32 explicit Logger(int origin) : id_(next_id_++), origin_(origin) {
35 Logger(const Logger& other) : id_(next_id_++), origin_(other.origin_) {
38 Logger(Logger&& other) : id_(next_id_++), origin_(other.origin_) {
70 Logger::next_id_ = 0; member in class:rtc::__anon38704::Logger::Logger
78 static int next_id_; member in class:rtc::__anon38704::Logger
99 int Logger::next_id_ = 0; member in class:rtc::__anon38704::Logger
physicalsocketserver.h 213 static int next_id_; member in class:rtc::SocketDispatcher
physicalsocketserver.cc 597 do { id_ = ++next_id_; } while (id_ == 0);
626 int SocketDispatcher::next_id_ = 0; member in class:rtc::SocketDispatcher
    [all...]
  /frameworks/base/media/mca/filterfw/jni/
jni_util.h 116 const int id = next_id_;
119 ++next_id_;
190 next_id_(0) { }
197 int next_id_; member in class:ObjectPool
  /external/compiler-rt/lib/msan/
msan_report.cc 153 OriginSet() : next_id_(0) {}
156 for (int i = next_id_ - 1; i >= 0; --i)
158 if (next_id_ == kMaxSize_) return OVERFLOW;
159 int id = next_id_++;
163 int size() { return next_id_; }
181 int next_id_; member in class:__msan::OriginSet
  /external/libchrome/base/
id_map.h 46 IDMap() : iteration_depth_(0), next_id_(1), check_on_null_data_(false) {
70 KeyType this_id = next_id_;
73 next_id_++;
273 KeyType next_id_; member in class:IDMap
  /external/webrtc/webrtc/libjingle/xmpp/
xmppengineimpl.cc 39 next_id_(0),
249 ss << next_id_++; local
xmppengineimpl.h 239 int next_id_; member in class:buzz::XmppEngineImpl
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_layers.h 92 static std::atomic<hwc2_layer_t> next_id_; member in class:sdm::HWCLayer
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
hwc_layers.h 101 static std::atomic<hwc2_layer_t> next_id_; member in class:sdm::HWCLayer
  /hardware/qcom/display/sdm845/sdm/libs/hwc2/
hwc_layers.h 95 static std::atomic<hwc2_layer_t> next_id_; member in class:sdm::HWCLayer
  /external/v8/src/ast/
ast-numbering.cc 21 next_id_(BailoutId::FirstUsable().ToInt()),
52 int tmp = next_id_;
53 next_id_ += n;
95 int next_id_; member in class:v8::internal::final
  /external/v8/src/profiler/
heap-snapshot-generator.h 229 return next_id_ - kObjectIdStep;
263 SnapshotObjectId next_id_; member in class:v8::internal::HeapObjectsMap
  /external/webrtc/talk/session/media/
mediasession.cc 365 next_id_(max_allowed_id) {
405 while (IsIdUsed(next_id_) && next_id_ >= min_allowed_id_) {
406 --next_id_;
408 ASSERT(next_id_ >= min_allowed_id_);
409 return next_id_;
422 int next_id_; member in class:cricket::UsedIds
    [all...]

Completed in 1906 milliseconds