/dalvik/dx/src/com/android/dx/command/dump/ |
BlockDumper.java | 17 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...] |
/external/chromium_org/chrome_frame/crash_reporting/ |
minidump_test.cc | 37 // Large dump with all process memory. 127 // And write a dump 246 // is a full dump using MINIDUMP_MEMORY64_LIST with all the memory at the 247 // end of the dump file. 331 // We expect no PEB nor TEBs in this dump. 335 // We expect no off-stack memory in this dump. 350 // We expect PEB and TEBs in this dump. 365 // We expect no off-stack memory in this dump. 372 // The dump should have all of these streams. 381 // We expect memory referenced by stack in this dump [all...] |
/frameworks/av/services/audioflinger/ |
StateQueue.h | 107 void dump(int fd); 118 void dump(int fd); 173 // Register location of observer dump area 174 void setObserverDump(StateQueueObserverDump *dump) 175 { mObserverDump = dump != NULL ? dump : &mObserverDummyDump; } 177 // Register location of mutator dump area 178 void setMutatorDump(StateQueueMutatorDump *dump) 179 { mMutatorDump = dump != NULL ? dump : &mMutatorDummyDump; [all...] |
AudioWatchdog.h | 38 void dump(int fd); // should only be called on a stable copy, not the original 65 // Where to store the dump, or NULL to not update 66 void setDump(AudioWatchdogDump* dump); 82 AudioWatchdogDump* mDump; // where to store the dump, always non-NULL 83 AudioWatchdogDump mDummyDump; // default area for dump in case setDump() is not called
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDump.cpp | 50 maker.fEvents.dump(maker); 52 maker.dump(name.c_str()); 54 maker.fDisplayList.dump(&maker); 63 SkDebugf("%*s<dump script=\"%s\" answer=\" ", SkDisplayList::fIndent, "", script.c_str()); 109 // in the release version, <dump> is allowed, and its attributes are defined, but
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkIntersectionHelper.h | 145 void dump() { function in class:SkIntersectionHelper 146 SkDPoint::dump(pts()[0]); 147 SkDPoint::dump(pts()[1]); 149 SkDPoint::dump(pts()[2]); 152 SkDPoint::dump(pts()[3]);
|
/external/chromium_org/tools/ |
gyp-explain.py | 75 # Check that dump.json exists and that it's not too old. 78 st = os.stat('dump.json') 81 print 'dump.json is more than 2 hours old.' 84 print 'dump.json not found.' 93 g = json.load(open('dump.json'))
|
/external/skia/src/animator/ |
SkDump.cpp | 50 maker.fEvents.dump(maker); 52 maker.dump(name.c_str()); 54 maker.fDisplayList.dump(&maker); 63 SkDebugf("%*s<dump script=\"%s\" answer=\" ", SkDisplayList::fIndent, "", script.c_str()); 109 // in the release version, <dump> is allowed, and its attributes are defined, but
|
/external/skia/src/pathops/ |
SkIntersectionHelper.h | 145 void dump() { function in class:SkIntersectionHelper 146 SkDPoint::dump(pts()[0]); 147 SkDPoint::dump(pts()[1]); 149 SkDPoint::dump(pts()[2]); 152 SkDPoint::dump(pts()[3]);
|
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/ |
DumpCommand.java | 34 * Implementation of the dump subcommand 36 * This creates an XML dump of current UI hierarchy 44 super("dump"); 49 return "creates an XML dump of current UI hierarchy"; 54 return " dump [--verbose][file]\n"
|
/ndk/build/tools/ |
dev-platform-import.sh | 88 dump "ERROR: Missing path parameter to platform build, see --help for details" 99 dump "ERROR: Not a directory: $ANDROID_PRODUCT_OUT" 100 dump "Please point to a valid and complete Android build directory" 106 dump "ERROR: Missing file: $BUILD_PROP" 107 dump "Please point to a valid and complete Android build directory" 116 dump "ERROR: Could not extract CPU ABI from $BUILD_PROP" 117 dump "Please use --arch=<name> to override this. See --help" 123 dump "ERROR: Can't translate $CPU_ABI ABI into CPU architecture!" 133 dump "WARNING: Could not extract default platform level from $BUILD_PROP!" 134 dump "Please use --platform=<name> to override this. See --help [all...] |
build-gdbserver.sh | 156 dump "ERROR: Missing directory: $LIBTHREAD_DB_DIR" 165 dump "ERROR: Could not compile libthread_db.c!" 173 dump "Configure: $TOOLCHAIN gdbserver-$GDB_VERSION build." 205 dump "Could not configure gdbserver build. See $TMPLOG" 210 dump "Building : $TOOLCHAIN gdbserver." 214 dump "Could not build $TOOLCHAIN gdbserver. Use --verbose to see why." 228 dump "Install : $TOOLCHAIN $DSTFILE." 233 dump "Could not install $DSTFILE. See $TMPLOG" 239 dump "Packaging: $ARCHIVE" 248 dump "Done. [all...] |
dev-system-import.sh | 42 dump "WARNING: Could not extract default platform level from $BUILD_PROP!" 44 dump "Defaulting to $PLATFORM" 118 dump "ERROR: Missing required API/platform level. See --help for usage instructions." 228 dump "ERROR: Could not find valid output directory (e.g. \$NDK/../development/ndk)." 229 dump "Please use --out-dir=<path> to specify one!" 283 # Dump the list of dynamic functions exported by a given shared library 291 # Dump the list of global variables exposed by a given shared library 322 dump "Generating shell library for `basename $1` ($numfuncs functions + $numvars variables)" 338 dump "ERROR: Can't generate shell library for: $1" 339 dump "See the content of $TMPC for details. [all...] |
/system/core/include/utils/ |
CallStack.h | 44 // Immediately dump it to logcat using the given logtag. 71 // Dump a stack trace to the log using the supplied logtag. 76 // Dump a stack trace to the specified file descriptor. 77 void dump(int fd, int indent = 0, const char* prefix = 0) const; 82 // Dump a serialized representation of the stack trace to the specified printer.
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
rtpdump.h | 41 // We use the RTP dump file format compatible to the format used by rtptools 45 // For each packet, the file contains a 8 byte dump packet header, followed by 115 // Use the specified ssrc, rather than the ssrc from dump, for RTP packets. 138 // RtpDumpLoopReader reads RTP dump packets from the input stream and rewinds 141 // handle both RTP dump and RTCP dump. We assume that the dump does not mix 157 // During the second and later loops, update the elapsed time of the dump 171 // dump timestamp, and different RTP sequence number. 175 // the previous dump packets in the input stream [all...] |
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
FramebufferSurface.cpp | 166 // void dump(FrameBufferSurface* fbs, String8& s) { 167 // // calls FramebufferSurface::dump() 168 // fbs->dump(s); 170 // // calls ConsumerBase::dump() since it is non-virtual 171 // static_cast<ConsumerBase*>(fbs)->dump(s); 173 // // calls FramebufferSurface::dump() since it is virtual 174 // static_cast<DisplaySurface*>(fbs)->dump(s); 177 // to ConsumerBase::dump() here. It will take the internal lock, and then call 179 void FramebufferSurface::dump(String8& result) const { function in class:android::FramebufferSurface 180 ConsumerBase::dump(result) [all...] |
/ndk/tests/ |
run-tests-all.sh | 88 dump "### Run simple tests" 91 dump "### Run simple tests with clang" 96 dump "### Running $HOST_TAG $V full tests" 102 dump "### Running $HOST_TAG32 $V tests (32-bit host)" 110 dump "### Running windows-x86_64 $V tests" 118 dump "### Running windows $V tests" 175 dump "### [$TAG] Testing $ARCH gcc-$GCC_VERSION toolchain with --sysroot" 181 dump "### [$TAG] Making $ARCH gcc-$GCC_VERSION/clang$LLVM_VERSION standalone toolchain STL=$STL" 184 dump "### [$TAG] Testing $ARCH gcc-$GCC_VERSION standalone toolchain" 190 dump "### [$TAG] Testing clang$LLVM_VERSION in $ARCH gcc-$GCC_VERSION standalone toolchain STL=$STL [all...] |
/external/valgrind/main/callgrind/ |
clo.c | 435 else if VG_STR_CLO(arg, "--dump-before", tmp_str) { 445 else if VG_STR_CLO(arg, "--dump-after", tmp_str) { 519 else if VG_BOOL_CLO(arg, "--dump-bbs", CLG_(clo).dump_bbs) {} 520 else if VG_BOOL_CLO(arg, "--dump-line", CLG_(clo).dump_line) {} 521 else if VG_BOOL_CLO(arg, "--dump-instr", CLG_(clo).dump_instr) {} 522 else if VG_BOOL_CLO(arg, "--dump-bb", CLG_(clo).dump_bb) {} 524 else if VG_INT_CLO( arg, "--dump-every-bb", CLG_(clo).dump_every_bb) {} 551 "\n dump creation options:\n" 553 " --dump-line=no|yes Dump source lines of costs? [yes]\n [all...] |
/external/chromium_org/tools/deep_memory_profiler/lib/ |
dump.py | 23 # Heap Profile Dump versions 47 class Dump(object): 48 """Represents a heap profile dump.""" 138 def load(path, log_header='Loading a heap profile dump: '): 139 """Loads a heap profile dump. 146 A loaded Dump object. 151 dump = Dump(path, os.stat(path).st_mtime) 153 dump.load_file(f, log_header) 154 return dump [all...] |
/art/runtime/verifier/ |
reg_type.h | 223 virtual std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0; 301 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 331 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 373 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 392 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 412 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 431 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 450 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 469 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 491 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) [all...] |
/external/chromium_org/third_party/angle/src/compiler/ |
SymbolTable.cpp | 127 // Dump functions. 130 void TVariable::dump(TInfoSink& infoSink) const function in class:TVariable 139 void TFunction::dump(TInfoSink &infoSink) const function in class:TFunction 144 void TSymbolTableLevel::dump(TInfoSink &infoSink) const function in class:TSymbolTableLevel 148 (*it).second->dump(infoSink); 151 void TSymbolTable::dump(TInfoSink &infoSink) const function in class:TSymbolTable 155 table[level]->dump(infoSink);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-pass.h | 28 /* Different tree dump places. When you add new tree dump places, 29 extend the DUMP_FILES array in tree-dump.c. */ 32 TDI_none, /* No dump */ 33 TDI_cgraph, /* dump function call graph. */ 34 TDI_tu, /* dump the whole translation unit. */ 35 TDI_class, /* dump class hierarchy. */ 36 TDI_original, /* dump each function before optimizing it */ 37 TDI_generic, /* dump each function after genericizing it */ 38 TDI_nested, /* dump each function after unnesting it * [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-pass.h | 28 /* Different tree dump places. When you add new tree dump places, 29 extend the DUMP_FILES array in tree-dump.c. */ 32 TDI_none, /* No dump */ 33 TDI_cgraph, /* dump function call graph. */ 34 TDI_tu, /* dump the whole translation unit. */ 35 TDI_class, /* dump class hierarchy. */ 36 TDI_original, /* dump each function before optimizing it */ 37 TDI_generic, /* dump each function after genericizing it */ 38 TDI_nested, /* dump each function after unnesting it * [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
tree-pass.h | 28 /* Different tree dump places. When you add new tree dump places, 29 extend the DUMP_FILES array in tree-dump.c. */ 32 TDI_none, /* No dump */ 33 TDI_cgraph, /* dump function call graph. */ 34 TDI_tu, /* dump the whole translation unit. */ 35 TDI_class, /* dump class hierarchy. */ 36 TDI_original, /* dump each function before optimizing it */ 37 TDI_generic, /* dump each function after genericizing it */ 38 TDI_nested, /* dump each function after unnesting it * [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
tree-pass.h | 28 /* Different tree dump places. When you add new tree dump places, 29 extend the DUMP_FILES array in tree-dump.c. */ 32 TDI_none, /* No dump */ 33 TDI_cgraph, /* dump function call graph. */ 34 TDI_tu, /* dump the whole translation unit. */ 35 TDI_class, /* dump class hierarchy. */ 36 TDI_original, /* dump each function before optimizing it */ 37 TDI_generic, /* dump each function after genericizing it */ 38 TDI_nested, /* dump each function after unnesting it * [all...] |