HomeSort by relevance Sort by last modified time
    Searched defs:ProcessState (Results 1 - 17 of 17) sorted by null

  /external/google-breakpad/src/processor/
process_state.cc 42 ProcessState::~ProcessState() {
46 void ProcessState::Clear() {
  /art/runtime/
process_state.h 24 enum ProcessState {
29 std::ostream& operator<<(std::ostream& os, const ProcessState& process_state);
  /prebuilts/go/darwin-x86/src/os/
exec_posix.go 57 // ProcessState stores information about a process, as reported by Wait.
58 type ProcessState struct {
65 func (p *ProcessState) Pid() int {
69 func (p *ProcessState) exited() bool {
73 func (p *ProcessState) success() bool {
77 func (p *ProcessState) sys() interface{} {
81 func (p *ProcessState) sysUsage() interface{} {
85 func (p *ProcessState) String() string {
exec_plan9.go 66 func (p *Process) wait() (ps *ProcessState, err error) {
78 ps = &ProcessState{
98 // ProcessState stores information about a process, as reported by Wait.
99 type ProcessState struct {
105 func (p *ProcessState) Pid() int {
109 func (p *ProcessState) exited() bool {
113 func (p *ProcessState) success() bool {
117 func (p *ProcessState) sys() interface{} {
121 func (p *ProcessState) sysUsage() interface{} {
125 func (p *ProcessState) userTime() time.Duration
    [all...]
  /prebuilts/go/linux-x86/src/os/
exec_posix.go 57 // ProcessState stores information about a process, as reported by Wait.
58 type ProcessState struct {
65 func (p *ProcessState) Pid() int {
69 func (p *ProcessState) exited() bool {
73 func (p *ProcessState) success() bool {
77 func (p *ProcessState) sys() interface{} {
81 func (p *ProcessState) sysUsage() interface{} {
85 func (p *ProcessState) String() string {
exec_plan9.go 66 func (p *Process) wait() (ps *ProcessState, err error) {
78 ps = &ProcessState{
98 // ProcessState stores information about a process, as reported by Wait.
99 type ProcessState struct {
105 func (p *ProcessState) Pid() int {
109 func (p *ProcessState) exited() bool {
113 func (p *ProcessState) success() bool {
117 func (p *ProcessState) sys() interface{} {
121 func (p *ProcessState) sysUsage() interface{} {
125 func (p *ProcessState) userTime() time.Duration
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
process_state.cc 69 ProcessState* ProcessState::instance_ = nullptr;
71 /*static*/ ProcessState* ProcessState::singleton() {
73 instance_ = new ProcessState;
79 ProcessState::ProcessState() : gpu_device_enabled_(false) {
84 ProcessState::~ProcessState() {
91 string ProcessState::MemDesc::DebugString()
    [all...]
process_state.h 39 class ProcessState {
41 static ProcessState* singleton();
115 ProcessState();
117 static ProcessState* instance_;
127 virtual ~ProcessState();
140 RecordingAllocator(ProcessState::MDMap* mm, Allocator* a,
141 ProcessState::MemDesc md, mutex* mu)
162 ProcessState::MDMap* mm_; // not owned
164 ProcessState::MemDesc md_;
  /frameworks/native/libs/binder/include/binder/
ProcessState.h 34 class ProcessState : public virtual RefBase
37 static sp<ProcessState> self();
38 static sp<ProcessState> selfOrNull();
41 * any call to ProcessState::self(). /dev/binder remains the default.
43 static sp<ProcessState> initWithDriver(const char *driver);
80 ProcessState(const char* driver);
81 ~ProcessState();
83 ProcessState(const ProcessState& o);
84 ProcessState& operator=(const ProcessState& o)
    [all...]
  /system/core/libprocinfo/include/procinfo/
process.h 38 enum ProcessState {
49 ProcessState state;
  /system/libhwbinder/include/hwbinder/
ProcessState.h 35 class ProcessState : public virtual RefBase
38 static sp<ProcessState> self();
39 static sp<ProcessState> selfOrNull();
41 static sp<ProcessState> initWithMmapSize(size_t mmapSize); // size in bytes
77 ProcessState(size_t mmap_size);
78 ~ProcessState();
80 ProcessState(const ProcessState& o);
81 ProcessState& operator=(const ProcessState& o)
    [all...]
  /system/libhwbinder/
ProcessState.cpp 17 #define LOG_TAG "hw-ProcessState"
19 #include <hwbinder/ProcessState.h>
68 sp<ProcessState> ProcessState::self()
74 gProcess = new ProcessState(DEFAULT_BINDER_VM_SIZE);
78 sp<ProcessState> ProcessState::selfOrNull() {
83 sp<ProcessState> ProcessState::initWithMmapSize(size_t mmap_size) {
87 "ProcessState already initialized with a different mmap size.")
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
process_state.h 90 class ProcessState {
92 ProcessState() : modules_(NULL) { Clear(); }
93 ~ProcessState();
95 // Resets the ProcessState to its default values
122 // ProcessState objects.
172 // ProcessState.
  /frameworks/native/libs/binder/
ProcessState.cpp 17 #define LOG_TAG "ProcessState"
19 #include <binder/ProcessState.h>
68 sp<ProcessState> ProcessState::self()
74 gProcess = new ProcessState("/dev/binder");
78 sp<ProcessState> ProcessState::initWithDriver(const char* driver)
87 LOG_ALWAYS_FATAL("ProcessState was already initialized.");
95 gProcess = new ProcessState(driver);
99 sp<ProcessState> ProcessState::selfOrNull(
    [all...]
  /external/deqp/framework/delibs/deutil/
deProcess.c 47 } ProcessState;
51 ProcessState state;
517 } ProcessState;
521 ProcessState state;
  /frameworks/base/core/java/com/android/internal/app/procstats/
ProcessState.java 68 public final class ProcessState {
96 public static final Comparator<ProcessState> COMPARATOR = new Comparator<ProcessState>() {
98 public int compare(ProcessState lhs, ProcessState rhs) {
121 public ProcessState tmpFoundSubProc;
131 private ProcessState mCommonProcess;
159 public ProcessState(ProcessStats processStats, String pkg, int uid, long vers, String name) {
175 public ProcessState(ProcessState commonProcess, String pkg, int uid, long vers, String name
    [all...]
  /prebuilts/misc/common/frameworks/
platformprotos-prebuilt.jar 

Completed in 119 milliseconds