OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PtracerThread
(Results
1 - 2
of
2
) sorted by null
/system/core/libmemunreachable/
PtracerThread.h
31
//
PtracerThread
is similar to std::thread, except that it creates a "thread"
35
class
PtracerThread
{
37
explicit
PtracerThread
(const std::function<int()>& func);
38
~
PtracerThread
();
46
DISALLOW_COPY_AND_ASSIGN(
PtracerThread
);
PtracerThread.cpp
34
#include "
PtracerThread
.h"
70
PtracerThread
::
PtracerThread
(const std::function<int()>& func) : child_pid_(0) {
85
PtracerThread
::~
PtracerThread
() {
92
bool
PtracerThread
::Start() {
116
int
PtracerThread
::Join() {
139
void
PtracerThread
::Kill() {
147
void
PtracerThread
::SetTracer(pid_t tracer_pid) {
151
void
PtracerThread
::ClearTracer()
[
all
...]
Completed in 149 milliseconds