Searched defs:profileFd (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
H A DProfilerInfo.java41 public ParcelFileDescriptor profileFd; field in class:ProfilerInfo
71 profileFd = fd;
81 profileFd = in.profileFd;
94 return new ProfilerInfo(this.profileFile, this.profileFd, this.samplingInterval,
99 * Close profileFd, if it is open. The field will be null after a call to this function.
102 if (profileFd != null) {
104 profileFd.close();
108 profileFd = null;
114 if (profileFd !
[all...]
H A DActivityThread.java656 ParcelFileDescriptor profileFd; field in class:ActivityThread.Profiler
663 ParcelFileDescriptor fd = profilerInfo.profileFd;
674 if (profileFd != null) {
676 profileFd.close();
682 profileFd = fd;
688 if (profileFd == null || profiling) {
693 VMDebug.startMethodTracing(profileFile, profileFd.getFileDescriptor(),
700 profileFd.close();
701 profileFd = null;
711 if (profileFd !
[all...]

Completed in 37 milliseconds