Searched defs:ProcessState (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/include/binder/
H A DProcessState.h34 class ProcessState : public virtual RefBase class in namespace:android
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
[all...]
/frameworks/native/libs/binder/include/binder/
H A DProcessState.h34 class ProcessState : public virtual RefBase class in namespace:android
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
[all...]
/frameworks/native/libs/binder/
H A DProcessState.cpp17 #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.");
89 gProcess = new ProcessState(driver);
93 sp<ProcessState> ProcessStat
403 ProcessState::ProcessState(const char *driver) function in class:android::ProcessState
[all...]
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessState.java74 public final class ProcessState { class
101 public static final Comparator<ProcessState> COMPARATOR = new Comparator<ProcessState>() {
103 public int compare(ProcessState lhs, ProcessState rhs) {
126 public ProcessState tmpFoundSubProc;
136 private ProcessState mCommonProcess;
165 public ProcessState(ProcessStats processStats, String pkg, int uid, int vers, String name) { method in class:ProcessState
181 public ProcessState(ProcessState commonProces method in class:ProcessState
[all...]

Completed in 2815 milliseconds