Home
last modified time | relevance | path

Searched refs:toDebugString (Results 1 – 25 of 28) sorted by relevance

12

/frameworks/native/cmds/servicemanager/
DServiceManager.cpp123 ALOGI("%s Found %s in %s VINTF manifest.", ctx.toDebugString().c_str(), in isVintfDeclared()
130 ALOGI("%s Could not find %s in the VINTF manifest.", ctx.toDebugString().c_str(), in isVintfDeclared()
141 ALOGI("%s Found %s in %s VINTF manifest.", ctx.toDebugString().c_str(), name.c_str(), in isVintfDeclared()
167 ALOGI("%s Could not find %s.%s/%s in the VINTF manifest. %s.", ctx.toDebugString().c_str(), in isVintfDeclared()
431 ALOGE("%s Invalid service name: %s", ctx.toDebugString().c_str(), name.c_str()); in addService()
443 ALOGW("%s Dump flag priority is not set when adding %s", ctx.toDebugString().c_str(), in addService()
450 ALOGE("%s Could not linkToDeath when adding %s", ctx.toDebugString().c_str(), name.c_str()); in addService()
552 ALOGE("%s Invalid service name: %s", ctx.toDebugString().c_str(), name.c_str()); in registerForNotifications()
563 ALOGE("%s Could not linkToDeath when adding %s", ctx.toDebugString().c_str(), name.c_str()); in registerForNotifications()
595 ALOGE("%s Trying to unregister callback, but none exists %s", ctx.toDebugString().c_str(), in unregisterForNotifications()
[all …]
DAccess.h40 std::string toDebugString() const;
DAccess.cpp85 std::string Access::CallingContext::toDebugString() const { in toDebugString() function in android::Access::CallingContext
/frameworks/native/libs/binder/tests/
DRpcTlsUtilsTest.cpp23 std::string toDebugString(EVP_PKEY* pkey) { in toDebugString() function
51 << "expected: " << toDebugString(pkey.get()) in TEST_P()
52 << "\nactual: " << toDebugString(deserializedPkey.get()); in TEST_P()
/frameworks/base/core/java/android/os/
DCombinedVibration.java160 public abstract String toDebugString(); in toDebugString() method in CombinedVibration
451 public String toDebugString() { in toDebugString() method in CombinedVibration.Mono
453 return mEffect.toDebugString(); in toDebugString()
640 public String toDebugString() {
644 mEffects.keyAt(i), mEffects.valueAt(i).toDebugString()));
865 public String toDebugString() {
869 mDelays.get(i), mEffects.get(i).toDebugString()));
DVibrationEffect.java650 public abstract String toDebugString(); in toDebugString() method in VibrationEffect
950 public String toDebugString() { in toDebugString() method in VibrationEffect.Composed
953 return mSegments.get(0).toDebugString(); in toDebugString()
957 sj.add(mSegments.get(i).toDebugString()); in toDebugString()
/frameworks/opt/bitmap/src/com/android/bitmap/
DPooledCache.java25 String toDebugString(); in toDebugString() method
DUnrefedPooledCache.java170 public String toDebugString() { in toDebugString() method in UnrefedPooledCache
DDecodeTask.java261 + mCache.toDebugString()); in decode()
/frameworks/opt/bitmap/src/com/android/bitmap/util/
DInputStreamBuffer.java333 return toDebugString(); in toString()
338 public String toDebugString() { in toDebugString() method in InputStreamBuffer
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
DInputStreamBuffer.java333 return toDebugString(); in toString()
338 public String toDebugString() { in toDebugString() method in InputStreamBuffer
/frameworks/base/core/java/android/inputmethodservice/
DNavigationBarController.java88 default String toDebugString() { in toDebugString() method
144 String toDebugString() { in toDebugString() method in NavigationBarController
145 return mImpl.toDebugString(); in toDebugString()
612 public String toDebugString() { in toDebugString() method in NavigationBarController.Impl
DInputMethodService.java4513 p.println(" mNavigationBarController=" + mNavigationBarController.toDebugString());
/frameworks/base/core/java/android/os/vibrator/
DVibrationEffectSegment.java137 public abstract String toDebugString(); in toDebugString() method in VibrationEffectSegment
DPrimitiveSegment.java161 public String toDebugString() { in toDebugString() method in PrimitiveSegment
DStepSegment.java183 public String toDebugString() { in toDebugString() method in StepSegment
DPrebakedSegment.java217 public String toDebugString() { in toDebugString() method in PrebakedSegment
DRampSegment.java199 public String toDebugString() { in toDebugString() method in RampSegment
/frameworks/av/media/libaudioclient/include/media/
DAudioIoDescriptor.h81 std::string toDebugString() const { in toDebugString() function
/frameworks/base/services/tests/servicestests/src/com/android/server/power/batterysaver/
DBatterySavingStatsTest.java91 String toDebugString() { in toDebugString() method in BatterySavingStatsTest.BatterySavingStatsTestable
250 target.toDebugString()); in checkAll()
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountManagerService.java1774 protected String toDebugString(long now) { in copyAccountToUser() method
1775 return super.toDebugString(now) + ", getAccountCredentialsForClone" in copyAccountToUser()
1854 protected String toDebugString(long now) { in completeCloningAccount() method
1855 return super.toDebugString(now) + ", getAccountCredentialsForClone" in completeCloningAccount()
2150 protected String toDebugString(long now) { in toDebugString() method in AccountManagerService.TestFeaturesSession
2151 return super.toDebugString(now) + ", hasFeatures" in toDebugString()
2462 protected String toDebugString(long now) { in toDebugString() method in AccountManagerService.RemoveAccountSession
2463 return super.toDebugString(now) + ", removeAccount" in toDebugString()
2975 protected String toDebugString(long now) { in getAuthTokenLabel() method
2976 return super.toDebugString(now) + ", getAuthTokenLabel" in getAuthTokenLabel()
[all …]
/frameworks/base/core/java/android/content/
DSyncResult.java294 public String toDebugString() { in toDebugString() method in SyncResult
/frameworks/base/services/core/java/com/android/server/vibrator/
DVibration.java305 mPlayedEffect == null ? null : mPlayedEffect.toDebugString(), in dumpCompact()
306 mOriginalEffect == null ? null : mOriginalEffect.toDebugString()); in dumpCompact()
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
DBasicBitmapDrawable.java254 "CACHE MISS key=%s\ncache=%s", mCurrKey, mCache.toDebugString())); in setImage()
/frameworks/av/media/libaudioclient/
DAudioSystem.cpp680 ioDesc->toDebugString().c_str()); in ioConfigChanged()
720 ioDesc->toDebugString().c_str()); in ioConfigChanged()

12