Home
last modified time | relevance | path

Searched refs:stability (Results 1 – 8 of 8) sorted by relevance

/frameworks/native/libs/binder/
DStability.cpp70 status_t Stability::set(IBinder* binder, int32_t stability, bool log) { in set() argument
75 if (stability == UNDECLARED) { in set()
80 stabilityString(stability).c_str()); in set()
86 if (!isDeclaredStability(stability)) { in set()
88 ALOGE("Can only set known stability, not %d.", stability); in set()
93 if (currentStability != Level::UNDECLARED && currentStability != stability) { in set()
96 stabilityString(stability).c_str(), stabilityString(currentStability).c_str()); in set()
101 if (currentStability == stability) return OK; in set()
105 local->mStability = static_cast<int32_t>(stability); in set()
107 binder->remoteBinder()->mStability = static_cast<int32_t>(stability); in set()
[all …]
DBpBinder.cpp226 auto stability = Stability::get(this); in transact() local
229 if (CC_UNLIKELY(!Stability::check(stability, required))) { in transact()
231 Stability::stabilityString(stability).c_str(), in transact()
DParcel.cpp181 int32_t stability; in finishUnflattenBinder() local
182 status_t status = readInt32(&stability); in finishUnflattenBinder()
185 status = internal::Stability::set(binder.get(), stability, true /*log*/); in finishUnflattenBinder()
/frameworks/native/libs/binder/include/binder/
DStability.h89 static status_t set(IBinder* binder, int32_t stability, bool log);
95 static bool isDeclaredStability(int32_t stability);
96 static std::string stabilityString(int32_t stability);
/frameworks/native/include/binder/
DStability.h89 static status_t set(IBinder* binder, int32_t stability, bool log);
95 static bool isDeclaredStability(int32_t stability);
96 static std::string stabilityString(int32_t stability);
/frameworks/base/core/java/android/os/
DParcelableHolder.java42 public ParcelableHolder(@Parcelable.Stability int stability) { in ParcelableHolder() argument
43 mStability = stability; in ParcelableHolder()
/frameworks/av/media/codec2/components/base/
DAndroid.bp45 // to be used by code under media/codecs/* only as its stability is not guaranteed
/frameworks/native/libs/binder/ndk/
DAndroid.bp56 "stability.cpp",