Home | History | Annotate | Download | only in hprof

Lines Matching full:hprof

18  * Preparation and completion of hprof data generation.  The output is
25 #include "hprof.h"
63 namespace hprof {
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);
491 hprof->VisitRoot(obj);
498 Hprof* hprof = reinterpret_cast<Hprof*>(arg);
499 hprof->DumpHeapObject(obj);
682 DISALLOW_COPY_AND_ASSIGN(Hprof);
747 int Hprof::MarkRootObject(const mirror::Object* obj, jobject jniObj) {
834 int Hprof::DumpHeapObject(mirror::Object* obj) {
1041 void Hprof::VisitRoot(const mirror::Object* obj) {
1082 Hprof hprof(filename, fd, direct_to_ddms);
1083 hprof.Dump();
1087 } // namespace hprof