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

/system/core/include/utils/
H A DStrongPointer.h34 inline bool operator _op_ (const sp<T>& o) const { \
41 inline bool operator _op_ (const sp<U>& o) const { \
59 class sp { class in namespace:android
61 inline sp() : m_ptr(0) { } function in class:android::sp
63 sp(T* other);
64 sp(const sp<T>& other);
65 sp(sp<T>&& other);
66 template<typename U> sp(
124 sp<T>::sp(const sp<T>& other) function in class:android::sp
131 sp<T>::sp(sp<T>&& other) function in class:android::sp
137 sp<T>::sp(U* other) function in class:android::sp
144 sp<T>::sp(const sp<U>& other) function in class:android::sp
151 sp<T>::sp(sp<U>&& other) function in class:android::sp
[all...]
/system/core/libpixelflinger/codeflinger/tinyutils/
H A Dsmartpointer.h31 inline bool operator _op_ (const sp<T>& o) const { \
38 inline bool operator _op_ (const sp<U>& o) const { \
49 class sp class in namespace:android::tinyutils
52 inline sp() : m_ptr(0) { } function in class:android::tinyutils::sp
54 sp(T* other);
55 sp(const sp<T>& other);
56 template<typename U> sp(U* other);
57 template<typename U> sp(const sp<
104 sp<T>::sp(const sp<T>& other) function in class:android::tinyutils::sp
111 sp<T>::sp(U* other) : m_ptr(other) function in class:android::tinyutils::sp
117 sp<T>::sp(const sp<U>& other) function in class:android::tinyutils::sp
[all...]
/system/core/libbacktrace/
H A DUnwindCurrent.cpp97 unw_word_t sp; local
98 ret = unw_get_reg(cursor.get(), UNW_REG_SP, &sp);
108 frame->sp = static_cast<uintptr_t>(sp);
122 prev->stack_size = frame->sp - prev->sp;
H A DUnwindPtrace.cpp98 unw_word_t sp; local
99 ret = unw_get_reg(&cursor, UNW_REG_SP, &sp);
110 frame->sp = static_cast<uintptr_t>(sp);
115 prev->stack_size = frame->sp - prev->sp;
H A DBacktraceOffline.cpp158 unw_word_t sp; local
159 ret = unw_get_reg(&cursor, UNW_REG_SP, &sp);
170 frame->sp = static_cast<uintptr_t>(sp);
175 prev->stack_size = frame->sp - prev->sp;
/system/core/include/backtrace/
H A DBacktrace.h58 uintptr_t sp; // The top of the stack. member in struct:backtrace_frame_data_t
/system/core/libmemunreachable/
H A DThreadCapture.cpp230 const int sp = local
238 offsetof(struct user_pt_regs, sp) / sizeof(uintptr_t)
248 thread_info.stack = std::pair<uintptr_t, uintptr_t>(regs[sp], 0);
/system/core/debuggerd/
H A Dtombstone.cpp239 Backtrace* backtrace, log_t* log, uintptr_t* sp, size_t words, int label) {
242 size_t bytes_read = backtrace->Read(*sp, reinterpret_cast<uint8_t*>(&stack_data[0]), sizeof(word_t) * words);
253 line += android::base::StringPrintf("%" PRIPTR " %" PRIPTR, *sp, stack_data[i]);
271 *sp += sizeof(word_t);
279 if (frame->sp) {
292 word_t sp = backtrace->GetFrame(first)->sp - STACK_WORDS * sizeof(word_t); local
293 dump_stack_segment(backtrace, log, &sp, STACK_WORDS, -1);
299 if (sp != frame->sp) {
238 dump_stack_segment( Backtrace* backtrace, log_t* log, uintptr_t* sp, size_t words, int label) argument
[all...]

Completed in 138 milliseconds