fhd                66 src/file_history.c     file_history_data_t *fhd;
fhd                73 src/file_history.c     fhd = g_new (file_history_data_t, 1);
fhd                74 src/file_history.c     fhd->file_name = str_unescape (buf, s - buf, "", TRUE);
fhd                78 src/file_history.c     fhd->file_pos = g_strndup (s + 1, len - 1);  // ignore '\n'
fhd                80 src/file_history.c     *file_list = g_list_prepend (*file_list, fhd);
fhd                86 src/file_history.c file_history_write_entry (const file_history_data_t *fhd, GString *s)
fhd                91 src/file_history.c         file_name = str_escape (fhd->file_name, -1, "", TRUE);
fhd                96 src/file_history.c     if (fhd->file_pos != NULL)
fhd                99 src/file_history.c         g_string_append (s, fhd->file_pos);
fhd               178 src/file_history.c     file_history_data_t *fhd = (file_history_data_t *) data;
fhd               181 src/file_history.c     width = str_term_width1 (fhd->file_name);
fhd               184 src/file_history.c     listbox_add_item (hd->listbox, LISTBOX_APPEND_AT_END, 0, fhd->file_name, fhd->file_pos, TRUE);
fhd               186 src/file_history.c     fhd->file_pos = NULL;
fhd               194 src/file_history.c     file_history_data_t *fhd;
fhd               198 src/file_history.c     fhd = g_new (file_history_data_t, 1);
fhd               199 src/file_history.c     fhd->file_name = le->text;
fhd               201 src/file_history.c     fhd->file_pos = (char *) le->data;
fhd               204 src/file_history.c     return fhd;
fhd               212 src/file_history.c     file_history_data_t *fhd = (file_history_data_t *) data;
fhd               214 src/file_history.c     g_free (fhd->file_name);
fhd               215 src/file_history.c     g_free (fhd->file_pos);
fhd               216 src/file_history.c     g_free (fhd);
fhd                59 tests/src/file_history.c     const file_history_data_t fhd = {
fhd                65 tests/src/file_history.c     file_history_write_entry (&fhd, s);