Home
last modified time | relevance | path

Searched refs:oldFd (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/libs/binder/trusty/
DOS.cpp68 status_t dupFileDescriptor(int oldFd, int* newFd) { in dupFileDescriptor() argument
69 int res = dup(oldFd); in dupFileDescriptor()
/frameworks/native/libs/binder/
DOS_unix_base.cpp58 status_t dupFileDescriptor(int oldFd, int* newFd) { in dupFileDescriptor() argument
59 int ret = fcntl(oldFd, F_DUPFD_CLOEXEC, 0); in dupFileDescriptor()
DOS.h35 status_t dupFileDescriptor(int oldFd, int* newFd);
DParcel.cpp666 int oldFd = toRawFd(otherRpcFields->mFds->at(fdIndex)); in appendFrom() local
670 if (status_t status = binder::os::dupFileDescriptor(oldFd, &newFd); status != OK) { in appendFrom()
671 ALOGW("Failed to duplicate file descriptor %d: %s", oldFd, strerror(-status)); in appendFrom()