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

/frameworks/native/libs/ui/
H A DFence.cpp159 uint32_t numFds; local
160 FlattenableUtils::read(buffer, size, numFds);
162 if (numFds > 1) {
166 if (count < numFds) {
170 if (numFds) {
H A DGraphicBuffer.cpp263 return handle ? handle->numFds : 0;
286 buf[8] = handle->numFds;
289 memcpy(fds, h->data, h->numFds*sizeof(int));
290 memcpy(&buf[10], h->data + h->numFds, h->numInts*sizeof(int));
296 fds += handle->numFds;
297 count -= handle->numFds;
310 const size_t numFds = buf[8]; local
324 if (numFds || numInts) {
330 native_handle* h = native_handle_create(numFds, numInts);
331 memcpy(h->data, fds, numFds*sizeo
[all...]

Completed in 151 milliseconds