Home | History | Annotate | Download | only in bqhelper

Lines Matching defs:fds

225     int* fds = new int[numFds];
243 std::copy(handle->data, intsStart, fds);
249 int const* constFds = static_cast<int const*>(fds);
252 delete [] fds;
274 * int*& fds, size_t& numFds)
279 * int*& fds, size_t& numFds)
290 * `fds` is the pointer to the fd buffer to be filled, and `numFds` is the
291 * size (in ints) of the fd buffer pointed to by `fds`.
294 * `buffer`, `fds` is the pointer to the fd buffer to be read from, and
295 * `numFds` is the size (in ints) of the fd buffer pointed to by `fds`.
296 * - After a successful call to `flatten()` or `unflatten()`, `buffer` and `fds`
299 * - After an unsuccessful call, the values of `buffer`, `size`, `fds` and
316 * flatten(x, buffer, size, fds, numFds)
320 * x.flatten(buffer, size, fds, numFds)
365 * \param[in,out] fds The pointer to the flat fd buffer.
374 void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
391 *nh = native_handle_create_from_fd(*fds);
396 ++fds;
412 * \param[in,out] fds The pointer to the flat fd buffer.
417 void*& buffer, size_t& size, int*& fds, size_t& numFds) {
428 *fds = fd;
429 ++fds;
463 int* fds = static_cast<int*>(baseFds.get());
465 if (l.flatten(buffer, size, fds, numFds) != NO_ERROR) {
525 int* fds = static_cast<int*>(baseFds.get());
527 if (flattenFence(hidl_handle(nh), buffer, size, fds, numFds) != NO_ERROR) {
588 * \param[in,out] fds The pointer to the flat fd buffer.
596 void*& buffer, size_t& size, int*& fds, size_t& numFds) {
609 return flattenFence(t.fence, buffer, size, fds, numFds);
626 * \param[in,out] fds The pointer to the flat fd buffer.
636 void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
650 return unflattenFence(&t->fence, nh, buffer, size, fds, numFds);
723 * \param[in,out] fds The pointer to the flat fd buffer.
733 void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
772 buffer, size, fds, numFds);
792 * \param[in,out] fds The pointer to the flat fd buffer.
801 void*& buffer, size_t& size, int*& fds, size_t numFds) {
834 *(tSnapshot[snapshotIndex]), buffer, size, fds, numFds);
884 * \param[in,out] fds The pointer to the flat fd buffer.
895 void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
913 buffer, size, fds, numFds);
927 * \param[in,out] fds The pointer to the flat fd buffer.
935 void*& buffer, size_t& size, int*& fds, size_t& numFds) {
947 status_t status = flatten(t.deltas[deltaIndex], buffer, size, fds, numFds);
989 int* fds = baseFds.get();
991 if (l.flatten(buffer, size, fds, numFds) != NO_ERROR) {
1035 int* fds = static_cast<int*>(baseFds.get());
1037 if (flatten(t, buffer, size, fds, numFds) != NO_ERROR) {
1247 * \param[in,out] fds The pointer to the flat fd buffer.
1254 void*& buffer, size_t& size, int*& fds, size_t& numFds) {
1275 status_t status = flattenFence(hidl_handle(*nh), buffer, size, fds, numFds);
1294 * \param[in,out] fds The pointer to the flat fd buffer.
1305 void const*& buffer, size_t& size, int const*& fds, size_t& numFds) {
1332 buffer, size, fds, numFds);
1375 int* fds = baseFds.get();
1377 if (l.flatten(buffer, size, fds, numFds) != NO_ERROR) {
1421 int* fds = baseFds.get();
1424 if (flatten(t, &nh, buffer, size, fds, numFds) != NO_ERROR) {