Home
last modified time | relevance | path

Searched refs:CallRestriction (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/libs/binder/include/binder/
DIPCThreadState.h34 using CallRestriction = ProcessState::CallRestriction;
132 void setCallRestriction(CallRestriction restriction);
133 CallRestriction getCallRestriction() const;
242 CallRestriction mCallRestriction;
DProcessState.h74 enum class CallRestriction { enum
84 void setCallRestriction(CallRestriction restriction);
148 CallRestriction mCallRestriction;
/frameworks/native/include/binder/
DIPCThreadState.h34 using CallRestriction = ProcessState::CallRestriction;
132 void setCallRestriction(CallRestriction restriction);
133 CallRestriction getCallRestriction() const;
242 CallRestriction mCallRestriction;
DProcessState.h74 enum class CallRestriction { enum
84 void setCallRestriction(CallRestriction restriction);
148 CallRestriction mCallRestriction;
/frameworks/native/libs/binder/
DProcessState.cpp273 void ProcessState::setCallRestriction(CallRestriction restriction) { in setCallRestriction()
328 CallRestriction originalCallRestriction = ipc->getCallRestriction(); in getStrongProxyForHandle()
329 ipc->setCallRestriction(CallRestriction::NONE); in getStrongProxyForHandle()
498 mCallRestriction(CallRestriction::NONE) { in ProcessState()
DIPCThreadState.cpp473 void IPCThreadState::setCallRestriction(ProcessState::CallRestriction restriction) { in setCallRestriction()
477 ProcessState::CallRestriction IPCThreadState::getCallRestriction() const { in getCallRestriction()
733 if (UNLIKELY(mCallRestriction != ProcessState::CallRestriction::NONE)) { in transact()
734 if (mCallRestriction == ProcessState::CallRestriction::ERROR_IF_NOT_ONEWAY) { in transact()
/frameworks/native/cmds/servicemanager/
Dmain.cpp126 ps->setCallRestriction(ProcessState::CallRestriction::FATAL_IF_NOT_ONEWAY); in main()