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;
26 * Utility to dump the contents of class files in a human-friendly form.
34 * @param out {@code non-null;} where to dump to
40 public static void dump(byte[] bytes, PrintStream out, method in class:ClassDumper
44 cd.dump();
49 * Use {@link #dump}.
59 public void dump() { method in class:ClassDumper
H A DSsaDumper.java17 package com.android.dx.command.dump;
53 * Does the dump.
56 * @param out {@code non-null;} where to dump to
61 public static void dump(byte[] bytes, PrintStream out, method in class:SsaDumper
64 sd.dump();
71 * @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;
118 DotDumper.dump(bytes, name, parsedArgs);
120 BlockDumper.dump(bytes, System.out, name, false, parsedArgs);
122 BlockDumper.dump(bytes, System.out, name, true, parsedArgs);
126 SsaDumper.dump(bytes, System.out, name, parsedArgs);
128 ClassDumper.dump(bytes, System.out, name, parsedArgs);
H A DBlockDumper.java17 package com.android.dx.command.dump;
49 * Utility to dump basic block info from methods in a human-friendly form.
58 * becomes non-null during {@link #dump}
76 * @param out {@code non-null;} where to dump to
82 public static void dump(byte[] bytes, PrintStream out, method in class:BlockDumper
86 bd.dump();
91 * Use {@link #dump}.
107 public void dump() { method in class:BlockDumper
164 // Reset the dump cursor to the start of the method.
207 * 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;
43 /** {@code non-null;} where to dump to */
67 /** the offset of the next byte to dump */
78 * @param out {@code non-null;} where to dump to
132 println("<dump skipped backwards to " + Hex.u4(offset) + ">");
158 * Gets the current dump cursor (that is, the offset of the expected
159 * next byte to dump).
161 * @return {@code >= 0;} the dump cursor
168 * Sets the dump cursor to the indicated offset in the given array.
224 * 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 344 milliseconds