Home
last modified time | relevance | path

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

/aosp12/frameworks/native/libs/binder/
H A DParcel.cpp609 const IPCThreadState* threadState = IPCThreadState::self(); in writeInterfaceToken() local
610 writeInt32(threadState->getStrictModePolicy() | STRICT_MODE_PENALTY_GATHER); in writeInterfaceToken()
612 writeInt32(threadState->shouldPropagateWorkSource() ? threadState->getCallingWorkSourceUid() in writeInterfaceToken()
653 IPCThreadState* threadState) const in enforceInterface()
655 return enforceInterface(interface.string(), interface.size(), threadState); in enforceInterface()
660 IPCThreadState* threadState) const in enforceInterface()
665 if (threadState == nullptr) { in enforceInterface()
666 threadState = IPCThreadState::self(); in enforceInterface()
673 threadState->setStrictModePolicy(0); in enforceInterface()
675 threadState->setStrictModePolicy(strictPolicy); in enforceInterface()
[all …]
/aosp12/frameworks/base/core/jni/
H A Dandroid_os_Parcel.cpp685 IPCThreadState* threadState = IPCThreadState::self(); in android_os_Parcel_enforceInterface() local
686 const int32_t oldPolicy = threadState->getStrictModePolicy(); in android_os_Parcel_enforceInterface()
689 descriptor.size(), threadState); in android_os_Parcel_enforceInterface()
691 const int32_t newPolicy = threadState->getStrictModePolicy(); in android_os_Parcel_enforceInterface()
/aosp12/frameworks/native/include/binder/
H A DParcel.h124 IPCThreadState* threadState = nullptr) const;
127 IPCThreadState* threadState = nullptr) const;
/aosp12/frameworks/native/libs/binder/include/binder/
H A DParcel.h124 IPCThreadState* threadState = nullptr) const;
127 IPCThreadState* threadState = nullptr) const;
/aosp12/frameworks/base/core/java/android/os/
H A DStrictMode.java2538 Span(ThreadSpanState threadState) { in Span() argument
2539 mContainerState = threadState; in Span()