Home
last modified time | relevance | path

Searched refs:history (Results 1 – 25 of 38) sorted by relevance

12

/f-stack/freebsd/net/
H A Dmppc.h56 extern void MPPC_InitCompressionHistory(char *history);
57 extern void MPPC_InitDecompressionHistory(char *history);
59 extern int MPPC_Compress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history,…
60 …C_Decompress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int flags);
H A Dmppcc.c138 void MPPC_InitCompressionHistory(char *history) in MPPC_InitCompressionHistory() argument
140 struct MPPC_comp_state *state = (struct MPPC_comp_state*)history; in MPPC_InitCompressionHistory()
142 bzero(history, sizeof(struct MPPC_comp_state)); in MPPC_InitCompressionHistory()
146 int MPPC_Compress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int fl… in MPPC_Compress() argument
148 struct MPPC_comp_state *state = (struct MPPC_comp_state*)history; in MPPC_Compress()
290 bzero(history, sizeof(struct MPPC_comp_state)); in MPPC_Compress()
H A Dmppcd.c98 void MPPC_InitDecompressionHistory(char *history) in MPPC_InitDecompressionHistory() argument
100 struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history; in MPPC_InitDecompressionHistory()
102 bzero(history, sizeof(struct MPPC_decomp_state)); in MPPC_InitDecompressionHistory()
106 int MPPC_Decompress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int … in MPPC_Decompress() argument
108 struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history; in MPPC_Decompress()
/f-stack/freebsd/netgraph/
H A Dng_mppc.c307 if (d->history != NULL) { in ng_mppc_rcvmsg()
308 free(d->history, M_NETGRAPH_MPPC); in ng_mppc_rcvmsg()
309 d->history = NULL; in ng_mppc_rcvmsg()
312 d->history = malloc(isComp ? in ng_mppc_rcvmsg()
316 if (d->history == NULL) in ng_mppc_rcvmsg()
322 d->history); in ng_mppc_rcvmsg()
434 if (priv->xmit.history != NULL) in ng_mppc_shutdown()
436 if (priv->recv.history != NULL) in ng_mppc_shutdown()
543 &destCnt, d->history, flags, 0); in ng_mppc_compress()
654 if (d->history != NULL) in ng_mppc_decompress()
[all …]
/f-stack/app/redis-5.0.5/deps/linenoise/
H A Dlinenoise.c133 static char **history = NULL; variable
1078 if (history) { in freeHistory()
1082 free(history[j]); in freeHistory()
1083 free(history); in freeHistory()
1106 if (history == NULL) { in linenoiseHistoryAdd()
1120 free(history[0]); in linenoiseHistoryAdd()
1121 memmove(history,history+1,sizeof(char*)*(history_max_len-1)); in linenoiseHistoryAdd()
1124 history[history_len] = linecopy; in linenoiseHistoryAdd()
1137 if (history) { in linenoiseHistorySetMaxLen()
1152 free(history); in linenoiseHistorySetMaxLen()
[all …]
H A DREADME.markdown15 Line editing with some support for history is a really important feature for command line utilities…
65 and history capabilities. The prompt you specify is used as a prompt, that is,
105 Linenoise supporst history, so that the user does not have to retype
109 The followings are the history API calls:
117 to the top of the history (it will be the first the user will see when
120 Note that for history to work, you have to set a length for the history
121 (which is zero by default, so history will be disabled if you don't set
125 Linenoise has direct support for persisting the history into an history
175 The feature works similarly to the history feature, using a callback.
H A D.gitignore3 history.txt
/f-stack/dpdk/lib/librte_cmdline/
H A Dcmdline_rdline.c500 while (! CIRBUF_IS_EMPTY(&rdl->history) ) { in rdline_remove_old_history_item()
501 tmp = cirbuf_get_head(&rdl->history); in rdline_remove_old_history_item()
502 cirbuf_del_head(&rdl->history); in rdline_remove_old_history_item()
513 if ( CIRBUF_IS_EMPTY(&rdl->history) ) { in rdline_remove_first_history_item()
517 cirbuf_del_tail(&rdl->history); in rdline_remove_first_history_item()
521 tmp = cirbuf_get_tail(&rdl->history); in rdline_remove_first_history_item()
524 cirbuf_del_tail(&rdl->history); in rdline_remove_first_history_item()
533 CIRBUF_FOREACH(&rdl->history, i, tmp) { in rdline_get_history_size()
554 cirbuf_align_left(&rdl->history); in rdline_get_history_item()
556 CIRBUF_FOREACH(&rdl->history, i, tmp) { in rdline_get_history_item()
[all …]
H A Dcmdline.c145 const char *history, *buffer; in cmdline_in() local
158 history = rdline_get_history_item(&cl->rdl, 0); in cmdline_in()
159 if (history) { in cmdline_in()
160 histlen = strnlen(history, RDLINE_BUF_SIZE); in cmdline_in()
161 same = !memcmp(buffer, history, histlen) && in cmdline_in()
H A Dcmdline_rdline.h78 struct cirbuf history; member
/f-stack/tools/libxo/xohtml/
H A Dxohtml.css12 #target-history .empty {
17 #command-history .empty {
268 div#target-history {
276 form#target-history-form {
280 input#target-history-submit {
285 div.target-history-name {
302 div.target-history-entry {
333 div#command-history {
353 div.command-history-entry {
369 div#input-history {
[all …]
/f-stack/tools/ngctl/
H A Dmain.c354 history(hist, &hev, H_SETSIZE, 100);
355 history(hist, &hev, H_SETUNIQUE, 1);
356 el_set(el, EL_HIST, history, (const char *)hist);
367 history(hist, &hev, H_ENTER, buf);
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_reopen/
H A Dzpool_reopen.shlib115 zpool history -i $pool | grep -q "scan aborted, restarting"
122 zpool history -i $pool | grep -q "starting deferred resilver"
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/include/
H A Dtunables.cfg58 MULTIHOST_HISTORY multihost.history zfs_multihost_history
79 TXG_HISTORY txg.history zfs_txg_history
/f-stack/freebsd/contrib/device-tree/Bindings/powerpc/opal/
H A Dsensor-groups.txt17 operations like clearing the min/max history of all
/f-stack/dpdk/doc/guides/prog_guide/
H A Dtraffic_metering_and_policing.rst45 red) based on the previous history for this flow as maintained by the MTR
52 based on the previous traffic history reflected in the current state of the
/f-stack/freebsd/x86/conf/
H A DNOTES29 options SC_HISTORY_SIZE=200 # number of history buffer lines
/f-stack/tools/libxo/doc/
H A Dfaq.rst11 Can you share the history of libxo?
41 The history is both long and short: libxo's functionality is based
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dspa_stats.c1024 ZFS_MODULE_PARAM(zfs_txg, zfs_txg_, history, INT, ZMOD_RW,
1027 ZFS_MODULE_PARAM(zfs_multihost, zfs_multihost_, history, INT, ZMOD_RW,
/f-stack/freebsd/contrib/openzfs/tests/runfiles/
H A Dsanity.run430 [tests/functional/history]
433 tags = ['functional', 'history']
H A Dcommon.run601 [tests/functional/history]
606 tags = ['functional', 'history']
/f-stack/freebsd/contrib/zlib/
H A DREADME114 the file ChangeLog history information documenting your changes. Please read
/f-stack/freebsd/contrib/libsodium/m4/
H A Dax_valgrind_check.m4161 VALGRIND_helgrind_FLAGS ?= --history-level=approx
/f-stack/freebsd/contrib/device-tree/Bindings/mtd/
H A Dbrcm,brcmnand.txt11 iProc/Cygnus. Its history includes several similar (but not fully register
/f-stack/tools/
H A DREADME.md181 the interactive mode will support generic line editing, history functions.

12