Lines Matching refs:error_ptr
99 void *thread_arg, SBError *error_ptr) { in ThreadCreate() argument
108 static_cast<void *>(thread_arg), static_cast<void *>(error_ptr)); in ThreadCreate()
113 name, thread_function, thread_arg, error_ptr ? error_ptr->get() : NULL)); in ThreadCreate()
119 bool SBHostOS::ThreadCancel(lldb::thread_t thread, SBError *error_ptr) { in ThreadCancel() argument
123 if (error_ptr) in ThreadCancel()
124 error_ptr->SetError(error); in ThreadCancel()
129 bool SBHostOS::ThreadDetach(lldb::thread_t thread, SBError *error_ptr) { in ThreadDetach() argument
132 if (error_ptr) in ThreadDetach()
133 error_ptr->SetErrorString("ThreadDetach is not supported on this platform"); in ThreadDetach()
137 if (error_ptr) in ThreadDetach()
138 error_ptr->SetError(error); in ThreadDetach()
145 SBError *error_ptr) { in ThreadJoin() argument
149 if (error_ptr) in ThreadJoin()
150 error_ptr->SetError(error); in ThreadJoin()