/frameworks/base/core/java/android/app/ |
D | ProfilerInfo.java | 31 public final String profileFile; field in ProfilerInfo 43 profileFile = filename; in ProfilerInfo() 58 out.writeString(profileFile); in writeToParcel() 81 profileFile = in.readString(); in ProfilerInfo()
|
D | ActivityThread.java | 534 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 …]
|
D | LoadedApk.java | 593 final File profileFile = getPrimaryProfileFile(mPackageName); in setupJitProfileSupport() local 597 VMRuntime.registerAppInfo(profileFile.getPath(), mApplicationInfo.dataDir, in setupJitProfileSupport()
|
D | ContextImpl.java | 1497 String profileFile, Bundle arguments) { in startInstrumentation() argument 1503 className, profileFile, 0, arguments, null, null, getUserId(), in startInstrumentation()
|
D | IActivityManager.java | 260 public boolean startInstrumentation(ComponentName className, String profileFile, in startInstrumentation() argument
|
D | ActivityManagerNative.java | 1185 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/ |
D | Am.java | 786 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/ |
D | ContextWrapper.java | 653 String profileFile, Bundle arguments) { in startInstrumentation() argument 654 return mBase.startInstrumentation(className, profileFile, arguments); in startInstrumentation()
|
D | Context.java | 2639 @Nullable String profileFile, @Nullable Bundle arguments); in startInstrumentation() argument
|
/frameworks/base/test-runner/src/android/test/mock/ |
D | MockContext.java | 541 String profileFile, Bundle arguments) { in startInstrumentation() argument
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ActivityStackSupervisor.java | 1281 final String profileFile = mService.mProfileFile; in realStartActivityLocked() local 1282 if (profileFile != null) { in realStartActivityLocked() 1298 profilerInfo = new ProfilerInfo(profileFile, profileFd, in realStartActivityLocked()
|
D | ActivityManagerService.java | 6556 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()
|