Home | History | Annotate | Download | only in libhwbinder

Lines Matching defs:ProcessState

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.");
91 gProcess = new ProcessState(mmap_size);
95 void ProcessState::setContextObject(const sp<IBinder>& object)
100 sp<IBinder> ProcessState::getContextObject(const sp<IBinder>& /*caller*/)
105 void ProcessState::setContextObject(const sp<IBinder>& object, const String16& name)
111 sp<IBinder> ProcessState::getContextObject(const String16& name, const sp<IBinder>& caller)
147 void ProcessState::startThreadPool()
158 bool ProcessState::isContextManager(void) const
163 bool ProcessState::becomeContextManager(context_check_func checkFunc, void* userData)
189 ssize_t ProcessState::getKernelReferences(size_t buf_count, uintptr_t* buf) {
211 size_t ProcessState::getMmapSize() {
215 ProcessState::handle_entry* ProcessState::lookupHandleLocked(int32_t handle)
228 sp<IBinder> ProcessState::getStrongProxyForHandle(int32_t handle)
258 wp<IBinder> ProcessState::getWeakProxyForHandle(int32_t handle)
289 void ProcessState::expungeHandle(int32_t handle, IBinder* binder)
301 String8 ProcessState::makeBinderThreadName() {
309 void ProcessState::spawnPooledThread(bool isMain)
319 status_t ProcessState::setThreadPoolConfiguration(size_t maxThreads, bool callerJoinsPool) {
340 size_t ProcessState::getMaxThreads() {
344 void ProcessState::giveThreadPoolName() {
375 ProcessState::ProcessState(size_t mmap_size)
406 ProcessState::~ProcessState()