HomeSort by relevance Sort by last modified time
    Searched refs:ProfilerInfo (Results 1 - 11 of 11) sorted by null

  /frameworks/base/core/java/android/app/
ProfilerInfo.java 28 public class ProfilerInfo implements Parcelable {
42 public ProfilerInfo(String filename, ParcelFileDescriptor fd, int interval, boolean autoStop) {
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) {
IApplicationThread.java 65 boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) throws RemoteException;
97 ComponentName testName, ProfilerInfo profilerInfo, Bundle testArguments,
121 void profilerControl(boolean start, ProfilerInfo profilerInfo, int profileType)
ApplicationThreadNative.java 161 ProfilerInfo profilerInfo = data.readInt() != 0
162 ? ProfilerInfo.CREATOR.createFromParcel(data) : null;
165 notResumed, isForward, profilerInfo);
287 ProfilerInfo profilerInfo = data.readInt() != 0
288 ? ProfilerInfo.CREATOR.createFromParcel(data) : null;
304 bindApplication(packageName, info, providers, testName, profilerInfo, testArgs,
443 ProfilerInfo profilerInfo = data.readInt() !=
    [all...]
IActivityManager.java 72 ProfilerInfo profilerInfo, Bundle options) throws RemoteException;
75 ProfilerInfo profilerInfo, Bundle options, int userId) throws RemoteException;
78 int flags, ProfilerInfo profilerInfo, Bundle options, boolean ignoreTargetSecurity,
82 int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options,
94 IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options
    [all...]
ActivityManagerNative.java 161 ProfilerInfo profilerInfo = data.readInt() != 0
162 ? ProfilerInfo.CREATOR.createFromParcel(data) : null;
166 resultTo, resultWho, requestCode, startFlags, profilerInfo, options);
184 ProfilerInfo profilerInfo = data.readInt() != 0
185 ? ProfilerInfo.CREATOR.createFromParcel(data) : null;
190 resultTo, resultWho, requestCode, startFlags, profilerInfo, options, userId);
208 ProfilerInfo profilerInfo = data.readInt() !=
    [all...]
ActivityThread.java 333 ProfilerInfo profilerInfo;
522 ProfilerInfo initProfilerInfo;
536 public void setProfiler(ProfilerInfo profilerInfo) {
537 ParcelFileDescriptor fd = profilerInfo.profileFd;
555 profileFile = profilerInfo.profileFile;
557 samplingInterval = profilerInfo.samplingInterval;
558 autoStopProfiler = profilerInfo.autoStopProfiler;
715 boolean notResumed, boolean isForward, ProfilerInfo profilerInfo)
    [all...]
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 36 import android.app.ProfilerInfo;
604 ProfilerInfo profilerInfo = null;
618 profilerInfo = new ProfilerInfo(mProfileFile, fd, mSamplingInterval, mAutoStop);
631 null, null, 0, mStartFlags, profilerInfo,
636 null, null, 0, mStartFlags, profilerInfo,
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStackSupervisor.java 33 import android.app.ProfilerInfo;
    [all...]
ActivityStarter.java 88 import android.app.ProfilerInfo;
441 null /*profilerInfo*/);
492 aInfo = mSupervisor.resolveActivity(intent, rInfo, startFlags, null /*profilerInfo*/);
    [all...]
ActivityManagerService.java 105 import android.app.ProfilerInfo;
    [all...]
  /frameworks/base/
compiled-classes-phone 411 android.app.ProfilerInfo
    [all...]

Completed in 483 milliseconds