Home
last modified time | relevance | path

Searched refs:ProfilerInfo (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/app/
DProfilerInfo.java28 public class ProfilerInfo implements Parcelable { class
42 public ProfilerInfo(String filename, ParcelFileDescriptor fd, int interval, boolean autoStop) { in ProfilerInfo() method in ProfilerInfo
69 public static final Parcelable.Creator<ProfilerInfo> CREATOR =
70 new Parcelable.Creator<ProfilerInfo>() {
71 public ProfilerInfo createFromParcel(Parcel in) {
72 return new ProfilerInfo(in);
75 public ProfilerInfo[] newArray(int size) {
76 return new ProfilerInfo[size];
80 private ProfilerInfo(Parcel in) { in ProfilerInfo() method in ProfilerInfo
DIApplicationThread.java66 ProfilerInfo profilerInfo) throws RemoteException; in scheduleLaunchActivity()
97 ComponentName testName, ProfilerInfo profilerInfo, Bundle testArguments, in bindApplication()
119 void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) in profilerControl()
DApplicationThreadNative.java154 ProfilerInfo profilerInfo = data.readInt() != 0 in onTransact()
155 ? ProfilerInfo.CREATOR.createFromParcel(data) : null; in onTransact()
277 ProfilerInfo profilerInfo = data.readInt() != 0 in onTransact()
278 ? ProfilerInfo.CREATOR.createFromParcel(data) : null; in onTransact()
416 ProfilerInfo profilerInfo = data.readInt() != 0 in onTransact()
417 ? ProfilerInfo.CREATOR.createFromParcel(data) : null; in onTransact()
773 ProfilerInfo profilerInfo) throws RemoteException { in scheduleLaunchActivity()
956 List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, in bindApplication()
1116 public void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) in profilerControl()
DIActivityManager.java66 ProfilerInfo profilerInfo, Bundle options) throws RemoteException; in startActivity()
69 ProfilerInfo profilerInfo, Bundle options, int userId) throws RemoteException; in startActivityAsUser()
72 … int flags, ProfilerInfo profilerInfo, Bundle options, int userId) throws RemoteException; in startActivityAsCaller()
75 int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, in startActivityAndWait()
87 IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options, in startVoiceActivity()
302 ProfilerInfo profilerInfo, int profileType) throws RemoteException; in profileControl()
DActivityManagerNative.java135 ProfilerInfo profilerInfo = data.readInt() != 0 in onTransact()
136 ? ProfilerInfo.CREATOR.createFromParcel(data) : null; in onTransact()
158 ProfilerInfo profilerInfo = data.readInt() != 0 in onTransact()
159 ? ProfilerInfo.CREATOR.createFromParcel(data) : null; in onTransact()
182 ProfilerInfo profilerInfo = data.readInt() != 0 in onTransact()
183 ? ProfilerInfo.CREATOR.createFromParcel(data) : null; in onTransact()
206 ProfilerInfo profilerInfo = data.readInt() != 0 in onTransact()
207 ? ProfilerInfo.CREATOR.createFromParcel(data) : null; in onTransact()
280 ProfilerInfo profilerInfo = data.readInt() != 0 in onTransact()
281 ? ProfilerInfo.CREATOR.createFromParcel(data) : null; in onTransact()
[all …]
DActivityThread.java301 ProfilerInfo profilerInfo;
453 ProfilerInfo initProfilerInfo;
467 public void setProfiler(ProfilerInfo profilerInfo) { in setProfiler()
626 ProfilerInfo profilerInfo) { in scheduleLaunchActivity()
757 ProfilerInfo profilerInfo, Bundle instrumentationArgs, in bindApplication()
897 public void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) { in profilerControl()
1437 handleProfilerControl(msg.arg1 != 0, (ProfilerInfo)msg.obj, msg.arg2); in handleMessage()
4149 final void handleProfilerControl(boolean start, ProfilerInfo profilerInfo, int profileType) { in handleProfilerControl()
/frameworks/base/cmds/am/src/com/android/commands/am/
DAm.java29 import android.app.ProfilerInfo;
741 ProfilerInfo profilerInfo = null; in runStart()
755 profilerInfo = new ProfilerInfo(mProfileFile, fd, mSamplingInterval, mAutoStop); in runStart()
1053 ProfilerInfo profilerInfo = null; in runProfile()
1068 profilerInfo = new ProfilerInfo(profileFile, fd, 0, false); in runProfile()
/frameworks/base/services/core/java/com/android/server/am/
DActivityStackSupervisor.java49 import android.app.ProfilerInfo;
787 ProfilerInfo profilerInfo, int userId) { in resolveActivity()
841 ProfilerInfo profilerInfo, WaitResult outResult, Configuration config, in startActivityMayWait()
1177 ProfilerInfo profilerInfo = profileFile != null in realStartActivityLocked()
1178 ? new ProfilerInfo(profileFile, profileFd, mService.mSamplingInterval, in realStartActivityLocked()
DActivityManagerService.java42 import android.app.ProfilerInfo;
3350 int startFlags, ProfilerInfo profilerInfo, Bundle options) { in startActivity()
3359 int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) { in startActivityAsUser()
3372 int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) { in startActivityAsCaller()
3439 int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) { in startActivityAndWait()
3500 IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo, in startVoiceActivity()
5986 ProfilerInfo profilerInfo = profileFile == null ? null in attachApplicationLocked()
5987 : new ProfilerInfo(profileFile, profileFd, samplingInterval, profileAutoStop); in attachApplicationLocked()
10275 void setProfileApp(ApplicationInfo app, String processName, ProfilerInfo profilerInfo) {
18624 ProfilerInfo profilerInfo, int profileType) throws RemoteException { in profileControl()