HomeSort by relevance Sort by last modified time
    Searched full:hproffile (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
LeakReporter.java 69 File hprofFile = new File(leakDir, LEAK_HPROF);
70 Debug.dumpHprofData(hprofFile.getAbsolutePath());
97 getIntent(hprofFile, dumpFile),
105 private Intent getIntent(File hprofFile, File dumpFile) {
107 Uri hprofUri = FileProvider.getUriForFile(mContext, FILEPROVIDER_AUTHORITY, hprofFile);
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
TfTestLauncher.java 368 * @param hprofFile file containing the Hprof report
371 private void logHprofResults(File hprofFile, ITestInvocationListener listener) {
372 if (hprofFile == null) {
376 if (!hprofFile.exists()) {
377 CLog.w("Hprof file %s was not found. Skipping parsing.", hprofFile.getAbsolutePath());
383 tmpGzip = TarUtil.gzip(hprofFile);
395 Map<String, String> results = parser.parse(hprofFile);

Completed in 330 milliseconds