Searched defs:dump (Results 1 - 14 of 14) sorted by relevance

/dalvik/dx/src/com/android/dx/command/dump/
H A DClassDumper.java17 package com.android.dx.command.dump;
25 * Utility to dump the contents of class files in a human-friendly form.
33 * @param out {@code non-null;} where to dump to
39 public static void dump(byte[] bytes, PrintStream out, method in class:ClassDumper
43 cd.dump();
48 * Use {@link #dump}.
58 public void dump() { method in class:ClassDumper
H A DSsaDumper.java17 package com.android.dx.command.dump;
45 * Does the dump.
48 * @param out {@code non-null;} where to dump to
53 public static void dump(byte[] bytes, PrintStream out, method in class:SsaDumper
56 sd.dump();
63 * @param out {@code non-null;} where to dump to
H A DDotDumper.java17 package com.android.dx.command.dump;
50 static void dump(byte[] bytes, String filePath, Args args) { method in class:DotDumper
H A DMain.java17 package com.android.dx.command.dump;
117 DotDumper.dump(bytes, name, parsedArgs);
119 BlockDumper.dump(bytes, System.out, name, false, parsedArgs);
121 BlockDumper.dump(bytes, System.out, name, true, parsedArgs);
125 SsaDumper.dump(bytes, System.out, name, parsedArgs);
127 ClassDumper.dump(bytes, System.out, name, parsedArgs);
H A DBlockDumper.java17 package com.android.dx.command.dump;
47 * Utility to dump basic block info from methods in a human-friendly form.
56 * becomes non-null during {@link #dump}
74 * @param out {@code non-null;} where to dump to
80 public static void dump(byte[] bytes, PrintStream out, method in class:BlockDumper
84 bd.dump();
89 * Use {@link #dump}.
105 public void dump() { method in class:BlockDumper
162 // Reset the dump cursor to the start of the method.
205 * Does a regular basic block dump
[all...]
H A DArgs.java17 package com.android.dx.command.dump;
26 /** whether to dump raw bytes where salient */
29 /** whether to dump information about basic blocks */
32 /** whether to dump regiserized blocks */
35 /** whether to dump SSA-form blocks */
50 /** whether to dump flow-graph in "dot" format */
53 /** if non-null, an explicit method to dump */
H A DBaseDumper.java17 package com.android.dx.command.dump;
41 /** {@code non-null;} where to dump to */
65 /** the offset of the next byte to dump */
76 * @param out {@code non-null;} where to dump to
130 println("<dump skipped backwards to " + Hex.u4(offset) + ">");
156 * Gets the current dump cursor (that is, the offset of the expected
157 * next byte to dump).
159 * @return {@code >= 0;} the dump cursor
166 * Sets the dump cursor to the indicated offset in the given array.
222 * Gets whether this dump i
[all...]
/dalvik/hit/src/com/android/hit/
H A DStackTrace.java57 public final void dump() { method in class:StackTrace
H A DClassObj.java155 public final void dump() { method in class:ClassObj
156 System.out.println("+---------- ClassObj dump for: " + mClassName);
/dalvik/dexgen/src/com/android/dexgen/util/
H A DHex.java236 * Formats a hex dump of a portion of a {@code byte[]}. The result
241 * @param offset {@code >= 0;} offset to the part to dump
242 * @param length {@code >= 0;} number of bytes to dump
247 * @return {@code non-null;} a string of the dump
249 public static String dump(byte[] arr, int offset, int length, method in class:Hex
/dalvik/dx/src/com/android/dx/util/
H A DHex.java236 * Formats a hex dump of a portion of a {@code byte[]}. The result
241 * @param offset {@code >= 0;} offset to the part to dump
242 * @param length {@code >= 0;} number of bytes to dump
247 * @return {@code non-null;} a string of the dump
249 public static String dump(byte[] arr, int offset, int length, method in class:Hex
/dalvik/vm/
H A DIndirectRefTable.cpp308 void IndirectRefTable::dump(const char* descr) const function in class:IndirectRefTable
/dalvik/dx/tests/098-dex-jsr-ret-throw/
H A DViewDebug$ViewServer.class ... .View view String className int hashCode private static void dump (java.net.Socket) throws java.io. ...
/dalvik/tools/dmtracedump/
H A DTraceDump.c222 int dump; member in struct:Options
2839 gOptions.dump = 1;
2871 if (gOptions.dump) {

Completed in 241 milliseconds