Searched defs:line_r (Results 1 - 4 of 4) sorted by relevance
/dovecot/src/doveadm/ |
H A D | doveadm-penalty.c | 28 static void penalty_parse_line(const char *line, struct penalty_line *line_r) argument 36 i_zero(line_r); 38 (void)net_addr2ip(ident, &line_r->ip); 39 if (str_to_uint(penalty_str, &line_r->penalty) < 0 || 40 str_to_time(last_penalty_str, &line_r->last_penalty) < 0 || 41 str_to_time(last_update_str, &line_r->last_update) < 0)
|
H A D | doveadm-who.c | 81 static int who_parse_line(const char *line, struct who_line *line_r) argument 89 i_zero(line_r); 96 if (str_to_pid(pid_str, &line_r->pid) < 0) 98 line_r->service = t_strdup_until(ident, p++); 99 line_r->username = strchr(p, '/'); 100 if (line_r->username == NULL) { 102 line_r->username = p; 104 ip_str = t_strdup_until(p, line_r->username++); 105 (void)net_addr2ip(ip_str, &line_r->ip); 107 if (str_to_uint(refcount_str, &line_r [all...] |
/dovecot/src/lib-smtp/ |
H A D | smtp-command-parser.c | 510 const char **line_r, 546 *line_r = parser->state.cmd_params; 509 smtp_command_parse_auth_response(struct smtp_command_parser *parser, const char **line_r, enum smtp_command_parse_error *error_code_r, const char **error_r) argument
|
/dovecot/src/doveadm/dsync/ |
H A D | dsync-ibc-stream.c | 401 const char **line_r) 409 *line_r = line; 430 *line_r = i_stream_next_line(ibc->input); 431 if (*line_r == NULL) { 400 dsync_ibc_stream_next_line(struct dsync_ibc_stream *ibc, const char **line_r) argument
|
Completed in 29 milliseconds