HomeSort by relevance Sort by last modified time
    Searched defs:ProcessState (Results 1 - 12 of 12) 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 56 // ProcessState stores information about a process, as reported by Wait.
57 type ProcessState struct {
64 func (p *ProcessState) Pid() int {
68 func (p *ProcessState) exited() bool {
72 func (p *ProcessState) success() bool {
76 func (p *ProcessState) sys() interface{} {
80 func (p *ProcessState) sysUsage() interface{} {
84 func (p *ProcessState) String() string {
exec_plan9.go 65 func (p *Process) wait() (ps *ProcessState, err error) {
77 ps = &ProcessState{
97 // ProcessState stores information about a process, as reported by Wait.
98 type ProcessState struct {
104 func (p *ProcessState) Pid() int {
108 func (p *ProcessState) exited() bool {
112 func (p *ProcessState) success() bool {
116 func (p *ProcessState) sys() interface{} {
120 func (p *ProcessState) sysUsage() interface{} {
124 func (p *ProcessState) userTime() time.Duration
    [all...]
  /prebuilts/go/linux-x86/src/os/
exec_posix.go 56 // ProcessState stores information about a process, as reported by Wait.
57 type ProcessState struct {
64 func (p *ProcessState) Pid() int {
68 func (p *ProcessState) exited() bool {
72 func (p *ProcessState) success() bool {
76 func (p *ProcessState) sys() interface{} {
80 func (p *ProcessState) sysUsage() interface{} {
84 func (p *ProcessState) String() string {
exec_plan9.go 65 func (p *Process) wait() (ps *ProcessState, err error) {
77 ps = &ProcessState{
97 // ProcessState stores information about a process, as reported by Wait.
98 type ProcessState struct {
104 func (p *ProcessState) Pid() int {
108 func (p *ProcessState) exited() bool {
112 func (p *ProcessState) success() bool {
116 func (p *ProcessState) sys() interface{} {
120 func (p *ProcessState) sysUsage() interface{} {
124 func (p *ProcessState) userTime() time.Duration
    [all...]
  /frameworks/native/include/binder/
ProcessState.h 34 class ProcessState : public virtual RefBase
37 static sp<ProcessState> self();
70 ProcessState();
71 ~ProcessState();
73 ProcessState(const ProcessState& o);
74 ProcessState& operator=(const ProcessState& o);
  /frameworks/native/libs/binder/
ProcessState.cpp 17 #define LOG_TAG "ProcessState"
21 #include <binder/ProcessState.h>
70 sp<ProcessState> ProcessState::self()
76 gProcess = new ProcessState;
80 void ProcessState::setContextObject(const sp<IBinder>& object)
85 sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& /*caller*/)
90 void ProcessState::setContextObject(const sp<IBinder>& object, const String16& name)
96 sp<IBinder> ProcessState::getContextObject(const String16& name, const sp<IBinder>& caller)
132 void ProcessState::startThreadPool(
    [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.
  /external/deqp/framework/delibs/deutil/
deProcess.c 47 } ProcessState;
51 ProcessState state;
517 } ProcessState;
521 ProcessState state;
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
AbstractRestrictBackgroundNetworkTestCase.java 239 ProcessState state = null;
256 ProcessState state = null;
273 ProcessState state = null;
    [all...]
  /frameworks/base/core/java/com/android/internal/app/procstats/
ProcessState.java 74 public final class ProcessState {
100 public static final Comparator<ProcessState> COMPARATOR = new Comparator<ProcessState>() {
102 public int compare(ProcessState lhs, ProcessState rhs) {
125 public ProcessState tmpFoundSubProc;
135 private ProcessState mCommonProcess;
164 public ProcessState(ProcessStats processStats, String pkg, int uid, int vers, String name) {
180 public ProcessState(ProcessState commonProcess, String pkg, int uid, int vers, String name
    [all...]

Completed in 304 milliseconds