Home | History | Annotate | Download | only in ddm

Lines Matching refs:rootView

127         View rootView = getRootView(in);
128 if (rootView == null) {
134 return dumpHierarchy(rootView, in);
136 return captureLayers(rootView);
138 return dumpTheme(rootView);
143 final View targetView = getTargetView(rootView, in);
151 return captureView(rootView, targetView);
153 return dumpDisplayLists(rootView, targetView);
155 return profileView(rootView, targetView);
157 return invokeViewMethod(rootView, targetView, in);
159 return setLayoutParameter(rootView, targetView, in);
229 private Chunk dumpHierarchy(View rootView, ByteBuffer in) {
235 ViewDebug.dump(rootView, skipChildren, includeProperties, b);
246 private Chunk captureLayers(View rootView) {
250 ViewDebug.captureLayers(rootView, dos);
269 private Chunk dumpTheme(View rootView) {
272 ViewDebug.dumpTheme(rootView, b);
282 private Chunk captureView(View rootView, View targetView) {
285 ViewDebug.capture(rootView, b, targetView);
296 private Chunk dumpDisplayLists(final View rootView, final View targetView) {
297 rootView.post(new Runnable() {
300 ViewDebug.outputDisplayList(rootView, targetView);
322 private Chunk invokeViewMethod(final View rootView, final View targetView, ByteBuffer in) {
403 private Chunk setLayoutParameter(final View rootView, final View targetView, ByteBuffer in) {
419 private Chunk profileView(View rootView, final View targetView) {