Home
last modified time | relevance | path

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

/aosp12/frameworks/native/include/binder/
H A DIPCThreadState.h34 using CallRestriction = ProcessState::CallRestriction;
110 void setCallRestriction(CallRestriction restriction);
111 CallRestriction getCallRestriction() const;
219 CallRestriction mCallRestriction;
H A DProcessState.h76 enum class CallRestriction { enum
86 void setCallRestriction(CallRestriction restriction);
132 CallRestriction mCallRestriction;
/aosp12/frameworks/native/libs/binder/include/binder/
H A DIPCThreadState.h34 using CallRestriction = ProcessState::CallRestriction;
110 void setCallRestriction(CallRestriction restriction);
111 CallRestriction getCallRestriction() const;
219 CallRestriction mCallRestriction;
H A DProcessState.h76 enum class CallRestriction { enum
86 void setCallRestriction(CallRestriction restriction);
132 CallRestriction mCallRestriction;
/aosp12/system/libhwbinder/include/hwbinder/
H A DProcessState.h74 enum class CallRestriction { enum
84 void setCallRestriction(CallRestriction restriction);
126 CallRestriction mCallRestriction;
H A DIPCThreadState.h157 ProcessState::CallRestriction mCallRestriction;
/aosp12/frameworks/native/libs/binder/
H A DProcessState.cpp230 void ProcessState::setCallRestriction(CallRestriction restriction) { in setCallRestriction()
290 CallRestriction originalCallRestriction = ipc->getCallRestriction(); in getStrongProxyForHandle()
291 ipc->setCallRestriction(CallRestriction::NONE); in getStrongProxyForHandle()
424 , mCallRestriction(CallRestriction::NONE) in ProcessState()
H A DIPCThreadState.cpp452 void IPCThreadState::setCallRestriction(ProcessState::CallRestriction restriction) { in setCallRestriction()
456 ProcessState::CallRestriction IPCThreadState::getCallRestriction() const { in getCallRestriction()
712 if (UNLIKELY(mCallRestriction != ProcessState::CallRestriction::NONE)) { in transact()
713 if (mCallRestriction == ProcessState::CallRestriction::ERROR_IF_NOT_ONEWAY) { in transact()
/aosp12/system/libhwbinder/
H A DProcessState.cpp199 void ProcessState::setCallRestriction(CallRestriction restriction) { in setCallRestriction()
407 , mCallRestriction(CallRestriction::NONE) in ProcessState()
H A DIPCThreadState.cpp634 if (UNLIKELY(mCallRestriction != ProcessState::CallRestriction::NONE)) { in transact()
635 if (mCallRestriction == ProcessState::CallRestriction::ERROR_IF_NOT_ONEWAY) { in transact()
/aosp12/frameworks/native/cmds/servicemanager/
H A Dmain.cpp122 ps->setCallRestriction(ProcessState::CallRestriction::FATAL_IF_NOT_ONEWAY); in main()
/aosp12/system/hwservicemanager/
H A Dservice.cpp147 ProcessState::self()->setCallRestriction(ProcessState::CallRestriction::ERROR_IF_NOT_ONEWAY); in main()