Searched defs:ipc_cmd (Results 1 - 3 of 3) sorted by relevance

/dovecot/src/lib-master/
H A Dipc-client.c148 struct ipc_client_cmd *ipc_cmd; local
163 ipc_cmd = array_append_space(&client->cmds);
164 ipc_cmd->callback = callback;
165 ipc_cmd->context = context;
H A Dipc-server.c19 struct ipc_cmd { struct
43 struct ipc_cmd *cmd;
59 cmd = i_new(struct ipc_cmd, 1);
162 void ipc_cmd_send(struct ipc_cmd *cmd, const char *data)
168 static void ipc_cmd_finish(struct ipc_cmd *cmd, const char *line)
179 void ipc_cmd_success(struct ipc_cmd **_cmd)
184 void ipc_cmd_success_reply(struct ipc_cmd **_cmd, const char *data)
186 struct ipc_cmd *cmd = *_cmd;
192 void ipc_cmd_fail(struct ipc_cmd **_cmd, const char *errormsg)
194 struct ipc_cmd *cm
[all...]
/dovecot/src/ipc/
H A Dipc-connection.c240 struct ipc_connection_cmd *ipc_cmd; local
242 ipc_cmd = i_new(struct ipc_connection_cmd, 1);
243 ipc_cmd->tag = ++conn->cmd_tag_counter;
244 ipc_cmd->conn = conn;
245 ipc_cmd->callback = callback;
246 ipc_cmd->context = context;
247 array_append(&conn->cmds, &ipc_cmd, 1);
251 t_strdup_printf("%u\t%s\n", ipc_cmd->tag, cmd));

Completed in 19 milliseconds