Lines Matching refs:error_ptr
47 SBError *error_ptr
53 log->Printf ("SBHostOS::ThreadCreate (name=\"%s\", thread_function=%p, thread_arg=%p, error_ptr=%p)", name,
54 thread_function, thread_arg, error_ptr);
58 return Host::ThreadCreate (name, thread_function, thread_arg, error_ptr ? error_ptr->get() : NULL);
68 SBHostOS::ThreadCancel (lldb::thread_t thread, SBError *error_ptr)
70 return Host::ThreadCancel (thread, error_ptr ? error_ptr->get() : NULL);
74 SBHostOS::ThreadDetach (lldb::thread_t thread, SBError *error_ptr)
76 return Host::ThreadDetach (thread, error_ptr ? error_ptr->get() : NULL);
80 SBHostOS::ThreadJoin (lldb::thread_t thread, void **result, SBError *error_ptr)
82 return Host::ThreadJoin (thread, result, error_ptr ? error_ptr->get() : NULL);