Home | History | Annotate | Download | only in app

Lines Matching defs:profileFd

41     public ParcelFileDescriptor profileFd;
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 != null) {
115 return profileFd.describeContents();
124 if (profileFd != null) {
126 profileFd.writeToParcel(out, flags);
141 if (profileFd != null) {
142 proto.write(ProfilerInfoProto.PROFILE_FD, profileFd.getFd());
166 profileFd = in.readInt() != 0 ? ParcelFileDescriptor.CREATOR.createFromParcel(in) : null;
183 // TODO: Also check #profileFd for equality.