Searched defs:full_path (Results 1 - 3 of 3) sorted by relevance
/dovecot/src/lib-storage/list/ |
H A D | mailbox-list-delete.c | 146 string_t *full_path; local 169 full_path = t_str_new(256); 170 str_append(full_path, path); 171 str_append_c(full_path, '/'); 172 dir_len = str_len(full_path); 186 str_truncate(full_path, dir_len); 187 str_append(full_path, d->d_name); 190 if (mailbox_list_delete_trash(str_c(full_path), &error) < 0) { 193 str_c(full_path), error); 203 if (unlink(str_c(full_path)) [all...] |
/dovecot/src/doveadm/ |
H A D | doveadm-log.c | 94 string_t *full_path; local 103 full_path = t_str_new(256); 104 str_append(full_path, path); 105 str_append_c(full_path, '/'); 106 dir_len = str_len(full_path); 112 str_truncate(full_path, dir_len); 113 str_append(full_path, d->d_name); 114 if (stat(str_c(full_path), &st) < 0) 119 cmd_log_find_syslog_files(ctx, str_c(full_path)); 121 str_c(full_path)) [all...] |
/dovecot/src/lib-fs/ |
H A D | fs-posix.c | 44 char *temp_path, *full_path; member in struct:posix_fs_file 251 if ((slash = strrchr(file->full_path, '/')) != NULL) { 252 str_append_n(str, file->full_path, slash - file->full_path); 281 const char *path = file->full_path; 330 file->full_path = fs->path_prefix == NULL ? i_strdup(file->file.path) : 344 file->full_path); 374 i_free(file->full_path); 401 e_error(_file->event, "posix_fadvise(%s) failed: %m", file->full_path); 420 file->full_path); [all...] |
Completed in 16 milliseconds