Searched defs:n_iov_allocated (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
61 if (!GREEDY_REALLOC(*iov, *n_iov_allocated, *n_iov + 1))
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
140 if (!GREEDY_REALLOC(*iov, *n_iov_allocated, *n_iov + 1))
153 static int map_string_field(const char *field, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov) { argument
154 return map_string_field_internal(field, p, iov, n_iov_allocated, n_iov, false);
157 static int map_string_field_printable(const char *field, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigned *n_iov) { argument
158 return map_string_field_internal(field, p, iov, n_iov_allocated, n_iov, true);
161 static int map_generic_field(const char *prefix, const char **p, struct iovec **iov, size_t *n_iov_allocated, unsigne 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
339 size_t n_iov_allocated = 0; local
[all...]

Completed in 10 milliseconds