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 90 src/file_history.c file_name = str_escape (fhd->file_name, -1, "", TRUE); fhd 94 src/file_history.c if (fhd->file_pos != NULL) fhd 97 src/file_history.c g_string_append (s, fhd->file_pos); fhd 176 src/file_history.c file_history_data_t *fhd = (file_history_data_t *) data; fhd 179 src/file_history.c width = str_term_width1 (fhd->file_name); fhd 182 src/file_history.c listbox_add_item (hd->listbox, LISTBOX_APPEND_AT_END, 0, fhd->file_name, fhd->file_pos, TRUE); fhd 184 src/file_history.c fhd->file_pos = NULL; fhd 192 src/file_history.c file_history_data_t *fhd; fhd 196 src/file_history.c fhd = g_new (file_history_data_t, 1); fhd 197 src/file_history.c fhd->file_name = le->text; fhd 199 src/file_history.c fhd->file_pos = (char *) le->data; fhd 202 src/file_history.c return fhd; fhd 210 src/file_history.c file_history_data_t *fhd = (file_history_data_t *) data; fhd 212 src/file_history.c g_free (fhd->file_name); fhd 213 src/file_history.c g_free (fhd->file_pos); fhd 214 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);