Lines Matching refs:file_prefix
70 const char* file_prefix; member
79 ZX_DEBUG_ASSERT(strchr(state->file_prefix, '/') == NULL); in complete_at_dir()
80 size_t file_prefix_len = strlen(state->file_prefix); in complete_at_dir()
84 if (strncmp(state->file_prefix, de->d_name, file_prefix_len)) { in complete_at_dir()
153 char* file_prefix = strrchr(partial_path, '/'); in tab_complete() local
154 if (file_prefix == NULL) { in tab_complete()
155 file_prefix = partial_path; in tab_complete()
166 completion_state.file_prefix = file_prefix; in tab_complete()
172 completion_state.file_prefix = file_prefix; in tab_complete()
178 ZX_DEBUG_ASSERT(*file_prefix == '/'); in tab_complete()
179 *file_prefix = '\0'; in tab_complete()
183 completion_state.file_prefix = file_prefix + 1; in tab_complete()