Home | History | Annotate | Download | only in ddm

Lines Matching refs:rootView

124         View rootView = getRootView(in);
125 if (rootView == null) {
131 return dumpHierarchy(rootView, in);
133 return captureLayers(rootView);
138 final View targetView = getTargetView(rootView, in);
146 return captureView(rootView, targetView);
148 return dumpDisplayLists(rootView, targetView);
150 return profileView(rootView, targetView);
152 return invokeViewMethod(rootView, targetView, in);
154 return setLayoutParameter(rootView, targetView, in);
224 private Chunk dumpHierarchy(View rootView, ByteBuffer in) {
230 ViewDebug.dump(rootView, skipChildren, includeProperties, b);
241 private Chunk captureLayers(View rootView) {
245 ViewDebug.captureLayers(rootView, dos);
261 private Chunk captureView(View rootView, View targetView) {
264 ViewDebug.capture(rootView, b, targetView);
275 private Chunk dumpDisplayLists(final View rootView, final View targetView) {
276 rootView.post(new Runnable() {
279 ViewDebug.outputDisplayList(rootView, targetView);
301 private Chunk invokeViewMethod(final View rootView, final View targetView, ByteBuffer in) {
382 private Chunk setLayoutParameter(final View rootView, final View targetView, ByteBuffer in) {
398 private Chunk profileView(View rootView, final View targetView) {