Searched refs:profileFd (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/app/
H A DProfilerInfo.java39 public ParcelFileDescriptor profileFd; field in class:ProfilerInfo
60 profileFd = fd;
69 profileFd = in.profileFd;
77 * Close profileFd, if it is open. The field will be null after a call to this function.
80 if (profileFd != null) {
82 profileFd.close();
86 profileFd = null;
92 if (profileFd != null) {
93 return profileFd
[all...]
H A DActivityThread.java572 ParcelFileDescriptor profileFd; field in class:ActivityThread.Profiler
579 ParcelFileDescriptor fd = profilerInfo.profileFd;
590 if (profileFd != null) {
592 profileFd.close();
598 profileFd = fd;
604 if (profileFd == null || profiling) {
609 VMDebug.startMethodTracing(profileFile, profileFd.getFileDescriptor(),
616 profileFd.close();
617 profileFd = null;
627 if (profileFd !
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java7055 if (profilerInfo != null && profilerInfo.profileFd != null) {
7056 profilerInfo.profileFd = profilerInfo.profileFd.dup();
12809 if (mProfilerInfo.profileFd != null) {
12811 mProfilerInfo.profileFd.close();
15985 (mProfilerInfo.profileFile != null || mProfilerInfo.profileFd != null))) {
15994 mProfilerInfo.profileFd);
23398 if (mProfilerInfo !=null && mProfilerInfo.profileFd != null) {
23400 mProfilerInfo.profileFd.close();
23422 if (start && (profilerInfo == null || profilerInfo.profileFd
[all...]
H A DActivityStackSupervisor.java1432 if (profilerInfoSvc.profileFd != null) {
1434 profilerInfoSvc.profileFd = profilerInfoSvc.profileFd.dup();

Completed in 260 milliseconds