Home
last modified time | relevance | path

Searched refs:mProfileFile (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DActiveInstrumentation.java44 String mProfileFile; field in ActiveInstrumentation
122 if (mProfileFile != null) { in dump()
123 pw.print(prefix); pw.print("mProfileFile="); pw.println(mProfileFile); in dump()
154 proto.write(ActiveInstrumentationProto.PROFILE_FILE, mProfileFile); in dumpDebug()
DActivityManagerShellCommand.java158 private String mProfileFile; field in ActivityManagerShellCommand
340 mProfileFile = null; in makeIntent()
364 mProfileFile = getNextArgRequired(); in makeIntent()
367 mProfileFile = getNextArgRequired(); in makeIntent()
504 if (mProfileFile != null || mAgent != null) {
506 if (mProfileFile != null) {
507 fd = openFileForSystem(mProfileFile, "w");
512 profilerInfo = new ProfilerInfo(mProfileFile, fd, mSamplingInterval, mAutoStop,
DAppProfiler.java2055 } else if (instr != null && instr.mProfileFile != null) { in setupProfilerInfoLocked()
2056 profilerInfo = new ProfilerInfo(instr.mProfileFile, null, 0, false, false, in setupProfilerInfoLocked()
DActivityManagerService.java13794 activeInstr.mProfileFile = profileFile; in startInstrumentation()