Home
last modified time | relevance | path

Searched refs:IPCThreadStateBase (Results 1 – 5 of 5) sorted by relevance

/frameworks/native/libs/binderthreadstate/
DIPCThreadStateBase.cpp34 IPCThreadStateBase::IPCThreadStateBase() { in IPCThreadStateBase() function in android::IPCThreadStateBase
38 IPCThreadStateBase* IPCThreadStateBase::self() in self()
43 IPCThreadStateBase* st = (IPCThreadStateBase*)pthread_getspecific(k); in self()
45 return new IPCThreadStateBase; in self()
63 void IPCThreadStateBase::pushCurrentState(CallState callState) { in pushCurrentState()
67 IPCThreadStateBase::CallState IPCThreadStateBase::popCurrentState() { in popCurrentState()
74 IPCThreadStateBase::CallState IPCThreadStateBase::getCurrentBinderCallState() { in getCurrentBinderCallState()
81 void IPCThreadStateBase::threadDestructor(void *st) in threadDestructor()
83 IPCThreadStateBase* const self = static_cast<IPCThreadStateBase*>(st); in threadDestructor()
DAndroid.bp24 "IPCThreadStateBase.cpp",
/frameworks/native/libs/binderthreadstate/include/binderthreadstate/
DIPCThreadStateBase.h23 class IPCThreadStateBase {
30 static IPCThreadStateBase* self();
36 IPCThreadStateBase();
/frameworks/native/libs/binder/include/binder/
DIPCThreadState.h32 class IPCThreadStateBase; variable
192 IPCThreadStateBase *mIPCThreadStateBase;
/frameworks/native/libs/binder/
DIPCThreadState.cpp814 mIPCThreadStateBase = IPCThreadStateBase::self(); in IPCThreadState()
1166 IPCThreadStateBase::CallState::BINDER); in executeCommand()
1292 … return mIPCThreadStateBase->getCurrentBinderCallState() == IPCThreadStateBase::CallState::BINDER; in isServingCall()