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

/systemd/src/journal/
H A Djournald-audit.c32 int (*map)(const char *field, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov);
35 static int map_simple_field(const char *field, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov) { argument
43 assert(n_iov);
61 if (!GREEDY_REALLOC(*iov, *n_iov_allocated, *n_iov + 1))
64 (*iov)[*n_iov].iov_base = c;
65 (*iov)[*n_iov].iov_len = l;
66 (*n_iov) ++;
74 static int map_string_field_internal(const char *field, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov, bool filter_printable) { argument
82 assert(n_iov);
140 if (!GREEDY_REALLOC(*iov, *n_iov_allocated, *n_iov
153 map_string_field(const char *field, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov) argument
157 map_string_field_printable(const char *field, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov) argument
161 map_generic_field(const char *prefix, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov) argument
259 map_all_fields( const char *p, const MapField map_fields[], const char *prefix, bool handle_msg, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov) argument
340 unsigned n_iov = 0, k; local
[all...]

Completed in 29 milliseconds