Lines Matching refs:error_ptr
106 void *thread_arg, SBError *error_ptr) { in ThreadCreate() argument
109 thread_function, thread_arg, error_ptr); in ThreadCreate()
113 if (error_ptr) in ThreadCreate()
114 error_ptr->SetError(Status(thread.takeError())); in ThreadCreate()
128 bool SBHostOS::ThreadCancel(lldb::thread_t thread, SBError *error_ptr) { in ThreadCancel() argument
131 error_ptr); in ThreadCancel()
136 if (error_ptr) in ThreadCancel()
137 error_ptr->SetError(error); in ThreadCancel()
142 bool SBHostOS::ThreadDetach(lldb::thread_t thread, SBError *error_ptr) { in ThreadDetach() argument
145 error_ptr); in ThreadDetach()
149 if (error_ptr) in ThreadDetach()
150 error_ptr->SetErrorString("ThreadDetach is not supported on this platform"); in ThreadDetach()
154 if (error_ptr) in ThreadDetach()
155 error_ptr->SetError(error); in ThreadDetach()
162 SBError *error_ptr) { in ThreadJoin() argument
166 result, error_ptr); in ThreadJoin()
171 if (error_ptr) in ThreadJoin()
172 error_ptr->SetError(error); in ThreadJoin()