OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HIST_ENTRY
(Results
1 - 25
of
39
) sorted by relevancy
1
2
/src/external/gpl3/gdb/dist/readline/readline/
history.h
55
}
HIST_ENTRY
;
62
HIST_ENTRY
**entries; /* Pointer to the entries themselves. */
96
extern
HIST_ENTRY
*remove_history (int);
99
extern
HIST_ENTRY
**remove_history_range (int, int);
103
extern
HIST_ENTRY
*alloc_history_entry (char *, char *);
106
extern
HIST_ENTRY
*copy_history_entry (
HIST_ENTRY
*);
110
extern histdata_t free_history_entry (
HIST_ENTRY
*);
115
extern
HIST_ENTRY
*replace_history_entry (int, const char *, histdata_t);
133
/* Return a NULL terminated array of
HIST_ENTRY
which is the current inpu
[
all
...]
history.c
73
/* An array of
HIST_ENTRY
. This is where we store the history. */
74
static
HIST_ENTRY
**the_history = (
HIST_ENTRY
**)NULL;
179
HIST_ENTRY
**
187
HIST_ENTRY
*
191
? (
HIST_ENTRY
*)NULL
198
HIST_ENTRY
*
201
return history_offset ? the_history[--history_offset] : (
HIST_ENTRY
*)NULL;
207
HIST_ENTRY
*
210
return (history_offset == history_length) ? (
HIST_ENTRY
*)NULL : the_history[++history_offset]
[
all
...]
misc.c
302
HIST_ENTRY
*_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL;
311
_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL;
315
/* Free the contents (and containing structure) of a
HIST_ENTRY
. */
317
_rl_free_history_entry (
HIST_ENTRY
*entry)
332
HIST_ENTRY
*temp;
359
_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL;
373
_rl_saved_line_for_history = (
HIST_ENTRY
*)xmalloc (sizeof (
HIST_ENTRY
));
398
_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL
[
all
...]
search.c
70
static void make_history_line_current (
HIST_ENTRY
*);
85
make_history_line_current (
HIST_ENTRY
*entry)
114
_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL;
172
HIST_ENTRY
*entry;
531
HIST_ENTRY
*temp;
538
temp = (
HIST_ENTRY
*)NULL;
rlprivate.h
484
and so can use
HIST_ENTRY
*/
486
extern void _rl_free_history_entry (
HIST_ENTRY
*);
628
and so can use
HIST_ENTRY
*/
630
extern
HIST_ENTRY
*_rl_saved_line_for_history;
histsearch.c
73
HIST_ENTRY
**the_history; /* local */
undo.c
171
HIST_ENTRY
*cur, *temp;
/src/external/gpl3/gdb.old/dist/readline/readline/
history.h
55
}
HIST_ENTRY
;
62
HIST_ENTRY
**entries; /* Pointer to the entries themselves. */
96
extern
HIST_ENTRY
*remove_history (int);
99
extern
HIST_ENTRY
**remove_history_range (int, int);
103
extern
HIST_ENTRY
*alloc_history_entry (char *, char *);
106
extern
HIST_ENTRY
*copy_history_entry (
HIST_ENTRY
*);
110
extern histdata_t free_history_entry (
HIST_ENTRY
*);
115
extern
HIST_ENTRY
*replace_history_entry (int, const char *, histdata_t);
133
/* Return a NULL terminated array of
HIST_ENTRY
which is the current inpu
[
all
...]
history.c
73
/* An array of
HIST_ENTRY
. This is where we store the history. */
74
static
HIST_ENTRY
**the_history = (
HIST_ENTRY
**)NULL;
179
HIST_ENTRY
**
187
HIST_ENTRY
*
191
? (
HIST_ENTRY
*)NULL
198
HIST_ENTRY
*
201
return history_offset ? the_history[--history_offset] : (
HIST_ENTRY
*)NULL;
207
HIST_ENTRY
*
210
return (history_offset == history_length) ? (
HIST_ENTRY
*)NULL : the_history[++history_offset]
[
all
...]
misc.c
302
HIST_ENTRY
*_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL;
311
_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL;
315
/* Free the contents (and containing structure) of a
HIST_ENTRY
. */
317
_rl_free_history_entry (
HIST_ENTRY
*entry)
332
HIST_ENTRY
*temp;
359
_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL;
373
_rl_saved_line_for_history = (
HIST_ENTRY
*)xmalloc (sizeof (
HIST_ENTRY
));
398
_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL
[
all
...]
search.c
70
static void make_history_line_current (
HIST_ENTRY
*);
85
make_history_line_current (
HIST_ENTRY
*entry)
114
_rl_saved_line_for_history = (
HIST_ENTRY
*)NULL;
172
HIST_ENTRY
*entry;
531
HIST_ENTRY
*temp;
538
temp = (
HIST_ENTRY
*)NULL;
rlprivate.h
484
and so can use
HIST_ENTRY
*/
486
extern void _rl_free_history_entry (
HIST_ENTRY
*);
628
and so can use
HIST_ENTRY
*/
630
extern
HIST_ENTRY
*_rl_saved_line_for_history;
histsearch.c
73
HIST_ENTRY
**the_history; /* local */
undo.c
171
HIST_ENTRY
*cur, *temp;
/src/lib/libedit/readline/
readline.h
61
}
HIST_ENTRY
;
187
HIST_ENTRY
*current_history(void);
188
HIST_ENTRY
*history_get(int);
189
HIST_ENTRY
*remove_history(int);
190
HIST_ENTRY
*replace_history_entry(int, const char *, histdata_t);
193
HIST_ENTRY
*previous_history(void);
194
HIST_ENTRY
*next_history(void);
195
HIST_ENTRY
**history_list(void);
271
histdata_t free_history_entry(
HIST_ENTRY
*);
/src/external/gpl3/gdb/dist/readline/readline/examples/
rltest.c
51
extern
HIST_ENTRY
**history_list ();
88
HIST_ENTRY
**list;
histexamp.c
91
register
HIST_ENTRY
**the_list;
113
HIST_ENTRY
*entry = remove_history (which);
hist_erasedups.c
100
HIST_ENTRY
*h, *temp;
hist_purgecmd.c
117
HIST_ENTRY
*temp;
/src/external/gpl3/gdb.old/dist/readline/readline/examples/
rltest.c
51
extern
HIST_ENTRY
**history_list ();
88
HIST_ENTRY
**list;
histexamp.c
91
register
HIST_ENTRY
**the_list;
113
HIST_ENTRY
*entry = remove_history (which);
hist_erasedups.c
100
HIST_ENTRY
*h, *temp;
hist_purgecmd.c
117
HIST_ENTRY
*temp;
/src/external/bsd/wpa/dist/src/utils/
edit_readline.c
95
HIST_ENTRY
*h;
161
HIST_ENTRY
*h;
/src/lib/libedit/
readline.c
195
static
HIST_ENTRY
rl_he;
598
HIST_ENTRY
*he;
1242
HIST_ENTRY
*he;
1496
HIST_ENTRY
*
1499
static
HIST_ENTRY
she;
1568
HIST_ENTRY
*
1571
HIST_ENTRY
*he;
1596
HIST_ENTRY
*
1599
HIST_ENTRY
*he;
1664
static
HIST_ENTRY
**_history_listp
[
all
...]
Completed in 60 milliseconds
1
2
Indexes created Mon Aug 17 00:26:26 UTC 2026