Home
last modified time | relevance | path

Searched refs:captureView (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
DViewDebug.java748 final View captureView = findView(root, parameter); in capture() local
749 capture(root, clientStream, captureView); in capture()
753 public static void capture(View root, final OutputStream clientStream, View captureView) in capture() argument
755 Bitmap b = performViewCapture(captureView, false); in capture()
778 private static Bitmap performViewCapture(final View captureView, final boolean skipChildren) { in performViewCapture() argument
779 if (captureView != null) { in performViewCapture()
783 captureView.post(new Runnable() { in performViewCapture()
786 cache[0] = captureView.createSnapshot( in performViewCapture()
800 Log.w("View", "Could not complete the capture of the view " + captureView); in performViewCapture()
/frameworks/base/core/java/android/ddm/
DDdmHandleViewDebug.java144 return captureView(rootView, targetView); in handleChunk()
279 private Chunk captureView(View rootView, View targetView) { in captureView() method in DdmHandleViewDebug