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.");
95 gProcess = new ProcessState(driver);
99 sp<ProcessState> ProcessStat
409 ProcessState::ProcessState(const char *driver) function in class:android::ProcessState
[all...]
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessState.java68 public final class ProcessState { class
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) { method in class:ProcessState
175 public ProcessState(ProcessState commonProces method in class:ProcessState
[all...]

Completed in 90 milliseconds