Home
last modified time | relevance | path

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

/art/runtime/
Dhandle.h36 class ConstHandle {
38 ConstHandle() : reference_(nullptr) { in ConstHandle() function
41 ALWAYS_INLINE ConstHandle(const ConstHandle<T>& handle) : reference_(handle.reference_) { in ConstHandle() function
44 ALWAYS_INLINE ConstHandle<T>& operator=(const ConstHandle<T>& handle) {
49 ALWAYS_INLINE explicit ConstHandle(StackReference<T>* reference) : reference_(reference) { in ConstHandle() function
74 explicit ConstHandle(StackReference<S>* reference) in ConstHandle() function
78 explicit ConstHandle(const ConstHandle<S>& handle) in ConstHandle() function
94 template<class S> friend class ConstHandle; variable
102 class Handle : public ConstHandle<T> {
108 : ConstHandle<T>(handle.reference_) { in Handle()
[all …]