Searched defs:n_iovec (Results 1 - 4 of 4) sorted by relevance
/systemd/src/journal/ |
H A D | journald-syslog.c | 45 static void forward_syslog_iovec(Server *s, const struct iovec *iovec, unsigned n_iovec, const struct ucred *ucred, const struct timeval *tv) { argument 53 .msg_iovlen = n_iovec, 66 assert(n_iovec > 0);
|
H A D | journal-file.c | 1518 int journal_file_append_entry(JournalFile *f, const dual_timestamp *ts, const struct iovec iovec[], unsigned n_iovec, uint64_t *seqnum, Object **ret, uint64_t *offset) { argument 1527 assert(iovec || n_iovec == 0); 1541 items = alloca(sizeof(EntryItem) * MAX(1u, n_iovec)); 1543 for (i = 0; i < n_iovec; i++) { 1558 qsort_safe(items, n_iovec, sizeof(EntryItem), entry_item_cmp); 1560 r = journal_file_append_entry_internal(f, ts, xor_hash, items, n_iovec, seqnum, ret, offset);
|
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-message.h | 129 unsigned n_iovec; member in struct:sd_bus_message
|
/systemd/src/coredump/ |
H A D | coredump.c | 593 size_t n_iovec, 603 assert(n_iovec_allocated >= n_iovec + 3); 624 IOVEC_SET_STRING(iovec[n_iovec++], coredump_filename); 657 IOVEC_SET_STRING(iovec[n_iovec++], core_message); 668 iovec[n_iovec].iov_base = coredump_data; 669 iovec[n_iovec].iov_len = sz; 670 n_iovec++; 674 assert(n_iovec <= n_iovec_allocated); 676 r = sd_journal_sendv(iovec, n_iovec); 721 size_t n_iovec local 589 submit_coredump( const char *context[_CONTEXT_MAX], struct iovec *iovec, size_t n_iovec_allocated, size_t n_iovec, int input_fd) argument 833 send_iovec(const struct iovec iovec[], size_t n_iovec, int input_fd) argument 912 size_t n_iovec = 0; local [all...] |
Completed in 25 milliseconds