Searched refs:iovs (Results 1 - 3 of 3) sorted by relevance

/fuchsia/zircon/kernel/lib/memory_limit/include/lib/
H A Dmemory_limit.h49 // @iovs[]: array of iovecs to stored returned vectors. Must have two entries.
50 // @used_cnt: the number of entries filled in and returned in iovs[].
55 iovec_t iovs[], size_t* used_cnt);
/fuchsia/zircon/kernel/lib/memory_limit/
H A Dmemory_limit.cpp41 iovec_t iovs[], size_t* used_cnt) {
43 DEBUG_ASSERT(iovs);
57 // used instead of iovs[] directly to avoid casting for (void*) math.
162 LTRACEF("Merging both iovs into a single iov base %#" PRIxPTR " size %zu\n",
196 // Build the iovs with the ranges figured out above
197 iovs[0].iov_base = reinterpret_cast<void*>(low_base);
198 iovs[0].iov_len = ROUNDUP_PAGE_SIZE(low_len);
199 iovs[1].iov_base = reinterpret_cast<void*>(high_base);
200 iovs[1].iov_len = ROUNDUP_PAGE_SIZE(high_len);
203 *used_cnt = !!(iovs[
40 mem_limit_get_iovs(mem_limit_ctx_t* ctx, uintptr_t range_base, size_t range_size, iovec_t iovs[], size_t* used_cnt) argument
[all...]
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A D__stdio_write.c6 struct iovec iovs[2] = {{.iov_base = f->wbase, .iov_len = f->wpos - f->wbase}, local
8 struct iovec* iov = iovs;

Completed in 27 milliseconds