Searched defs:fd_count (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/libs/binder/
H A DParcel.cpp1272 const size_t fd_count = val.getFdCount(); local
1274 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) {
1283 err = this->writeInt32(fd_count);
1292 if (fd_count) {
1293 fds = new (std::nothrow) int[fd_count];
1295 ALOGE("write: failed to allocate requested %zu fds", fd_count);
1300 err = val.flatten(buf, len, fds, fd_count);
1301 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) {
1305 if (fd_count) {
2054 const size_t fd_count local
[all...]

Completed in 478 milliseconds