OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadCapture
(Results
1 - 5
of
5
) sorted by null
/system/core/libmemunreachable/
ThreadCapture.h
35
class
ThreadCapture
{
37
ThreadCapture
(pid_t pid, Allocator<
ThreadCapture
> allocator);
38
~
ThreadCapture
();
48
ThreadCapture
(const
ThreadCapture
&) = delete;
49
void operator=(const
ThreadCapture
&) = delete;
ThreadCapture.cpp
17
#include "
ThreadCapture
.h"
340
ThreadCapture
::
ThreadCapture
(pid_t pid, Allocator<
ThreadCapture
> allocator) {
345
ThreadCapture
::~
ThreadCapture
() {}
347
bool
ThreadCapture
::ListThreads(TidList& tids) {
351
bool
ThreadCapture
::CaptureThreads() {
355
bool
ThreadCapture
::ReleaseThreads() {
359
bool
ThreadCapture
::ReleaseThread(pid_t tid)
[
all
...]
Android.mk
12
ThreadCapture
.cpp \
MemUnreachable.cpp
38
#include "
ThreadCapture
.h"
281
ThreadCapture
thread_capture(parent_pid, heap);
/system/core/libmemunreachable/tests/
ThreadCapture_test.cpp
17
#include "
ThreadCapture
.h"
105
ThreadCapture
thread_capture{getpid(), heap};
129
ThreadCapture
thread_capture(getpid(), heap);
155
ThreadCapture
thread_capture(getpid(), heap);
229
ThreadCapture
thread_capture(child, heap);
264
ThreadCapture
thread_capture(ret, heap);
322
ThreadCapture
thread_capture(child, heap);
Completed in 324 milliseconds