Home
last modified time | relevance | path

Searched refs:toShortString (Results 1 – 25 of 126) sorted by relevance

123456

/frameworks/base/services/core/java/com/android/server/am/
DContentProviderConnection.java102 + provider.name.toShortString() + ": proc=" + provider.proc); in startAssociationIfNeeded()
105 + provider.name.toShortString() + ": proc=" + provider.proc); in startAssociationIfNeeded()
140 toShortString(sb); in toString()
145 public String toShortString() { in toShortString() method in ContentProviderConnection
147 toShortString(sb); in toShortString()
157 public void toShortString(StringBuilder sb) { in toShortString() method in ContentProviderConnection
158 sb.append(provider.toShortString()); in toShortString()
164 sb.append(client.toShortString()); in toClientString()
DHostingRecord.java125 this(hostingType, hostingName.toShortString(), REGULAR_ZYGOTE, in HostingRecord()
133 this(hostingType, hostingName.toShortString(), REGULAR_ZYGOTE, definingPackageName, in HostingRecord()
139 this(hostingType, hostingName.toShortString(), REGULAR_ZYGOTE, in HostingRecord()
150 this(hostingType, hostingName.toShortString(), hostingZygote); in HostingRecord()
236 return new HostingRecord(HostingRecord.HOSTING_TYPE_EMPTY, hostingName.toShortString(), in byWebviewZygote()
250 return new HostingRecord(HostingRecord.HOSTING_TYPE_EMPTY, hostingName.toShortString(), in byAppZygote()
DIntentBindRecord.java59 pw.print(intent.getIntent().toShortString(false, true, false, false)); in dumpInService()
105 intent.getIntent().toShortString(sb, false, false, false, false); in toString()
DBroadcastHistory.java205 pw.println(r.intent.toShortString(false, true, true, false)); in dumpLocked()
207 pw.print(" targetComp: "); pw.println(r.targetComp.toShortString()); in dumpLocked()
255 pw.println(intent.toShortString(false, true, true, false)); in dumpLocked()
DBroadcastProcessQueue.java786 runningTraceTrackName, toShortString() + " starting", hashCode()); in traceProcessStartingBegin()
791 runningTraceTrackName, toShortString() + " running", hashCode()); in traceProcessRunningBegin()
801 runningTraceTrackName, mActive.toShortString() + " scheduled", hashCode()); in traceActiveBegin()
1465 mCachedToString = "BroadcastProcessQueue{" + toShortString() + "}"; in toString()
1470 public String toShortString() { in toShortString() method
1500 pw.print(toShortString()); in dumpLocked()
1591 pw.println(record.toShortString()); in dumpOutgoingRecord()
1599 pw.println(record.toShortString()); in dumpRecord()
DContentProviderRecord.java304 public String toShortString() { in toShortString() method in ContentProviderRecord
352 + provider.name.toShortString() + ": proc=" + provider.proc); in startAssociationIfNeeded()
355 + provider.name.toShortString() + ": proc=" + provider.proc); in startAssociationIfNeeded()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowFrames.java188 pw.println(prefix + "Frames: parent=" + mParentFrame.toShortString(sTmpSB) in dump()
189 + " display=" + mDisplayFrame.toShortString(sTmpSB) in dump()
190 + " frame=" + mFrame.toShortString(sTmpSB) in dump()
191 + " last=" + mLastFrame.toShortString(sTmpSB) in dump()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/domain/resume/
DResumeMediaBrowserLogger.kt35 str1 = componentName.toShortString() in logConnection()
46 { str1 = componentName.toShortString() }, in logDisconnect()
69 str1 = componentName.toShortString() in logSessionDestroyed()
/frameworks/base/core/java/android/view/animation/
DTransformation.java245 toShortString(sb); in toString()
252 public String toShortString() { in toShortString() method in Transformation
254 toShortString(sb); in toShortString()
261 public void toShortString(StringBuilder sb) { in toShortString() method in Transformation
263 sb.append(" matrix="); sb.append(mMatrix.toShortString()); in toShortString()
/frameworks/base/core/java/android/window/
DClientWindowFrames.java102 return "ClientWindowFrames{frame=" + frame.toShortString(sb) in toString()
103 + " display=" + displayFrame.toShortString(sb) in toString()
104 + " parentFrame=" + parentFrame.toShortString(sb) in toString()
105 + (attachedFrame != null ? " attachedFrame=" + attachedFrame.toShortString() : "") in toString()
/frameworks/base/apex/blobstore/framework/java/android/app/blob/
DLeaseInfo.java96 private String toShortString() { in toShortString() method in LeaseInfo
100 static String toShortString(List<LeaseInfo> leaseInfos) { in toShortString() method in LeaseInfo
104 sb.append(leaseInfos.get(i).toShortString()); in toShortString()
DBlobInfo.java91 return toShortString(); in toString()
94 private String toShortString() { in toShortString() method in BlobInfo
100 + "leases: " + LeaseInfo.toShortString(mLeaseInfos) + "," in toShortString()
/frameworks/base/packages/SystemUI/src/com/android/systemui/log/
DScreenDecorationsLogger.kt52 { str1 = bounds.toShortString() }, in cameraProtectionBoundsForScanningOverlay()
61 { str1 = bounds.toShortString() }, in hwcLayerCameraProtectionBounds()
71 str1 = bounds.toShortString() in dcvCameraBounds()
88 str2 = boundingRectangle.toShortString() in boundingRect()
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DClientDescriptor.cpp37 std::string ClientDescriptor::toShortString() const in toShortString() function in android::ClientDescriptor
72 std::string TrackClientDescriptor::toShortString() const in toShortString() function in android::TrackClientDescriptor
75 ss << ClientDescriptor::toShortString() << " Stream: " << mStream; in toShortString()
/frameworks/base/core/java/android/hardware/camera2/params/
DRggbChannelVector.java203 return String.format("RggbChannelVector%s", toShortString()); in toString()
214 private String toShortString() { in toShortString() method in RggbChannelVector
DColorSpaceTransform.java263 return String.format("ColorSpaceTransform%s", toShortString()); in toString()
275 private String toShortString() { in toShortString() method in ColorSpaceTransform
/frameworks/base/core/java/android/view/
DScrollCaptureTarget.java142 + (mScrollBounds == null ? "null" : mScrollBounds.toShortString())); in dump()
148 + (localVisible == null ? "null" : localVisible.toShortString())); in dump()
/frameworks/base/services/companion/java/com/android/server/companion/devicepresence/
DCompanionServiceConnector.java150 Slog.d(TAG, "onServiceConnectionStatusChanged() " + mComponentName.toShortString() in onServiceConnectionStatusChanged()
158 Slog.d(TAG, "binderDied() " + mComponentName.toShortString()); in binderDied()
/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/
DPositionListenerActivity.java135 mCurrentCount, mPosition.toShortString(), mWidth, mHeight, in updateText()
137 mMappedBounds.toShortString())); in updateText()
/frameworks/base/services/core/java/com/android/server/tracing/
DTracingServiceProxy.java265 "Trace reporting service " + componentName.toShortString() + " does not have " in hasPermission()
278 "Trace reporting service " + componentName.toShortString() + " does not exist"); in hasBindServicePermission()
283 "Trace reporting service " + componentName.toShortString() in hasBindServicePermission()
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DClientDescriptor.h58 virtual std::string toShortString() const;
122 std::string toShortString() const override;
152 __func__, toShortString().c_str(), delta); in changeActivityCount()
155 __func__, toShortString().c_str(), delta, mActivityCount); in changeActivityCount()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/
DTvPipBoundsController.java139 TAG, placement.getBounds().toShortString()); in schedulePinnedStackPlacement()
227 "%s: movePipTo() - new pip bounds: %s", TAG, bounds.toShortString()); in movePipTo()
/frameworks/base/core/java/android/content/
DClipData.java790 toShortString(b, true); in toString()
802 public void toShortString(StringBuilder b, boolean redactContent) { in toShortString() method in ClipData.Item
840 mIntent.toShortString(b, redactContent, true, true, true); in toShortString()
1240 toShortString(b, true); in toString()
1251 public void toShortString(StringBuilder b, boolean redactContent) { in toShortString() method in ClipData
1254 first = !mClipDescription.toShortString(b, redactContent); in toShortString()
1281 mItems.get(i).toShortString(b, redactContent); in toShortString()
/frameworks/base/graphics/java/android/graphics/
DRectF.java121 public String toShortString() { in toShortString() method in RectF
122 return toShortString(new StringBuilder(32)); in toShortString()
130 public String toShortString(@NonNull StringBuilder sb) { in toShortString() method in RectF
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityUserState.java598 pw.append(componentName.toShortString()); in dump()
602 pw.append(componentName.toShortString()); in dump()
610 pw.append(componentName.toShortString()); in dump()
614 pw.append(componentName.toShortString()); in dump()
622 pw.append(componentName.toShortString()); in dump()
626 pw.append(componentName.toShortString()); in dump()

123456