HomeSort by relevance Sort by last modified time
    Searched defs:ScopedFd (Results 1 - 5 of 5) sorted by null

  /libnativehelper/include/nativehelper/
ScopedFd.h 26 class ScopedFd final {
28 explicit ScopedFd(int fd) : fd_(fd) {
30 ScopedFd() : ScopedFd(-1) {}
32 ~ScopedFd() {
36 ScopedFd(ScopedFd&& other) : fd_(other.release()) {}
37 ScopedFd& operator = (ScopedFd&& s) {
65 DISALLOW_COPY_AND_ASSIGN(ScopedFd);
    [all...]
  /system/core/adb/
adb_utils.h 62 class ScopedFd {
64 ScopedFd() {
67 ~ScopedFd() {
97 DISALLOW_COPY_AND_ASSIGN(ScopedFd);
  /system/vold/
Utils.h 121 class ScopedFd {
124 ScopedFd(int fd);
125 ~ScopedFd();
128 DISALLOW_COPY_AND_ASSIGN(ScopedFd);
Utils.cpp 682 ScopedFd::ScopedFd(int fd) : fd_(fd) {}
684 ScopedFd::~ScopedFd() {
  /frameworks/base/packages/MtpDocumentsProvider/jni/
com_android_mtp_AppFuse.cpp 95 class ScopedFd {
99 explicit ScopedFd(int fd) : mFd(fd) {}
100 ~ScopedFd() {
450 ScopedFd fd(static_cast<int>(jfd));

Completed in 873 milliseconds