Home
last modified time | relevance | path

Searched refs:profileFile (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/core/java/android/app/
DProfilerInfo.java31 public final String profileFile; field in ProfilerInfo
43 profileFile = filename; in ProfilerInfo()
58 out.writeString(profileFile); in writeToParcel()
81 profileFile = in.readString(); in ProfilerInfo()
DActivityThread.java534 String profileFile; field in ActivityThread.Profiler
559 profileFile = profilerInfo.profileFile; in setProfiler()
570 VMDebug.startMethodTracing(profileFile, profileFd.getFileDescriptor(), in startProfiling()
574 Slog.w(TAG, "Profiling failed on path " + profileFile); in startProfiling()
594 profileFile = null; in stopProfiling()
2033 return mProfiler != null && mProfiler.profileFile != null in isProfiling()
2038 return mProfiler.profileFile; in getProfileFilePath()
4843 Slog.w(TAG, "Profiling failed on path " + profilerInfo.profileFile in handleProfilerControl()
5110 mProfiler.profileFile = data.initProfilerInfo.profileFile; in handleBindApplication()
5353 if (mProfiler.profileFile != null && !ii.handleProfiling in handleBindApplication()
[all …]
DLoadedApk.java593 final File profileFile = getPrimaryProfileFile(mPackageName); in setupJitProfileSupport() local
597 VMRuntime.registerAppInfo(profileFile.getPath(), mApplicationInfo.dataDir, in setupJitProfileSupport()
DContextImpl.java1497 String profileFile, Bundle arguments) { in startInstrumentation() argument
1503 className, profileFile, 0, arguments, null, null, getUserId(), in startInstrumentation()
DIActivityManager.java260 public boolean startInstrumentation(ComponentName className, String profileFile, in startInstrumentation() argument
DActivityManagerNative.java1185 String profileFile = data.readString(); in onTransact() local
1194 boolean res = startInstrumentation(className, profileFile, fl, arguments, w, c, userId, in onTransact()
4530 public boolean startInstrumentation(ComponentName className, String profileFile, in startInstrumentation() argument
4538 data.writeString(profileFile); in startInstrumentation()
/frameworks/base/cmds/am/src/com/android/commands/am/
DAm.java786 String profileFile = null;
799 profileFile = nextArgRequired();
897 if (!mAm.startInstrumentation(cn, profileFile, 0, args, watcher, connection, userId, abi)) {
978 String profileFile = null;
1036 profileFile = nextArgRequired();
1039 new File(profileFile),
1044 System.err.println("Error: Unable to open file: " + profileFile);
1048 profilerInfo = new ProfilerInfo(profileFile, fd, mSamplingInterval, false);
/frameworks/base/core/java/android/content/
DContextWrapper.java653 String profileFile, Bundle arguments) { in startInstrumentation() argument
654 return mBase.startInstrumentation(className, profileFile, arguments); in startInstrumentation()
DContext.java2639 @Nullable String profileFile, @Nullable Bundle arguments); in startInstrumentation() argument
/frameworks/base/test-runner/src/android/test/mock/
DMockContext.java541 String profileFile, Bundle arguments) { in startInstrumentation() argument
/frameworks/base/services/core/java/com/android/server/am/
DActivityStackSupervisor.java1281 final String profileFile = mService.mProfileFile; in realStartActivityLocked() local
1282 if (profileFile != null) { in realStartActivityLocked()
1298 profilerInfo = new ProfilerInfo(profileFile, profileFd, in realStartActivityLocked()
DActivityManagerService.java6556 String profileFile = app.instrumentationProfileFile; in attachApplicationLocked() local
6562 profileFile = mProfileFile; in attachApplicationLocked()
6594 ProfilerInfo profilerInfo = profileFile == null ? null in attachApplicationLocked()
6595 : new ProfilerInfo(profileFile, profileFd, samplingInterval, profileAutoStop); in attachApplicationLocked()
12069 mProfileFile = profilerInfo.profileFile; in setProfileApp()
18707 String profileFile, int flags, Bundle arguments, in startInstrumentation() argument
18766 app.instrumentationProfileFile = profileFile; in startInstrumentation()