Searched defs:Handle (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dhandle.h30 template<class T> class Handle;
34 // a wrap pointer. Handles are generally allocated within HandleScopes. Handle is a super-class
37 class Handle : public ValueObject { class in namespace:art
39 Handle() : reference_(nullptr) { function in class:art::Handle
42 ALWAYS_INLINE Handle(const Handle<T>& handle) : reference_(handle.reference_) { function in class:art::Handle
45 ALWAYS_INLINE Handle<T>& operator=(const Handle<T>& handle) {
50 ALWAYS_INLINE explicit Handle(StackReference<T>* reference) : reference_(reference) { function in class:art::Handle
83 explicit Handle(StackReferenc function in class:art::Handle
87 explicit Handle(const Handle<S>& handle) function in class:art::Handle
[all...]

Completed in 158 milliseconds