Searched refs:fd_count (Results 1 – 13 of 13) sorted by relevance
/frameworks/native/libs/vr/libbufferhub/ |
D | ion_buffer.cpp | 122 int IonBuffer::Import(const int* fd_array, int fd_count, const int* int_array, in Import() argument 130 fd_count, int_count, width, height, layer_count, stride, format, in Import() 133 if (fd_count < 0 || int_count < 0) { in Import() 138 native_handle_t* handle = native_handle_create(fd_count, int_count); in Import() 146 memcpy(handle->data, fd_array, sizeof(int) * fd_count); in Import() 147 memcpy(handle->data + fd_count, int_array, sizeof(int) * int_count); in Import() 165 const int fd_count = other->handle()->numFds; in Duplicate() local 168 if (fd_count < 0 || int_count < 0) in Duplicate() 171 native_handle_t* handle = native_handle_create(fd_count, int_count); in Duplicate() 178 for (int i = 0; i < fd_count; i++) in Duplicate() [all …]
|
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/ |
D | native_handle_wrapper.h | 27 const int fd_count = handle->numFds; in NativeHandleWrapper() local 32 for (int i = 0; i < fd_count; i++) { in NativeHandleWrapper() 36 ints_.push_back(handle->data[fd_count + i]); in NativeHandleWrapper() 41 size_t fd_count() const { return fds_.size(); } in fd_count() function
|
D | bufferhub_rpc.h | 32 const int fd_count = buffer.handle()->numFds; in NativeBufferHandle() local 34 for (int i = 0; i < fd_count; i++) { in NativeBufferHandle() 38 opaque_ints_.push_back(buffer.handle()->data[fd_count + i]); in NativeBufferHandle()
|
D | ion_buffer.h | 56 int Import(const int* fd_array, int fd_count, const int* int_array,
|
/frameworks/native/libs/binder/ |
D | Parcel.cpp | 1270 const size_t fd_count = val.getFdCount(); in write() local 1272 if ((len > INT32_MAX) || (fd_count >= gMaxFds)) { in write() 1281 err = this->writeInt32(fd_count); in write() 1290 if (fd_count) { in write() 1291 fds = new (std::nothrow) int[fd_count]; in write() 1293 ALOGE("write: failed to allocate requested %zu fds", fd_count); in write() 1298 err = val.flatten(buf, len, fds, fd_count); in write() 1299 for (size_t i=0 ; i<fd_count && err==NO_ERROR ; i++) { in write() 1303 if (fd_count) { in write() 1970 const size_t fd_count = this->readInt32(); in read() local [all …]
|
/frameworks/native/libs/vr/libpdx_uds/ |
D | ipc_helper.cpp | 173 uint32_t fd_count{0}; member 195 preamble.fd_count = file_handles_.size(); in Send() 310 file_handles_.reserve(preamble.fd_count); in Receive() 321 size_t fd_count = payload_len / sizeof(int); in Receive() local 322 std::transform(fds, fds + fd_count, std::back_inserter(file_handles_), in Receive()
|
D | service_endpoint.cpp | 529 info.fd_count = request.file_descriptors.size(); in ReceiveMessageForChannel() 575 info.fd_count = 0; in BuildCloseMessage()
|
/frameworks/native/libs/vr/libpdx/private/pdx/ |
D | service_endpoint.h | 30 size_t fd_count{0};
|
/frameworks/native/libs/vr/libpdx/fuzz/ |
D | message_fuzzer.cpp | 54 info.fd_count = fdp.ConsumeIntegral<size_t>(); in LLVMFuzzerTestOneInput()
|
D | helpers.h | 101 info.fd_count = _fdp->ConsumeIntegral<size_t>(); in MessageReceive()
|
/frameworks/native/libs/vr/libpdx/ |
D | service.cpp | 425 size_t Message::GetFileDescriptorCount() const { return info_.fd_count; } in GetFileDescriptorCount()
|
D | service_tests.cpp | 128 info->fd_count = 0; in SetupMessageInfo()
|
/frameworks/proto_logging/stats/ |
D | atoms.proto | 16162 optional int32 fd_count = 2; field
|