Lines Matching defs:iovec
89 struct iovec *iovec = NULL;
122 server_dispatch_message(s, iovec, n, m, ucred, tv, label, label_len, NULL, priority, object_pid);
143 if (!GREEDY_REALLOC(iovec, m, n + 2 + N_IOVEC_META_FIELDS + N_IOVEC_OBJECT_FIELDS)) {
159 iovec[n].iov_base = (char*) p;
160 iovec[n].iov_len = l;
161 entry_size += iovec[n].iov_len;
254 iovec[n].iov_base = k;
255 iovec[n].iov_len = (e - p) + 1 + l;
256 entry_size += iovec[n].iov_len;
270 IOVEC_SET_STRING(iovec[tn], "_TRANSPORT=journal");
293 server_dispatch_message(s, iovec, n, m, ucred, tv, label, label_len, NULL, priority, object_pid);
300 if (iovec[j].iov_base < buffer ||
301 (const uint8_t*) iovec[j].iov_base >= (const uint8_t*) buffer + buffer_size)
302 free(iovec[j].iov_base);
305 free(iovec);