current           107 lib/hook.c         hook_t *current, *next;
current           109 lib/hook.c         for (current = *hook_list; current != NULL; current = next)
current           111 lib/hook.c             next = current->next;
current           112 lib/hook.c             if (current->hook_fn == hook_fn)
current           113 lib/hook.c                 g_free (current);
current           115 lib/hook.c                 add_hook (&new_list, current->hook_fn, current->hook_data);
current            31 lib/strescape.h gboolean strutils_is_char_escaped (const char *start, const char *current);
current           243 lib/strutil/strescape.c strutils_is_char_escaped (const char *start, const char *current)
current           247 lib/strutil/strescape.c     if (start == NULL || current == NULL || current <= start)
current           250 lib/strutil/strescape.c     current--;
current           251 lib/strutil/strescape.c     while (current >= start && *current == '\\')
current           254 lib/strutil/strescape.c         current--;
current            78 lib/widget/button.c         if (parm == '\n' && WIDGET (g->current->data) == w)
current           229 lib/widget/dialog.c     if (g->current == NULL)
current           230 lib/widget/dialog.c         g->current = g->widgets;
current           537 lib/widget/dialog.c     while (g->current != NULL && !widget_is_focusable (g->current->data))
current           582 lib/widget/dialog.c         send_message (h, GROUP (h)->current == NULL ? NULL : WIDGET (GROUP (h)->current->data),
current            78 lib/widget/gauge.c             int done = g->current;
current           127 lib/widget/gauge.c gauge_new (int y, int x, int cols, gboolean shown, int max, int current)
current           141 lib/widget/gauge.c     g->current = current;
current           150 lib/widget/gauge.c gauge_set_value (WGauge * g, int max, int current)
current           152 lib/widget/gauge.c     if (g->current == current && g->max == max)
current           157 lib/widget/gauge.c     g->current = current;
current            22 lib/widget/gauge.h     int current;
current            30 lib/widget/gauge.h WGauge *gauge_new (int y, int x, int cols, gboolean shown, int max, int current);
current            31 lib/widget/gauge.h void gauge_set_value (WGauge * g, int max, int current);
current           113 lib/widget/group.c     if (g->widgets != NULL && g->current != NULL)
current           115 lib/widget/group.c         GList *l = g->current;
current           121 lib/widget/group.c         while (!widget_is_focusable (l->data) && l != g->current);
current           157 lib/widget/group.c     if (g->current == NULL)
current           158 lib/widget/group.c         g->current = g->widgets;
current           160 lib/widget/group.c     p = group_get_next_or_prev_of (g->current, !reverse);
current           357 lib/widget/group.c     GList *p = g->current;
current           373 lib/widget/group.c         while (p != g->current);
current           436 lib/widget/group.c     if (g->current == NULL)
current           437 lib/widget/group.c         g->current = g->widgets;
current           505 lib/widget/group.c         handled = send_message (g->current->data, NULL, MSG_KEY, key, NULL);
current           509 lib/widget/group.c         handled = send_message (g, g->current->data, MSG_UNHANDLED_KEY, key, NULL);
current           519 lib/widget/group.c     GList *current;
current           527 lib/widget/group.c     if (g->current == NULL)
current           528 lib/widget/group.c         g->current = g->widgets;
current           530 lib/widget/group.c     w = WIDGET (g->current->data);
current           556 lib/widget/group.c     current = group_get_widget_next_of (g->current);
current           559 lib/widget/group.c     while (g->current != current && handled == MSG_NOT_HANDLED)
current           561 lib/widget/group.c         w = WIDGET (current->data);
current           567 lib/widget/group.c             current = group_get_widget_next_of (current);
current           572 lib/widget/group.c         w = WIDGET (current->data);
current           690 lib/widget/group.c             if (g->current != NULL)
current           691 lib/widget/group.c                 widget_set_state (WIDGET (g->current->data), WST_FOCUSED, enable);
current           810 lib/widget/group.c         g->current = new_current;
current           835 lib/widget/group.c     if (d == g->current)
current           840 lib/widget/group.c         g->current = NULL;
current           864 lib/widget/group.c     g->current = group_get_next_or_prev_of (g->current, TRUE);
current           877 lib/widget/group.c     g->current = group_get_next_or_prev_of (g->current, FALSE);
current            31 lib/widget/group.h     GList *current;             /* Currently active widget */
current            83 lib/widget/group.h                                      g->current != NULL ? g->current->data : NULL);
current           113 lib/widget/group.h     if (g->current != NULL)
current           114 lib/widget/group.h         widget_select (WIDGET (g->current->data));
current           122 lib/widget/group.h     return WIDGET (g->current->data)->id;
current           184 lib/widget/history.c history_descriptor_init (history_descriptor_t * hd, int y, int x, GList * history, int current)
current           189 lib/widget/history.c     hd->current = current;
current           248 lib/widget/history.c         if (hd->current < 0 || (size_t) hd->current >= count)
current           251 lib/widget/history.c             listbox_select_entry (hd->listbox, count - 1 - (size_t) hd->current);
current           256 lib/widget/history.c         if (hd->current > 0)
current           257 lib/widget/history.c             listbox_select_entry (hd->listbox, hd->current);
current            28 lib/widget/history.h     int current;                /**< initially selected item in the history */
current            45 lib/widget/history.h                               int current);
current           106 lib/widget/input.c     if (g_list_next (in->history.current) == NULL)
current           108 lib/widget/input.c     else if (g_list_previous (in->history.current) == NULL)
current           166 lib/widget/input.c     in->history.current = in->history.list;
current           249 lib/widget/input.c         in->history.current = in->history.list;
current           595 lib/widget/input.c     prev = g_list_previous (in->history.current);
current           599 lib/widget/input.c         in->history.current = prev;
current           622 lib/widget/input.c     next = g_list_next (in->history.current);
current           626 lib/widget/input.c         in->history.current = in->history.list;
current           631 lib/widget/input.c         in->history.current = next;
current           814 lib/widget/input.c     in->history.current = in->history.list;
current           986 lib/widget/input.c     in->history.current = NULL;
current            70 lib/widget/input.h         GList *current;         /* current history item */
current          1071 lib/widget/input_complete.c                 for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data));
current          1078 lib/widget/input_complete.c                         listbox_select_entry (LISTBOX (g->current->data), i);
current          1081 lib/widget/input_complete.c                         widget_draw (WIDGET (g->current->data));
current          1125 lib/widget/input_complete.c                 for (i = 0, e = listbox_get_first_link (LISTBOX (g->current->data));
current          1136 lib/widget/input_complete.c                             listbox_select_entry (LISTBOX (g->current->data), i);
current          1187 lib/widget/input_complete.c                     widget_draw (WIDGET (g->current->data));
current           745 lib/widget/listbox.c         GList *current;
current           748 lib/widget/listbox.c         current = g_queue_peek_nth_link (l->list, (guint) l->pos);
current           749 lib/widget/listbox.c         listbox_entry_free (current->data);
current           750 lib/widget/listbox.c         g_queue_delete_link (l->list, current);
current           205 lib/widget/menu.c menubar_set_color (const WMenuBar * menubar, gboolean current, gboolean hotkey)
current           209 lib/widget/menu.c     else if (current)
current           275 lib/widget/menu.c     GROUP (g)->current = widget_find (g, widget_find_by_id (g, menubar->previous_widget));
current           282 lib/widget/menu.c     GROUP (g)->current = widget_find (g, WIDGET (menubar));
current           117 lib/widget/widget-common.c     if (WIDGET (g->current->data) != w)
current           119 lib/widget/widget-common.c         widget_do_focus (WIDGET (g->current->data), FALSE);
current           121 lib/widget/widget-common.c         if (g->current == NULL || !widget_get_state (WIDGET (g->current->data), WST_FOCUSED))
current           124 lib/widget/widget-common.c             g->current = widget_find (WIDGET (g), w);
current           518 lib/widget/widget-common.c     if (w != owner->current->data)
current           560 lib/widget/widget-common.c     if (g->current == NULL)
current           561 lib/widget/widget-common.c         g->current = g->widgets;
current           564 lib/widget/widget-common.c     if (old_w == g->current->data)
current           565 lib/widget/widget-common.c         holder = g->current;
current           824 lib/widget/widget-common.c                 if (w == GROUP (owner)->current->data)
current           147 src/editor/edit-impl.h off_t edit_move_forward3 (const WEdit * edit, off_t current, long cols, off_t upto);
current          1495 src/editor/edit.c             off_t current = edit->buffer.curs1;
current          1498 src/editor/edit.c             edit_cursor_move (edit, current - edit->buffer.curs1 + 1);
current          1953 src/editor/edit.c     off_t current;
current          1957 src/editor/edit.c     current = edit->buffer.curs1;
current          1971 src/editor/edit.c                 ins_len = edit->buffer.curs1 - current;
current          2045 src/editor/edit.c                 edit_set_markers (edit, edit->buffer.curs1, current, 0, 0);
current          2054 src/editor/edit.c                 ins_len = edit->buffer.curs1 - current;
current          2758 src/editor/edit.c edit_move_forward3 (const WEdit * edit, off_t current, long cols, off_t upto)
current          2771 src/editor/edit.c     for (col = 0, p = current; p < q; p++)
current           355 src/editor/editbuffer.c edit_buffer_get_bol (const edit_buffer_t * buf, off_t current)
current           357 src/editor/editbuffer.c     if (current <= 0)
current           360 src/editor/editbuffer.c     for (; edit_buffer_get_byte (buf, current - 1) != '\n'; current--)
current           363 src/editor/editbuffer.c     return current;
current           377 src/editor/editbuffer.c edit_buffer_get_eol (const edit_buffer_t * buf, off_t current)
current           379 src/editor/editbuffer.c     if (current >= buf->size)
current           382 src/editor/editbuffer.c     for (; edit_buffer_get_byte (buf, current) != '\n'; current++)
current           385 src/editor/editbuffer.c     return current;
current           647 src/editor/editbuffer.c edit_buffer_get_forward_offset (const edit_buffer_t * buf, off_t current, long lines, off_t upto)
current           650 src/editor/editbuffer.c         return (off_t) edit_buffer_count_lines (buf, current, upto);
current           658 src/editor/editbuffer.c         next = edit_buffer_get_eol (buf, current) + 1;
current           661 src/editor/editbuffer.c         current = next;
current           664 src/editor/editbuffer.c     return current;
current           679 src/editor/editbuffer.c edit_buffer_get_backward_offset (const edit_buffer_t * buf, off_t current, long lines)
current           682 src/editor/editbuffer.c     current = edit_buffer_get_bol (buf, current);
current           684 src/editor/editbuffer.c     while (lines-- != 0 && current != 0)
current           685 src/editor/editbuffer.c         current = edit_buffer_get_bol (buf, current - 1);
current           687 src/editor/editbuffer.c     return current;
current            47 src/editor/editbuffer.h off_t edit_buffer_get_bol (const edit_buffer_t * buf, off_t current);
current            48 src/editor/editbuffer.h off_t edit_buffer_get_eol (const edit_buffer_t * buf, off_t current);
current            59 src/editor/editbuffer.h off_t edit_buffer_get_forward_offset (const edit_buffer_t * buf, off_t current, long lines,
current            61 src/editor/editbuffer.h off_t edit_buffer_get_backward_offset (const edit_buffer_t * buf, off_t current, long lines);
current          1247 src/editor/editcmd.c         if (edit_widget_is_editor (CONST_WIDGET (g->current->data)))
current          1248 src/editor/editcmd.c             edit = (WEdit *) (g->current->data);
current          1334 src/editor/editcmd.c     off_t start_mark, end_mark, current = edit->buffer.curs1;
current          1374 src/editor/editcmd.c     else if (start_mark < current && end_mark > current)
current          1386 src/editor/editcmd.c     off_t current;
current          1437 src/editor/editcmd.c         current = edit_move_forward3 (edit, edit_buffer_get_current_bol (&edit->buffer), x, 0);
current          1438 src/editor/editcmd.c         edit_cursor_move (edit, current - edit->buffer.curs1);
current          1452 src/editor/editcmd.c         current = edit->buffer.curs1;
current          1462 src/editor/editcmd.c                           current - edit->buffer.curs1 -
current          1463 src/editor/editcmd.c                           (((current - edit->buffer.curs1) > 0) ? end_mark - start_mark : 0));
current           345 src/editor/editwidget.c     selected = run_listbox_with_data (listbox, g->current->data);
current           421 src/editor/editwidget.c         if (edit_widget_is_editor (CONST_WIDGET (g->current->data)) &&
current           422 src/editor/editwidget.c             edit_close_cmd ((WEdit *) g->current->data) && find_editor (h) == NULL)
current           436 src/editor/editwidget.c             Widget *w = WIDGET (g->current->data);
current           470 src/editor/editwidget.c         if (edit_widget_is_editor (CONST_WIDGET (g->current->data)))
current           471 src/editor/editwidget.c             edit_handle_move_resize ((WEdit *) g->current->data, command);
current           787 src/editor/editwidget.c                 result = send_message (g->current->data, NULL, MSG_ACTION, parm, NULL);
current           794 src/editor/editwidget.c             Widget *we = WIDGET (g->current->data);
current           845 src/editor/editwidget.c         return send_message (g->current->data, NULL, MSG_IDLE, 0, NULL);
current           895 src/editor/editwidget.c                 if (top != g->current)
current          1303 src/editor/editwidget.c     if (edit_widget_is_editor (CONST_WIDGET (g->current->data)))
current          1304 src/editor/editwidget.c         return (WEdit *) g->current->data;
current           320 src/filemanager/achown.c     widget_set_state (WIDGET (g->current->data), WST_FOCUSED, TRUE);
current           550 src/filemanager/chattr.c         l = g_list_next (GROUP (cb)->current);
current           646 src/filemanager/chattr.c         l = g_list_previous (GROUP (cb)->current);
current           910 src/filemanager/chattr.c     cbg->current = cbg->widgets;
current           436 src/filemanager/filegui.c                               g->current != NULL ? g->current->data : NULL)
current           443 src/filemanager/filegui.c     group_add_widget_autopos (g, W(i), dlg_widgets[i].pos_flags, g->current->data)
current           527 src/filemanager/find.c         if (GROUP (h)->current->data == in_name)
current           529 src/filemanager/find.c         else if (GROUP (h)->current->data == in_with)
current           271 src/filemanager/hotlist.c     struct hotlist *current;
current           276 src/filemanager/hotlist.c     for (current = current_group->head; current != NULL; current = current->next)
current           277 src/filemanager/hotlist.c         switch (current->type)
current           284 src/filemanager/hotlist.c                 g_string_append (buff, current->label);
current           285 src/filemanager/hotlist.c                 listbox_add_item (list, LISTBOX_APPEND_AT_END, 0, buff->str, current, FALSE);
current           290 src/filemanager/hotlist.c             listbox_add_item (list, LISTBOX_APPEND_AT_END, 0, current->label, current, FALSE);
current           304 src/filemanager/hotlist.c     struct hotlist *current = current_group->head;
current           306 src/filemanager/hotlist.c     if (current == entry)
current           310 src/filemanager/hotlist.c         while (current != NULL && current->next != entry)
current           311 src/filemanager/hotlist.c             current = current->next;
current           312 src/filemanager/hotlist.c         if (current != NULL)
current           313 src/filemanager/hotlist.c             current->next = entry->next;
current           917 src/filemanager/hotlist.c     struct hotlist *current = NULL;
current           926 src/filemanager/hotlist.c     listbox_get_current (l_hotlist, NULL, (void **) &current);
current           929 src/filemanager/hotlist.c     if ((current != NULL) && (current->type == HL_TYPE_DOTDOT))
current           953 src/filemanager/hotlist.c         new->next = current->next;
current           954 src/filemanager/hotlist.c         current->next = new;
current           956 src/filemanager/hotlist.c     else if (pos == LISTBOX_APPEND_BEFORE && current == current_group->head)
current           959 src/filemanager/hotlist.c         new->next = current;
current           966 src/filemanager/hotlist.c         while (p->next != current)
current           969 src/filemanager/hotlist.c         new->next = current;
current          1123 src/filemanager/hotlist.c     struct hotlist *current = grp->head;
current          1125 src/filemanager/hotlist.c     while (current != NULL)
current          1127 src/filemanager/hotlist.c         struct hotlist *next = current->next;
current          1129 src/filemanager/hotlist.c         if (current->type == HL_TYPE_GROUP)
current          1130 src/filemanager/hotlist.c             remove_group (current);
current          1132 src/filemanager/hotlist.c         g_free (current->label);
current          1133 src/filemanager/hotlist.c         g_free (current->directory);
current          1134 src/filemanager/hotlist.c         g_free (current);
current          1136 src/filemanager/hotlist.c         current = next;
current          1204 src/filemanager/hotlist.c     struct hotlist *current = 0;
current          1227 src/filemanager/hotlist.c     for (current = grp->head; current; current = current->next)
current          1228 src/filemanager/hotlist.c         load_group (current);
current          1529 src/filemanager/hotlist.c     struct hotlist *current;
current          1539 src/filemanager/hotlist.c     for (current = grp->head; current != NULL; current = current->next)
current          1540 src/filemanager/hotlist.c         switch (current->type)
current          1545 src/filemanager/hotlist.c             for (s = current->label; *s != '\0'; s++)
current          1553 src/filemanager/hotlist.c             hot_save_group (current);
current          1561 src/filemanager/hotlist.c             for (s = current->label; *s != '\0'; s++)
current          1568 src/filemanager/hotlist.c             for (s = current->directory; *s != '\0'; s++)
current          1577 src/filemanager/hotlist.c             fprintf (hotlist_file, "#%s\n", current->label);
current          1428 src/filemanager/panel.c     panel->dir_history.current = panel->dir_history.list;
current          3384 src/filemanager/panel.c         next = g_list_next (panel->dir_history.current);
current          3392 src/filemanager/panel.c             panel->dir_history.current = next;
current          3411 src/filemanager/panel.c         prev = g_list_previous (panel->dir_history.current);
current          3419 src/filemanager/panel.c             panel->dir_history.current = prev;
current          3435 src/filemanager/panel.c     pos = g_list_position (panel->dir_history.current, panel->dir_history.list);
current          3463 src/filemanager/panel.c         panel->dir_history.current = panel->dir_history.list;
current          3469 src/filemanager/panel.c             prev = g_list_previous (panel->dir_history.current);
current          3473 src/filemanager/panel.c             panel->dir_history.current = prev;
current           129 src/filemanager/panel.h         GList *current;         /* Pointer to the current history item */
current           553 src/filemanager/panelize.c         panelize_entry_t *current = (panelize_entry_t *) l->data;
current           555 src/filemanager/panelize.c         if (strcmp (current->label, _("Other command")) != 0)
current           557 src/filemanager/panelize.c                                   panelize_section, current->label, current->command);
current           267 src/filemanager/tree.c     tree_entry *current;
current           295 src/filemanager/tree.c     current = tree->selected_ptr;
current           299 src/filemanager/tree.c         current = back_ptr (current, &tree->topdiff);
current           304 src/filemanager/tree.c         while (current->prev != NULL && i < tree->topdiff)
current           306 src/filemanager/tree.c             current = current->prev;
current           308 src/filemanager/tree.c             if (current->sublevel < tree->selected_ptr->sublevel)
current           310 src/filemanager/tree.c                 if (vfs_path_equal (current->name, tree->selected_ptr->name))
current           313 src/filemanager/tree.c             else if (current->sublevel == tree->selected_ptr->sublevel)
current           317 src/filemanager/tree.c                 cname = vfs_path_as_str (current->name);
current           320 src/filemanager/tree.c                 if (vfs_path_equal_len (current->name, tree->selected_ptr->name, j))
current           323 src/filemanager/tree.c             else if (current->sublevel == tree->selected_ptr->sublevel + 1)
current           326 src/filemanager/tree.c                 if (j > 1 && vfs_path_equal_len (current->name, tree->selected_ptr->name, j))
current           344 src/filemanager/tree.c         if (current == NULL)
current           351 src/filemanager/tree.c             selected = widget_get_state (w, WST_FOCUSED) && current == tree->selected_ptr;
current           356 src/filemanager/tree.c             int idx = current == tree->selected_ptr ? DLG_COLOR_FOCUS : DLG_COLOR_NORMAL;
current           361 src/filemanager/tree.c         tree->tree_shown[i] = current;
current           362 src/filemanager/tree.c         if (current->sublevel == topsublevel)
current           365 src/filemanager/tree.c                               (vfs_path_as_str (current->name),
current           373 src/filemanager/tree.c             for (j = 0; j < current->sublevel - topsublevel - 1; j++)
current           378 src/filemanager/tree.c                 if ((current->submask & (1 << (j + topsublevel + 1))) != 0)
current           386 src/filemanager/tree.c             if (current->next == NULL || (current->next->submask & (1 << current->sublevel)) == 0)
current           396 src/filemanager/tree.c                               (current->subname, tree_cols - x - 3 * j, J_LEFT_FIT));
current           400 src/filemanager/tree.c         current = current->next;
current           402 src/filemanager/tree.c             for (; current != NULL; current = current->next)
current           404 src/filemanager/tree.c                 if (current->sublevel < tree->selected_ptr->sublevel)
current           406 src/filemanager/tree.c                     if (vfs_path_equal_len (current->name, tree->selected_ptr->name,
current           407 src/filemanager/tree.c                                             vfs_path_len (current->name)))
current           410 src/filemanager/tree.c                 else if (current->sublevel == tree->selected_ptr->sublevel)
current           414 src/filemanager/tree.c                     cname = vfs_path_as_str (current->name);
current           417 src/filemanager/tree.c                     if (vfs_path_equal_len (current->name, tree->selected_ptr->name, j))
current           420 src/filemanager/tree.c                 else if (current->sublevel == tree->selected_ptr->sublevel + 1
current           423 src/filemanager/tree.c                     if (vfs_path_equal_len (current->name, tree->selected_ptr->name,
current           453 src/filemanager/tree.c         tree_entry *current;
current           456 src/filemanager/tree.c         current = tree->selected_ptr;
current           457 src/filemanager/tree.c         while (j < i && current->prev != NULL
current           458 src/filemanager/tree.c                && current->prev->sublevel >= tree->selected_ptr->sublevel)
current           460 src/filemanager/tree.c             current = current->prev;
current           461 src/filemanager/tree.c             if (current->sublevel == tree->selected_ptr->sublevel)
current           463 src/filemanager/tree.c                 tree->selected_ptr = current;
current           483 src/filemanager/tree.c         tree_entry *current;
current           486 src/filemanager/tree.c         current = tree->selected_ptr;
current           487 src/filemanager/tree.c         while (j < i && current->next != NULL
current           488 src/filemanager/tree.c                && current->next->sublevel >= tree->selected_ptr->sublevel)
current           490 src/filemanager/tree.c             current = current->next;
current           491 src/filemanager/tree.c             if (current->sublevel == tree->selected_ptr->sublevel)
current           493 src/filemanager/tree.c                 tree->selected_ptr = current;
current           509 src/filemanager/tree.c     tree_entry *current;
current           516 src/filemanager/tree.c     current = tree->selected_ptr->next;
current           518 src/filemanager/tree.c     if (current != NULL && current->sublevel > tree->selected_ptr->sublevel)
current           521 src/filemanager/tree.c         tree->selected_ptr = current;
current           529 src/filemanager/tree.c         current = tree->selected_ptr->next;
current           530 src/filemanager/tree.c         if (current != NULL && current->sublevel > tree->selected_ptr->sublevel)
current           532 src/filemanager/tree.c             tree->selected_ptr = current;
current           544 src/filemanager/tree.c     tree_entry *current;
current           552 src/filemanager/tree.c     for (current = tree->selected_ptr->prev;
current           553 src/filemanager/tree.c          current != NULL && current->sublevel >= tree->selected_ptr->sublevel;
current           554 src/filemanager/tree.c          current = current->prev)
current           557 src/filemanager/tree.c     if (current == NULL)
current           558 src/filemanager/tree.c         current = tree->store->tree_first;
current           559 src/filemanager/tree.c     tree->selected_ptr = current;
current           627 src/filemanager/tree.c     tree_entry *current = tree->selected_ptr;
current           631 src/filemanager/tree.c     while (!found && (!wrapped || current != tree->selected_ptr))
current           632 src/filemanager/tree.c         if (strncmp (current->subname, text->str, text->len) == 0)
current           634 src/filemanager/tree.c             tree->selected_ptr = current;
current           639 src/filemanager/tree.c             current = current->next;
current           640 src/filemanager/tree.c             if (current == NULL)
current           642 src/filemanager/tree.c                 current = tree->store->tree_first;
current          1313 src/filemanager/tree.c     tree_entry *current;
current          1315 src/filemanager/tree.c     current = tree_store_whereis (dir);
current          1316 src/filemanager/tree.c     if (current != NULL)
current          1318 src/filemanager/tree.c         tree->selected_ptr = current;
current           334 src/filemanager/treestore.c     tree_entry *current;
current           343 src/filemanager/treestore.c     for (current = ts.tree_first; current != NULL; current = current->next)
current           344 src/filemanager/treestore.c         if (vfs_file_is_local (current->name))
current           349 src/filemanager/treestore.c             if (current->prev != NULL
current           350 src/filemanager/treestore.c                 && (common = str_common (current->prev->name, current->name)) > 2)
current           354 src/filemanager/treestore.c                 encoded = encode (current->name, common);
current           355 src/filemanager/treestore.c                 i = fprintf (file, "%d:%d %s\n", current->scanned ? 1 : 0, common, encoded);
current           362 src/filemanager/treestore.c                 encoded = encode (current->name, 0);
current           363 src/filemanager/treestore.c                 i = fprintf (file, "%d:%s\n", current->scanned ? 1 : 0, encoded);
current           387 src/filemanager/treestore.c     tree_entry *current;
current           396 src/filemanager/treestore.c     for (current = ts.tree_first;
current           397 src/filemanager/treestore.c          current != NULL && (flag = pathcmp (current->name, name)) < 0; current = current->next)
current           398 src/filemanager/treestore.c         old = current;
current           401 src/filemanager/treestore.c         return current;         /* Already in the list */
current           405 src/filemanager/treestore.c     if (current == NULL)
current           466 src/filemanager/treestore.c     for (current = new->prev;
current           467 src/filemanager/treestore.c          current != NULL && current->sublevel > new->sublevel; current = current->prev)
current           468 src/filemanager/treestore.c         current->submask |= 1 << new->sublevel;
current           494 src/filemanager/treestore.c     tree_entry *current = entry->prev;
current           504 src/filemanager/treestore.c     for (; current != NULL && current->sublevel > entry->sublevel; current = current->prev)
current           506 src/filemanager/treestore.c         submask |= 1 << current->sublevel;
current           507 src/filemanager/treestore.c         submask &= (2 << current->sublevel) - 1;
current           508 src/filemanager/treestore.c         current->submask = submask;
current           604 src/filemanager/treestore.c     tree_entry *current;
current           607 src/filemanager/treestore.c     for (current = ts.tree_first;
current           608 src/filemanager/treestore.c          current != NULL && (flag = pathcmp (current->name, name)) < 0; current = current->next)
current           611 src/filemanager/treestore.c     return flag == 0 ? current : NULL;
current           689 src/filemanager/treestore.c     tree_entry *current, *base;
current           711 src/filemanager/treestore.c     current = base->next;
current           712 src/filemanager/treestore.c     while (current != NULL && vfs_path_equal_len (current->name, base->name, len))
current           718 src/filemanager/treestore.c         cname = vfs_path_as_str (current->name);
current           723 src/filemanager/treestore.c         old = current;
current           724 src/filemanager/treestore.c         current = current->next;
current           738 src/filemanager/treestore.c     tree_entry *current, *base;
current           759 src/filemanager/treestore.c     for (current = ts.check_start;
current           760 src/filemanager/treestore.c          current != NULL && (flag = pathcmp (current->name, name)) < 0; current = current->next)
current           766 src/filemanager/treestore.c         current = tree_store_add_entry (name);
current           773 src/filemanager/treestore.c     base = current;
current           780 src/filemanager/treestore.c         for (current = base->next;
current           781 src/filemanager/treestore.c              current != NULL && vfs_path_equal_len (current->name, base->name, len);
current           782 src/filemanager/treestore.c              current = current->next)
current           786 src/filemanager/treestore.c             cname = vfs_path_as_str (current->name);
current           791 src/filemanager/treestore.c             current->mark = FALSE;
current           802 src/filemanager/treestore.c     tree_entry *current, *retval;
current           812 src/filemanager/treestore.c     current = tree_store_whereis (vpath);
current           813 src/filemanager/treestore.c     if (current == NULL)
current           820 src/filemanager/treestore.c         current = tree_store_add_entry (vpath);
current           823 src/filemanager/treestore.c         return current;
current           828 src/filemanager/treestore.c     retval = current;
current           831 src/filemanager/treestore.c     ts.check_start = current->next;
current           834 src/filemanager/treestore.c     for (current = ts.check_start;
current           835 src/filemanager/treestore.c          current != NULL && vfs_path_equal_len (current->name, ts.check_name, len);
current           836 src/filemanager/treestore.c          current = current->next)
current           841 src/filemanager/treestore.c         cname = vfs_path_as_str (current->name);
current           846 src/filemanager/treestore.c         current->mark = TRUE;
current           858 src/filemanager/treestore.c     tree_entry *current;
current           870 src/filemanager/treestore.c     current = ts.check_start;
current           871 src/filemanager/treestore.c     while (current != NULL && vfs_path_equal_len (current->name, ts.check_name, len))
current           877 src/filemanager/treestore.c         cname = vfs_path_as_str (current->name);
current           882 src/filemanager/treestore.c         old = current;
current           883 src/filemanager/treestore.c         current = current->next;
current           141 src/learn.c            if (learnkeys[i].button == WIDGET (GROUP (learn_dlg)->current->data))
current           103 src/vfs/undelfs/undelfs.c     off_t current;              /* used to determine current position in itereate */
current           527 src/vfs/undelfs/undelfs.c     if (p->pos + (off_t) p->count < p->current)
current           532 src/vfs/undelfs/undelfs.c     if (p->pos > p->current + param_fs->blocksize)
current           534 src/vfs/undelfs/undelfs.c         p->current += param_fs->blocksize;
current           539 src/vfs/undelfs/undelfs.c     if (p->pos >= p->current)
current           543 src/vfs/undelfs/undelfs.c         if (p->pos + (off_t) p->count <= p->current + param_fs->blocksize)
current           552 src/vfs/undelfs/undelfs.c             copy_count = param_fs->blocksize - (p->pos - p->current);
current           554 src/vfs/undelfs/undelfs.c         memcpy (p->dest_buffer, p->buf + (p->pos - p->current), copy_count);
current           559 src/vfs/undelfs/undelfs.c         if (p->pos + (off_t) p->count < p->current + param_fs->blocksize)
current           561 src/vfs/undelfs/undelfs.c             copy_count = (p->pos + p->count) - p->current;
current           571 src/vfs/undelfs/undelfs.c     p->current += param_fs->blocksize;
current           588 src/vfs/undelfs/undelfs.c     p->current = 0;
current           246 src/viewer/coord_cache.c     coord_cache_entry_t current, next, entry;
current           265 src/viewer/coord_cache.c         memset (&current, 0, sizeof (current));
current           266 src/viewer/coord_cache.c         mcview_ccache_add_entry (cache, &current);
current           285 src/viewer/coord_cache.c     current = *coord_cache_index (cache, i);
current           289 src/viewer/coord_cache.c         limit = current.cc_offset + VIEW_COORD_CACHE_GRANUL;
current           291 src/viewer/coord_cache.c     entry = current;
current           293 src/viewer/coord_cache.c     for (; current.cc_offset < limit; current = next)
current           297 src/viewer/coord_cache.c         if (!mcview_get_byte (view, current.cc_offset, &c))
current           300 src/viewer/coord_cache.c         if (!cmp_func (&current, coord) &&
current           305 src/viewer/coord_cache.c         next.cc_offset = current.cc_offset + 1;
current           306 src/viewer/coord_cache.c         next.cc_line = current.cc_line;
current           307 src/viewer/coord_cache.c         next.cc_column = current.cc_column + 1;
current           308 src/viewer/coord_cache.c         next.cc_nroff_column = current.cc_nroff_column + 1;
current           315 src/viewer/coord_cache.c             mcview_get_byte_indexed (view, current.cc_offset, 1, &nextc);
current           323 src/viewer/coord_cache.c                 next.cc_column = current.cc_column;
current           324 src/viewer/coord_cache.c                 next.cc_nroff_column = current.cc_nroff_column;
current           328 src/viewer/coord_cache.c                 next.cc_line = current.cc_line + 1;
current           334 src/viewer/coord_cache.c             next.cc_nroff_column = current.cc_nroff_column - 1;
current           337 src/viewer/coord_cache.c             next.cc_column = mcview_offset_rounddown (current.cc_column, 8) + 8;
current           338 src/viewer/coord_cache.c             next.cc_nroff_column = mcview_offset_rounddown (current.cc_nroff_column, 8) + 8;
current           342 src/viewer/coord_cache.c             next.cc_line = current.cc_line + 1;
current           355 src/viewer/coord_cache.c             nroff_state = mcview_is_nroff_sequence (view, current.cc_offset)
current           384 src/viewer/coord_cache.c         coord->cc_offset = current.cc_offset;
current           387 src/viewer/coord_cache.c         coord->cc_line = current.cc_line;
current           388 src/viewer/coord_cache.c         coord->cc_column = current.cc_column;
current           389 src/viewer/coord_cache.c         coord->cc_nroff_column = current.cc_nroff_column;
current           294 src/viewer/internal.h off_t mcview_bol (WView * view, off_t current, off_t limit);
current           295 src/viewer/internal.h off_t mcview_eol (WView * view, off_t current);
current           311 src/viewer/lib.c mcview_bol (WView * view, off_t current, off_t limit)
current           316 src/viewer/lib.c     if (current <= 0)
current           318 src/viewer/lib.c     if (current > filesize)
current           320 src/viewer/lib.c     if (!mcview_get_byte (view, current, &c))
current           321 src/viewer/lib.c         return current;
current           324 src/viewer/lib.c         if (!mcview_get_byte (view, current - 1, &c))
current           325 src/viewer/lib.c             return current;
current           327 src/viewer/lib.c             current--;
current           329 src/viewer/lib.c     while (current > 0 && current > limit)
current           331 src/viewer/lib.c         if (!mcview_get_byte (view, current - 1, &c))
current           335 src/viewer/lib.c         current--;
current           337 src/viewer/lib.c     return current;
current           346 src/viewer/lib.c mcview_eol (WView * view, off_t current)
current           350 src/viewer/lib.c     if (current < 0)
current           355 src/viewer/lib.c         if (!mcview_get_byte (view, current, &c))
current           359 src/viewer/lib.c             current++;
current           366 src/viewer/lib.c         current++;
current           369 src/viewer/lib.c     return current;