Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DViewDebug.java742 final View captureView = findView(root, parameter); in capture() local
743 capture(root, clientStream, captureView); in capture()
747 public static void capture(View root, final OutputStream clientStream, View captureView) in capture() argument
749 Bitmap b = performViewCapture(captureView, false); in capture()
772 private static Bitmap performViewCapture(final View captureView, final boolean skipChildren) { in performViewCapture() argument
773 if (captureView != null) { in performViewCapture()
777 captureView.post(new Runnable() { in performViewCapture()
780 cache[0] = captureView.createSnapshot( in performViewCapture()
794 Log.w("View", "Could not complete the capture of the view " + captureView); in performViewCapture()
/frameworks/base/core/java/android/ddm/
DDdmHandleViewDebug.java151 return captureView(rootView, targetView); in handleChunk()
292 private Chunk captureView(View rootView, View targetView) { in captureView() method in DdmHandleViewDebug