Home
last modified time | relevance | path

Searched defs:scoped_refptr (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/cronet/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/memory/
H A Dscoped_refptr.h19 class scoped_refptr; variable
179 constexpr scoped_refptr(std::nullptr_t) {} in scoped_refptr() function
187 scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
195 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
201 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
205 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function
211 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function
285 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function
289 friend class scoped_refptr; variable
/aosp_15_r20/external/webrtc/api/
H A Dscoped_refptr.h76 scoped_refptr() : ptr_(nullptr) {} in scoped_refptr() function
77 scoped_refptr(std::nullptr_t) : ptr_(nullptr) {} // NOLINT(runtime/explicit) in scoped_refptr() function
79 explicit scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
84 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { in scoped_refptr() function
90 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { in scoped_refptr() function
96 scoped_refptr(scoped_refptr<T>&& r) noexcept : ptr_(r.release()) {} in scoped_refptr() function
99 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.release()) {} in scoped_refptr() function
/aosp_15_r20/external/libchrome/base/memory/
H A Dscoped_refptr.h19 class scoped_refptr; variable
174 constexpr scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
181 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
187 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
191 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function
197 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function
261 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function
265 friend class scoped_refptr; variable
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/memory/
Dscoped_refptr.h22 class scoped_refptr; variable
177 constexpr scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
184 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
190 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
194 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function
200 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function
264 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function
268 friend class scoped_refptr; variable
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/2/external/libchrome/base/memory/
Dscoped_refptr.h22 class scoped_refptr; variable
177 constexpr scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
184 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
190 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
194 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function
200 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function
264 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function
268 friend class scoped_refptr; variable
/aosp_15_r20/external/cronet/base/memory/
H A Dscoped_refptr.h21 class scoped_refptr; variable
/aosp_15_r20/external/cronet/net/http/
H A Dhttp_auth.h16 template <class T> class scoped_refptr; variable