/dovecot/src/plugins/push-notification/ |
H A D | push-notification-event-flagsset.c | 127 const char *k, *const *keywords, *const *op; local 133 for (op = old_keywords; *op != NULL; op++) { 134 if (strcmp(*keywords, *op) == 0) { 139 if (*op == NULL) {
|
/dovecot/src/lib/ |
H A D | ioloop-epoll.c | 90 int op; local 103 op = first ? EPOLL_CTL_ADD : EPOLL_CTL_MOD; 105 if (epoll_ctl(ctx->epfd, op, io->fd, &event) < 0) { 106 if (errno == EPERM && op == EPOLL_CTL_ADD) { 113 op == EPOLL_CTL_ADD ? "add" : "mod", io->fd); 131 int op; local 142 op = last ? EPOLL_CTL_DEL : EPOLL_CTL_MOD; 144 if (epoll_ctl(ctx->epfd, op, io->fd, &event) < 0) { 147 op == EPOLL_CTL_DEL ? "del" : "mod", io->fd);
|
H A D | var-expand-if.c | 35 static enum var_expand_if_op var_expand_if_str_to_comp(const char *op) argument 58 if (strcmp(op, ops[i]) == 0) 68 enum var_expand_if_op op = var_expand_if_str_to_comp(_op); local 71 if (op == OP_UNKNOWN) { 76 if (op < OP_STR_EQ) { 87 switch(op) { 107 i_panic("Missing numeric comparator %u", op); 111 switch(op) { 168 i_panic("Missing generic comparator %u", op);
|
/dovecot/src/doveadm/ |
H A D | doveadm-mail-mailbox-metadata.c | 24 const char *op, 32 i_error("Failed to %s: %s", op, 22 cmd_mailbox_metadata_open_mailbox(struct metadata_cmd_context *mctx, struct mail_user *user, const char *op, struct mail_namespace **ns_r, struct mailbox **box_r) argument
|
/dovecot/src/lib-dict-backend/ |
H A D | dict-ldap.c | 308 ldap_dict_lookup_callback(struct ldap_result *result, struct dict_ldap_op *op) argument 310 pool_t pool = op->pool; 314 op->dict->pending--; 317 op->res.ret = -1; 318 op->res.error = ldap_result_get_error(result); 323 if (op->dict->set->debug > 0) 326 const char *const *values = ldap_entry_get_attribute(entry, op->map->value_attribute); 330 if (op->dict->set->debug > 0) 331 i_debug("ldap_dict_lookup_callback got attribute %s", op->map->value_attribute); 332 op 417 struct dict_ldap_op *op; local [all...] |
/dovecot/src/lib-fts/ |
H A D | test-fts-filter.c | 189 const char **ip, **op; local 196 op = output; 202 test_assert(*op == NULL); 204 test_assert(*op != NULL); 207 op++; 230 const char **ip, **op; local 237 op = output; 243 test_assert(*op == NULL); 245 test_assert(*op != NULL); 248 op 290 const char **ip, **op; local 338 const char **ip, **op; local [all...] |
/dovecot/src/lib-storage/index/mbox/ |
H A D | mbox-lock.c | 253 enum mbox_dotlock_op op) 287 if (op == MBOX_DOTLOCK_OP_LOCK) { 301 switch (op) { 251 mbox_dotlock_privileged_op(struct mbox_mailbox *mbox, struct dotlock_settings *set, enum mbox_dotlock_op op) argument
|
/dovecot/src/lib-fs/ |
H A D | fs-randomfail.c | 52 enum fs_op op; local 54 for (op = 0; op < FS_OP_COUNT; op++) { 55 if (strcmp(fs_op_names[op], str) == 0) { 56 *op_r = op; 69 enum fs_op op; local 74 if (fs_op_find(key, &op)) { 79 fs->op_probability[op] = num; 87 for (op 99 enum fs_op op; local 237 fs_random_fail(struct fs *_fs, int divider, enum fs_op op) argument 252 fs_file_random_fail_begin(struct randomfail_fs_file *file, enum fs_op op) argument 263 fs_file_random_fail_end(struct randomfail_fs_file *file, int ret, enum fs_op op) argument 275 fs_random_fail_range(struct fs *_fs, enum fs_op op, uoff_t *offset_r) argument [all...] |
H A D | fs-api.c | 416 static void fs_file_timing_start(struct fs_file *file, enum fs_op op) argument 420 if (file->timing_start[op].tv_sec == 0) { 421 if (gettimeofday(&file->timing_start[op], NULL) < 0) 443 void fs_file_timing_end(struct fs_file *file, enum fs_op op) argument 445 if (!file->fs->set.enable_timing || file->timing_start[op].tv_sec == 0) 448 fs_timing_end(&file->fs->stats.timings[op], &file->timing_start[op]); 450 file->timing_start[op].tv_sec = 0;
|