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();
40 * any call to ProcessState::self(). /dev/binder remains the default.
42 static sp<ProcessState> initWithDriver(const char *driver);
77 ProcessState(const char* driver);
78 ~ProcessState();
80 ProcessState(const ProcessState& o);
81 ProcessState& operator=(const 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();
40 * any call to ProcessState::self(). /dev/binder remains the default.
42 static sp<ProcessState> initWithDriver(const char *driver);
77 ProcessState(const char* driver);
78 ~ProcessState();
80 ProcessState(const ProcessState& o);
81 ProcessState& operator=(const 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 void ProcessState
357 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 116 milliseconds