next 62 lib/hook.c new_hook->next = *hook_list; next 83 lib/hook.c hook_list = hook_list->next; next 90 lib/hook.c new_hook = new_hook->next; next 96 lib/hook.c hook_list = hook_list->next; next 107 lib/hook.c hook_t *current, *next; next 109 lib/hook.c for (current = *hook_list; current != NULL; current = next) next 111 lib/hook.c next = current->next; next 127 lib/hook.c for (p = hook_list; p != NULL; p = p->next) next 20 lib/hook.h struct hook_t *next; next 403 lib/strutil/strutilutf8.c char *next; next 405 lib/strutil/strutilutf8.c next = g_utf8_next_char (*string); next 406 lib/strutil/strutilutf8.c (*left) -= next - (*string); next 407 lib/strutil/strutilutf8.c (*string) = next; next 243 lib/tty/key.c struct key_def *next; next 683 lib/tty/key.c p->next = NULL; next 1199 lib/tty/key.c k_dispose (k->next); next 1660 lib/tty/key.c if (base->next != NULL) next 1661 lib/tty/key.c base = base->next; next 1664 lib/tty/key.c base->next = create_sequence (seq, code, action); next 1876 lib/tty/key.c if (this->next != NULL) next 1878 lib/tty/key.c this = this->next; next 197 lib/widget/dialog-switch.c GList *next; next 202 lib/widget/dialog-switch.c next = g_list_next (mc_current); next 203 lib/widget/dialog-switch.c if (next == NULL) next 204 lib/widget/dialog-switch.c next = mc_dialogs; next 206 lib/widget/dialog-switch.c dialog_switch_goto (next); next 82 lib/widget/group.c group_get_next_or_prev_of (GList *list, gboolean next) next 92 lib/widget/group.c if (next) next 113 lib/widget/group.c group_select_next_or_prev (WGroup *g, gboolean next) next 121 lib/widget/group.c l = group_get_next_or_prev_of (l, next); next 613 lib/widget/input.c GList *next; next 625 lib/widget/input.c next = g_list_next (in->history.current); next 626 lib/widget/input.c if (next == NULL) next 633 lib/widget/input.c input_assign_text (in, (char *) next->data); next 634 lib/widget/input.c in->history.current = next; next 99 src/background.c new->next = task_list; next 122 src/background.c prev->next = p->next; next 124 src/background.c task_list = p->next; next 130 src/background.c p = p->next; next 279 src/background.c for (p = task_list; p != NULL; p = p->next) next 25 src/background.h struct TaskList *next; next 72 src/editor/bookmark.c if (p->next != NULL) next 73 src/editor/bookmark.c while (p->next->line == p->line) next 74 src/editor/bookmark.c p = p->next; next 94 src/editor/bookmark.c for (p = edit->book_mark; p != NULL; p = p->next) next 99 src/editor/bookmark.c if (p->next != NULL) next 101 src/editor/bookmark.c if (p->next->line > line) next 116 src/editor/bookmark.c if (p->next != NULL && p->next->line <= line) next 121 src/editor/bookmark.c if (p->next != NULL) next 123 src/editor/bookmark.c if (p->next->line > line) next 197 src/editor/bookmark.c q->next = p->next; next 200 src/editor/bookmark.c if (p->next != NULL) next 201 src/editor/bookmark.c p->next->prev = q; next 202 src/editor/bookmark.c p->next = q; next 233 src/editor/bookmark.c p->prev->next = p->next; next 234 src/editor/bookmark.c if (p->next != NULL) next 235 src/editor/bookmark.c p->next->prev = p->prev; next 242 src/editor/bookmark.c if (edit->book_mark->line == -1 && edit->book_mark->next == NULL) next 262 src/editor/bookmark.c for (q = edit->book_mark->next; q != NULL; q = p) next 264 src/editor/bookmark.c p = q->next; next 267 src/editor/bookmark.c q->prev->next = q->next; next 273 src/editor/bookmark.c if (edit->book_mark->next == NULL) next 290 src/editor/bookmark.c for (p = p->next; p != NULL; p = p->next) next 306 src/editor/bookmark.c for (p = p->next; p != NULL; p = p->next) next 328 src/editor/bookmark.c for (p = book_mark_find (edit, 0); p != NULL; p = p->next) next 3875 src/editor/edit.c if (p->next != NULL) next 3877 src/editor/edit.c p = p->next; next 649 src/editor/editbuffer.c long next; next 651 src/editor/editbuffer.c next = edit_buffer_get_eol (buf, current) + 1; next 652 src/editor/editbuffer.c if (next > buf->size) next 654 src/editor/editbuffer.c current = next; next 39 src/editor/editwidget.h edit_book_mark_t *next; next 472 src/filemanager/boxes.c for (tl = task_list; tl != NULL; tl = tl->next) next 1446 src/filemanager/file.c struct vfs_dirent *next; next 1454 src/filemanager/file.c while ((next = mc_readdir (reading)) && return_status != FILE_ABORT) next 1459 src/filemanager/file.c if (DIR_IS_DOT (next->d_name) || DIR_IS_DOTDOT (next->d_name)) next 1462 src/filemanager/file.c tmp_vpath = vfs_path_append_new (vpath, next->d_name, (char *) NULL); next 2969 src/filemanager/file.c struct vfs_dirent *next; next 3184 src/filemanager/file.c while ((next = mc_readdir (reading)) && return_status != FILE_ABORT) next 3192 src/filemanager/file.c if (DIR_IS_DOT (next->d_name) || DIR_IS_DOTDOT (next->d_name)) next 3196 src/filemanager/file.c path = mc_build_filename (s, next->d_name, (char *) NULL); next 3204 src/filemanager/file.c mdpath = mc_build_filename (d, next->d_name, (char *) NULL); next 148 src/filemanager/hotlist.c struct hotlist *next; next 274 src/filemanager/hotlist.c for (current = current_group->head; current != NULL; current = current->next) next 302 src/filemanager/hotlist.c current_group->head = entry->next; next 305 src/filemanager/hotlist.c while (current != NULL && current->next != entry) next 306 src/filemanager/hotlist.c current = current->next; next 308 src/filemanager/hotlist.c current->next = entry->next; next 310 src/filemanager/hotlist.c entry->next = entry->up = NULL; next 365 src/filemanager/hotlist.c while (p->next != NULL) next 366 src/filemanager/hotlist.c p = p->next; next 367 src/filemanager/hotlist.c p->next = item; next 371 src/filemanager/hotlist.c if (moveto_item->next == NULL) next 372 src/filemanager/hotlist.c moveto_item->next = item; next 375 src/filemanager/hotlist.c item->next = moveto_item->next; next 376 src/filemanager/hotlist.c moveto_item->next = item; next 382 src/filemanager/hotlist.c item->next = moveto_item; next 388 src/filemanager/hotlist.c while (p->next != moveto_item) next 389 src/filemanager/hotlist.c p = p->next; next 390 src/filemanager/hotlist.c item->next = p->next; next 391 src/filemanager/hotlist.c p->next = item; next 948 src/filemanager/hotlist.c new->next = current->next; next 949 src/filemanager/hotlist.c current->next = new; next 954 src/filemanager/hotlist.c new->next = current; next 961 src/filemanager/hotlist.c while (p->next != current) next 962 src/filemanager/hotlist.c p = p->next; next 964 src/filemanager/hotlist.c new->next = current; next 965 src/filemanager/hotlist.c p->next = new; next 971 src/filemanager/hotlist.c while (p->next != NULL) next 972 src/filemanager/hotlist.c p = p->next; next 974 src/filemanager/hotlist.c p->next = new; next 1121 src/filemanager/hotlist.c struct hotlist *next = current->next; next 1130 src/filemanager/hotlist.c current = next; next 1165 src/filemanager/hotlist.c if (head != NULL && (head->type != HL_TYPE_DOTDOT || head->next != NULL)) next 1221 src/filemanager/hotlist.c for (current = grp->head; current; current = current->next) next 1533 src/filemanager/hotlist.c for (current = grp->head; current != NULL; current = current->next) next 819 src/filemanager/mountlist.c struct rootdir_entry *next; next 857 src/filemanager/mountlist.c rootdir_tail = &re->next; next 872 src/filemanager/mountlist.c for (re = rootdir_list; re; re = re->next) next 894 src/filemanager/mountlist.c rootdir_list = re->next; next 3525 src/filemanager/panel.c GList *next; next 3528 src/filemanager/panel.c next = g_list_next (panel->dir_history.current); next 3529 src/filemanager/panel.c if (next != NULL) next 3533 src/filemanager/panel.c data_vpath = vfs_path_from_str ((char *) next->data); next 3536 src/filemanager/panel.c panel->dir_history.current = next; next 136 src/filemanager/tree.c for (i = 0; ptr != NULL && ptr->next != NULL && i < *count; ptr = ptr->next, i++) next 152 src/filemanager/tree.c if (tree->selected_ptr->next != NULL) next 153 src/filemanager/tree.c tree->selected_ptr = tree->selected_ptr->next; next 387 src/filemanager/tree.c if (current->next == NULL || (current->next->submask & (1 << current->sublevel)) == 0) next 401 src/filemanager/tree.c current = current->next; next 403 src/filemanager/tree.c for (; current != NULL; current = current->next) next 488 src/filemanager/tree.c while (j < i && current->next != NULL next 489 src/filemanager/tree.c && current->next->sublevel >= tree->selected_ptr->sublevel) next 491 src/filemanager/tree.c current = current->next; next 517 src/filemanager/tree.c current = tree->selected_ptr->next; next 530 src/filemanager/tree.c current = tree->selected_ptr->next; next 639 src/filemanager/tree.c current = current->next; next 343 src/filemanager/treestore.c for (current = ts.tree_first; current != NULL; current = current->next) next 392 src/filemanager/treestore.c if (ts.tree_last != NULL && ts.tree_last->next != NULL) next 397 src/filemanager/treestore.c current != NULL && (flag = pathcmp (current->name, name)) < 0; current = current->next) next 417 src/filemanager/treestore.c old->next = new; next 420 src/filemanager/treestore.c new->next = NULL; next 430 src/filemanager/treestore.c new->next = old->next; next 431 src/filemanager/treestore.c old->next = new; next 436 src/filemanager/treestore.c new->next = ts.tree_first; next 439 src/filemanager/treestore.c new->next->prev = new; next 457 src/filemanager/treestore.c if (new->next != NULL) next 458 src/filemanager/treestore.c submask = new->next->submask; next 481 src/filemanager/treestore.c for (p = remove_entry_hooks; p != NULL; p = p->next) next 501 src/filemanager/treestore.c if (entry->next != NULL) next 502 src/filemanager/treestore.c submask = entry->next->submask; next 513 src/filemanager/treestore.c entry->prev->next = entry->next; next 515 src/filemanager/treestore.c ts.tree_first = entry->next; next 517 src/filemanager/treestore.c if (entry->next != NULL) next 518 src/filemanager/treestore.c entry->next->prev = entry->prev; next 608 src/filemanager/treestore.c current != NULL && (flag = pathcmp (current->name, name)) < 0; current = current->next) next 711 src/filemanager/treestore.c current = base->next; next 724 src/filemanager/treestore.c current = current->next; next 760 src/filemanager/treestore.c current != NULL && (flag = pathcmp (current->name, name)) < 0; current = current->next) next 780 src/filemanager/treestore.c for (current = base->next; next 782 src/filemanager/treestore.c current = current->next) next 831 src/filemanager/treestore.c ts.check_start = current->next; next 836 src/filemanager/treestore.c current = current->next) next 883 src/filemanager/treestore.c current = current->next; next 30 src/filemanager/treestore.h struct tree_entry *next; /* Next item in the list */ next 1594 src/vfs/ftpfs/ftpfs.c for (flist = dir->file_list->next; flist != dir->file_list; flist = flist->next) next 1705 src/vfs/ftpfs/ftpfs.c flist = dir->file_list->next; next 1715 src/vfs/ftpfs/ftpfs.c flist = flist->next; next 2597 src/vfs/ftpfs/ftpfs.c struct rupcache *next; next 2608 src/vfs/ftpfs/ftpfs.c for (rupp = rup_cache; rupp != NULL; rupp = rupp->next) next 2717 src/vfs/ftpfs/ftpfs.c rupp->next = rup_cache; next 64 src/vfs/ftpfs/ftpfs_parse_ls.c #define FIRST_TOKEN_R strtok_r (line, " \t", &next) next 65 src/vfs/ftpfs/ftpfs_parse_ls.c #define NEXT_TOKEN_R strtok_r (NULL, " \t", &next) next 279 src/vfs/ftpfs/ftpfs_parse_ls.c char *next = NULL; next 388 src/vfs/ftpfs/ftpfs_parse_ls.c name = strtok_r (NULL, "", &next); next 265 src/vfs/undelfs/undelfs.c goto next; next 268 src/vfs/undelfs/undelfs.c goto next; next 279 src/vfs/undelfs/undelfs.c goto next; next 309 src/vfs/undelfs/undelfs.c next: next 212 src/viewer/actions_cmd.c node = node->next; next 248 src/viewer/coord_cache.c coord_cache_entry_t current, next, entry; next 295 src/viewer/coord_cache.c for (; current.cc_offset < limit; current = next) next 307 src/viewer/coord_cache.c next.cc_offset = current.cc_offset + 1; next 308 src/viewer/coord_cache.c next.cc_line = current.cc_line; next 309 src/viewer/coord_cache.c next.cc_column = current.cc_column + 1; next 310 src/viewer/coord_cache.c next.cc_nroff_column = current.cc_nroff_column + 1; next 325 src/viewer/coord_cache.c next.cc_column = current.cc_column; next 326 src/viewer/coord_cache.c next.cc_nroff_column = current.cc_nroff_column; next 330 src/viewer/coord_cache.c next.cc_line = current.cc_line + 1; next 331 src/viewer/coord_cache.c next.cc_column = 0; next 332 src/viewer/coord_cache.c next.cc_nroff_column = 0; next 336 src/viewer/coord_cache.c next.cc_nroff_column = current.cc_nroff_column - 1; next 339 src/viewer/coord_cache.c next.cc_column = mcview_offset_rounddown (current.cc_column, 8) + 8; next 340 src/viewer/coord_cache.c next.cc_nroff_column = mcview_offset_rounddown (current.cc_nroff_column, 8) + 8; next 344 src/viewer/coord_cache.c next.cc_line = current.cc_line + 1; next 345 src/viewer/coord_cache.c next.cc_column = 0; next 346 src/viewer/coord_cache.c next.cc_nroff_column = 0; next 372 src/viewer/coord_cache.c entry = next; next 337 src/viewer/display.c static const enum ruler_type next[3] = { next 345 src/viewer/display.c ruler = next[(size_t) ruler]; next 150 src/viewer/hex.c curr = curr->next; next 215 src/viewer/hex.c curr = curr->next; next 244 src/viewer/hex.c curr = curr->next; next 266 src/viewer/hex.c curr = curr->next; next 387 src/viewer/hex.c struct hexedit_change_node *curr, *next; next 394 src/viewer/hex.c for (curr = view->change_list; curr != NULL; curr = next) next 396 src/viewer/hex.c next = curr->next; next 403 src/viewer/hex.c view->change_list = next; next 449 src/viewer/hex.c struct hexedit_change_node *curr, *next; next 451 src/viewer/hex.c for (curr = view->change_list; curr != NULL; curr = next) next 453 src/viewer/hex.c next = curr->next; next 475 src/viewer/hex.c chnode = &((*chnode)->next); next 477 src/viewer/hex.c node->next = *chnode; next 58 src/viewer/internal.h struct hexedit_change_node *next; next 169 src/viewer/nroff.c int next, next2; next 178 src/viewer/nroff.c if (!mcview_get_byte (nroff->view, nroff->index + nroff->char_length, &next) || next != '\b')