/art/runtime/hprof/ |
hprof.h | 22 namespace hprof { namespace in namespace:art 26 } // namespace hprof
|
hprof.cc | 18 * Preparation and completion of hprof data generation. The output is 25 #include "hprof.h" 63 namespace hprof { namespace in namespace:art 179 // Represents a top-level hprof record, whose serialized format is: 367 class Hprof { 369 Hprof(const char* output_filename, int fd, bool direct_to_ddms) 386 LOG(INFO) << "hprof: heap dump \"" << filename_ << "\" starting..."; 399 ~Hprof() { 480 LOG(INFO) << "hprof: heap dump completed (" 490 Hprof* hprof = reinterpret_cast<Hprof*>(arg) local 498 Hprof* hprof = reinterpret_cast<Hprof*>(arg); local [all...] |
/dalvik/hit/test/ |
testparser | 6 #java -Djava.compiler=NONE -Xdebug -Xrunjdwp:transport=dt_socket,address=53635,server=y,suspend=y -cp build com.android.hit.Main ../samples/android.hprof 8 java -cp build com.android.hit.Main ../samples/android.hprof
|
/dalvik/tools/ |
get-hprof | 17 # Grab an hprof file using adb. If an argument is specified, grab 24 FILE_BASE=`adb shell ls -l '/data/misc/heap-dump*.hprof' | tail -1 | \ 33 OUT_FILE=heap-dump.hprof
|
/build/target/product/ |
runtime_common.mk | 32 hprof-conv \
|
/development/build/ |
product_sdk.mk | 42 hprof-conv \
|
/dalvik/tools/hprof-conv/ |
Android.mk | 20 LOCAL_MODULE := hprof-conv
|
/sdk/build/ |
tools.windows.atree | 69 rm tools/hprof-conv 70 bin/hprof-conv.exe strip tools/hprof-conv.exe
|
tools.atree | 56 bin/hprof-conv strip tools/hprof-conv
|
/dalvik/vm/ |
Dvm.mk | 134 hprof/Hprof.cpp \ 135 hprof/HprofClass.cpp \ 136 hprof/HprofHeap.cpp \ 137 hprof/HprofOutput.cpp \ 138 hprof/HprofString.cpp \
|
/art/runtime/native/ |
dalvik_system_VMDebug.cc | 26 #include "hprof/hprof.h" 41 features.push_back("hprof-heap-dump"); 42 features.push_back("hprof-heap-dump-streaming"); 172 * Cause "hprof" data to be dumped. We can throw an IOException if an 204 hprof::DumpHeap(filename.c_str(), fd, false); 208 hprof::DumpHeap("[DDMS]", -1, true);
|
/art/runtime/ |
Android.mk | 61 hprof/hprof.cc \
|
/development/build/tools/ |
windows_sdk.mk | 39 hprof-conv \
|
/device/generic/armv7-a-neon/ |
mini_common.mk | 59 hprof-conv \
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/ |
messages.properties | 28 DeviceView_Dump_HPROF_File=Dump HPROF file 29 DeviceView_Dump_HPROF_File_Not_Supported_By_VM=Dump HPROF file (not supported by this VM) 30 DeviceView_Dump_HPROF_File_Tooltip=Dump HPROF file 31 DeviceView_Failed_To_Save_HPROF_Data=Failed to save hprof data into temp file%1$s 32 DeviceView_HPROF_Error=HPROF Error 38 DeviceView_Save_HPROF_File=Save HPROF file 50 DeviceView_Unable_Create_HPROF_For_Application=Unable to create HPROF file for application '%1$s'.\n\n%2$s Check logcat for more information. 51 DeviceView_Unable_Download_HPROF_From_Device_One_Param_First_Message=Unable to download HPROF file from device '%1$s'. 52 DeviceView_Unable_Download_HPROF_From_Device_One_Param_Second_Message=Unable to download HPROF file from device '%1$s'. 53 DeviceView_Unable_Download_HPROF_From_Device_Two_Param=Unable to download HPROF file from device '%1$s'.\n\n%2$ [all...] |
/build/ |
envsetup.sh | 1125 # issue "am" command to cause the hprof dump 1127 local devFile=$sdcard/hprof-$targetPid 1128 #local devFile=/data/local/hprof-$targetPid 1132 echo "Press enter when logcat shows \"hprof: heap dump completed\"" 1136 local localFile=/tmp/$$-hprof [all...] |