Home
last modified time | relevance | path

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

/system/core/libpixelflinger/codeflinger/tinyutils/
Dsmartpointer.h32 return m_ptr _op_ o.m_ptr; \
35 return m_ptr _op_ o; \
39 return m_ptr _op_ o.m_ptr; \
43 return m_ptr _op_ o; \
52 inline sp() : m_ptr(0) { } in sp()
74 inline T& operator* () const { return *m_ptr; }
75 inline T* operator-> () const { return m_ptr; }
76 inline T* get() const { return m_ptr; } in get()
90 T* m_ptr; variable
98 : m_ptr(other) in sp()
[all …]
/system/core/include/utils/
DStrongPointer.h35 return m_ptr _op_ o.m_ptr; \
38 return m_ptr _op_ o; \
42 return m_ptr _op_ o.m_ptr; \
46 return m_ptr _op_ o; \
49 return m_ptr _op_ o.m_ptr; \
53 return m_ptr _op_ o.m_ptr; \
61 inline sp() : m_ptr(0) { } in sp()
87 inline T& operator* () const { return *m_ptr; }
88 inline T* operator-> () const { return m_ptr; }
89 inline T* get() const { return m_ptr; } in get()
[all …]
DRefBase.h40 return m_ptr _op_ o.m_ptr; \
43 return m_ptr _op_ o; \
47 return m_ptr _op_ o.m_ptr; \
51 return m_ptr _op_ o; \
221 inline wp() : m_ptr(0) { } in wp()
256 inline T* unsafe_get() const { return m_ptr; } in unsafe_get()
268 return (m_ptr == o.m_ptr) && (m_refs == o.m_refs);
272 return m_ptr == o.m_ptr;
276 return (m_ptr == o.m_ptr) ? (m_refs > o.m_refs) : (m_ptr > o.m_ptr);
280 return (m_ptr == o.m_ptr) ? (m_refs > o.m_refs) : (m_ptr > o.m_ptr);
[all …]