Home | History | Annotate | Download | only in libmemunreachable

Lines Matching refs:ThreadCaptureImpl

72 class ThreadCaptureImpl {
74 ThreadCaptureImpl(pid_t pid, Allocator<ThreadCaptureImpl>& allocator);
75 ~ThreadCaptureImpl() {}
90 Allocator<ThreadCaptureImpl> allocator_;
95 ThreadCaptureImpl::ThreadCaptureImpl(pid_t pid, Allocator<ThreadCaptureImpl>& allocator) :
99 bool ThreadCaptureImpl::ListThreads(TidList& tids) {
149 bool ThreadCaptureImpl::CaptureThreads() {
177 void ThreadCaptureImpl::PtraceDetach(pid_t tid, unsigned int signal) {
187 int ThreadCaptureImpl::PtraceAttach(pid_t tid) {
212 bool ThreadCaptureImpl::PtraceThreadInfo(pid_t tid, ThreadInfo& thread_info) {
253 int ThreadCaptureImpl::CaptureThread(pid_t tid) {
301 bool ThreadCaptureImpl::ReleaseThread(pid_t tid) {
309 bool ThreadCaptureImpl::ReleaseThread(pid_t tid, unsigned int signal) {
314 bool ThreadCaptureImpl::ReleaseThreads() {
327 bool ThreadCaptureImpl::CapturedThreadInfo(ThreadInfoList& threads) {
341 Allocator<ThreadCaptureImpl> impl_allocator = allocator;