Searched refs:BpBinder (Results 1 – 10 of 10) sorted by relevance
/frameworks/native/libs/binder/ |
D | BpBinder.cpp | 36 Mutex BpBinder::sTrackingLock; 37 std::unordered_map<int32_t,uint32_t> BpBinder::sTrackingMap; 38 int BpBinder::sNumTrackedUids = 0; 39 std::atomic_bool BpBinder::sCountByUidEnabled(false); 40 binder_proxy_limit_callback BpBinder::sLimitCallback; 41 bool BpBinder::sBinderProxyThrottleCreate = false; 44 uint32_t BpBinder::sBinderProxyCountHighWatermark = 2500; 46 uint32_t BpBinder::sBinderProxyCountLowWatermark = 2000; 53 BpBinder::ObjectManager::ObjectManager() in ObjectManager() 57 BpBinder::ObjectManager::~ObjectManager() in ~ObjectManager() [all …]
|
D | IPCThreadState.cpp | 720 void IPCThreadState::incStrongHandle(int32_t handle, BpBinder *proxy) in incStrongHandle() 737 void IPCThreadState::incWeakHandle(int32_t handle, BpBinder *proxy) in incWeakHandle() 786 status_t IPCThreadState::requestDeathNotification(int32_t handle, BpBinder* proxy) in requestDeathNotification() 794 status_t IPCThreadState::clearDeathNotification(int32_t handle, BpBinder* proxy) in clearDeathNotification() 1255 BpBinder *proxy = (BpBinder*)mIn.readPointer(); in executeCommand() 1263 BpBinder *proxy = (BpBinder*)mIn.readPointer(); in executeCommand()
|
D | Binder.cpp | 54 BpBinder* IBinder::remoteBinder() in remoteBinder() 94 BpBinder::ObjectManager mObjects;
|
D | ProcessState.cpp | 300 b = BpBinder::create(handle); in getStrongProxyForHandle() 334 b = BpBinder::create(handle); in getWeakProxyForHandle()
|
D | Android.bp | 45 "BpBinder.cpp",
|
D | Parcel.cpp | 220 BpBinder *proxy = binder->remoteBinder(); in flatten_binder() 257 BpBinder *proxy = real->remoteBinder(); in flatten_binder() 296 BpBinder* /*proxy*/, const flat_binder_object& /*flat*/, in finish_unflatten_binder() argument 315 static_cast<BpBinder*>(out->get()), *flat, in); in unflatten_binder() 344 static_cast<BpBinder*>(out->unsafe_get()), *flat, in); in unflatten_binder()
|
/frameworks/native/libs/binder/include/binder/ |
D | BpBinder.h | 32 class BpBinder : public IBinder 35 static BpBinder* create(int32_t handle); 68 virtual BpBinder* remoteBinder(); 111 BpBinder(int32_t handle,int32_t trackedUid); 112 virtual ~BpBinder();
|
D | IPCThreadState.h | 88 void incStrongHandle(int32_t handle, BpBinder *proxy); 90 void incWeakHandle(int32_t handle, BpBinder *proxy); 95 BpBinder* proxy); 97 BpBinder* proxy);
|
D | IBinder.h | 37 class BpBinder; variable 188 virtual BpBinder* remoteBinder();
|
/frameworks/base/core/jni/ |
D | android_util_Binder.cpp | 1080 BpBinder::setCountByUidEnabled((bool) enable); in android_os_BinderInternal_setBinderProxyCountEnabled() 1086 BpBinder::getCountByUid(uids, counts); in android_os_BinderInternal_getBinderProxyPerUidCounts() 1097 return static_cast<jint>(BpBinder::getBinderProxyCount(static_cast<uint32_t>(uid))); in android_os_BinderInternal_getBinderProxyCount() 1103 BpBinder::setBinderProxyCountWatermarks(high, low); in android_os_BinderInternal_setBinderProxyCountWatermarks() 1138 BpBinder::setLimitCallback(android_os_BinderInternal_proxyLimitcallback); in int_register_android_os_BinderInternal()
|