Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/
DParcel.cpp973 const size_t fd_count = val.getFdCount(); in write() local
975 if ((len > INT32_MAX) || (fd_count > INT32_MAX)) { in write()
984 err = this->writeInt32(fd_count); in write()
993 if (fd_count) { in write()
994 fds = new int[fd_count]; in write()
997 err = val.flatten(buf, len, fds, fd_count); in write()
998 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) { in write()
1002 if (fd_count) { in write()
1411 const size_t fd_count = this->readInt32(); in read() local
1425 if (fd_count) { in read()
[all …]