Searched refs:ptr_t (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Dsys.h75 typedef void *ptr_t; typedef
135 extern ptr_t memcpy(ptr_t, const ptr_t, size_t);
136 extern ptr_t memset(ptr_t, int, size_t);
H A Dhist.h46 typedef int (*hist_fun_t)(ptr_t, HistEvent *, int, ...);
53 ptr_t ref; /* Argument for history fcns */
73 protected int hist_set(EditLine *, hist_fun_t, ptr_t);
H A Dhistory.c51 typedef int (*history_gfun_t)(ptr_t, HistEvent *);
52 typedef int (*history_efun_t)(ptr_t, HistEvent *, const char *);
53 typedef void (*history_vfun_t)(ptr_t, HistEvent *);
54 typedef int (*history_sfun_t)(ptr_t, HistEvent *, const int);
57 ptr_t h_ref; /* Argument for history fcns */
126 private int history_def_first(ptr_t, HistEvent *);
127 private int history_def_last(ptr_t, HistEvent *);
128 private int history_def_next(ptr_t, HistEvent *);
129 private int history_def_prev(ptr_t, HistEvent *);
130 private int history_def_curr(ptr_t, HistEven
[all...]
H A Dtokenizer.c108 tok_free((ptr_t)tok);
115 tok_free((ptr_t)tok->ifs);
116 tok_free((ptr_t)tok);
122 tok_free((ptr_t)tok->argv);
123 tok_free((ptr_t)tok->ifs);
124 tok_free((ptr_t)tok);
159 tok_free((ptr_t) tok->ifs);
160 tok_free((ptr_t) tok->wspace);
161 tok_free((ptr_t) tok->argv);
162 tok_free((ptr_t) to
[all...]
H A Dhist.c70 el_free((ptr_t) el->el_history.buf);
79 hist_set(EditLine *el, hist_fun_t fun, ptr_t ptr)
H A Del.c118 el_free((ptr_t) el->el_prog);
119 el_free((ptr_t) el);
229 ptr_t ptr = va_arg(va, char *);
381 ptr_t ptr = va_arg(va, char *);
H A Dkey.c116 el_free((ptr_t) el->el_key.buf);
336 el_free((ptr_t) ptr->val.str);
437 el_free((ptr_t) ptr->val.str);
443 el_free((ptr_t) ptr);
H A Dsig.c138 el_free((ptr_t) el->el_signal);
H A Dchared.c616 el_free((ptr_t) el->el_line.buffer);
619 el_free((ptr_t) el->el_chared.c_undo.buf);
621 el_free((ptr_t) el->el_chared.c_redo.buf);
626 el_free((ptr_t) el->el_chared.c_kill.buf);
628 el_free((ptr_t) el->el_chared.c_macro.macro);
H A Dterm.c345 el_free((ptr_t) el->el_term.t_buf);
347 el_free((ptr_t) el->el_term.t_cap);
350 el_free((ptr_t) el->el_term.t_str);
352 el_free((ptr_t) el->el_term.t_val);
354 el_free((ptr_t) el->el_term.t_fkey);
490 el_free((ptr_t) * bufp);
491 el_free((ptr_t) b);
497 el_free((ptr_t) * bufp);
498 el_free((ptr_t) b);
/macosx-10.10/tcsh-65/tcsh/
H A Dsh.types.h71 typedef void * ptr_t; typedef
73 typedef char * ptr_t; typedef
99 typedef void * ptr_t; typedef
140 typedef char * ptr_t; typedef
225 typedef void * ptr_t; typedef
372 typedef char * ptr_t; typedef
389 typedef void * ptr_t; typedef
H A Dtc.decls.h46 extern void free (ptr_t);
48 extern memalign_t realloc (ptr_t, size_t);
53 extern void sfree (ptr_t);
55 extern memalign_t srealloc (ptr_t, size_t);
249 time_t, ptr_t);
335 extern char *who_info (ptr_t, int);
H A Dtc.alloc.c299 free(ptr_t cp)
313 CHECK(cp > (ptr_t) memtop,
315 CHECK(cp < (ptr_t) membot,
376 realloc(ptr_t cp, size_t nbytes)
381 ptr_t res;
487 ptr_t ptr;
508 srealloc(ptr_t p, size_t n)
510 ptr_t ptr;
533 ptr_t ptr;
559 sfree(ptr_t
[all...]
H A Dma.setp.c327 xfree((ptr_t) p);
332 xfree((ptr_t) p);
335 xfree((ptr_t) pe);
366 xfree((ptr_t) p);
514 xfree((ptr_t) (pe->pdir[n]));
568 xfree((ptr_t) (pe->pdir[loc]));
H A Dtc.prompt.c63 xfree((ptr_t) month_list[i]);
78 xfree((ptr_t) day_list[i]);
182 tprintf(int what, const Char *fmt, const char *str, time_t tim, ptr_t info)
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Dsys.h88 typedef void *ptr_t; typedef
155 extern ptr_t memcpy(ptr_t, const ptr_t, size_t);
156 extern ptr_t memset(ptr_t, int, size_t);
H A Dhist.h45 typedef int (*hist_fun_t)(ptr_t, TYPE(HistEvent) *, int, ...);
52 ptr_t ref; /* Argument for history fcns */
80 protected int hist_set(EditLine *, hist_fun_t, ptr_t);
84 protected wchar_t *hist_convert(EditLine *, int, ptr_t);
H A Dhistory.c61 typedef int (*history_gfun_t)(ptr_t, TYPE(HistEvent) *);
62 typedef int (*history_efun_t)(ptr_t, TYPE(HistEvent) *, const Char *);
63 typedef void (*history_vfun_t)(ptr_t, TYPE(HistEvent) *);
64 typedef int (*history_sfun_t)(ptr_t, TYPE(HistEvent) *, const int);
67 ptr_t h_ref; /* Argument for history fcns */
139 private int history_def_next(ptr_t, TYPE(HistEvent) *);
140 private int history_def_first(ptr_t, TYPE(HistEvent) *);
141 private int history_def_prev(ptr_t, TYPE(HistEvent) *);
142 private int history_def_last(ptr_t, TYPE(HistEvent) *);
143 private int history_def_curr(ptr_t, TYP
[all...]
H A Dtokenizer.c118 tok_free((ptr_t)tok);
125 tok_free((ptr_t)tok->ifs);
126 tok_free((ptr_t)tok);
132 tok_free((ptr_t)tok->argv);
133 tok_free((ptr_t)tok->ifs);
134 tok_free((ptr_t)tok);
169 tok_free((ptr_t) tok->ifs);
170 tok_free((ptr_t) tok->wspace);
171 tok_free((ptr_t) tok->argv);
172 tok_free((ptr_t) to
[all...]
H A Del.c141 el_free((ptr_t) el->el_prog);
142 el_free((ptr_t) el);
144 el_free((ptr_t) el->el_scratch.cbuff);
145 el_free((ptr_t) el->el_scratch.wbuff);
146 el_free((ptr_t) el->el_lgcyconv.cbuff);
147 el_free((ptr_t) el->el_lgcyconv.wbuff);
277 ptr_t ptr = va_arg(ap, ptr_t);
H A Dhist.c75 el_free((ptr_t) el->el_history.buf);
84 hist_set(EditLine *el, hist_fun_t fun, ptr_t ptr)
215 hist_convert(EditLine *el, int fn, ptr_t arg)
H A Dkey.c120 el_free((ptr_t) el->el_key.buf);
342 el_free((ptr_t) ptr->val.str);
443 el_free((ptr_t) ptr->val.str);
449 el_free((ptr_t) ptr);
479 el_free((ptr_t) k);
H A Dterm.c370 el_free((ptr_t) el->el_term.t_buf);
372 el_free((ptr_t) el->el_term.t_cap);
375 el_free((ptr_t) el->el_term.t_str);
377 el_free((ptr_t) el->el_term.t_val);
379 el_free((ptr_t) el->el_term.t_fkey);
485 el_free((ptr_t) b[i]);
486 el_free((ptr_t) b);
500 el_free((ptr_t) b[i]);
501 el_free((ptr_t) b);
524 el_free((ptr_t) *buf
[all...]
/macosx-10.10/libedit-40/src/
H A Dsys.h84 typedef void *ptr_t; typedef
/macosx-10.10/tcsh-65/tcsh/win32/
H A Dnt.screen.c98 xfree((ptr_t) * bufp);
99 xfree((ptr_t) b);
105 xfree((ptr_t) * bufp);
106 xfree((ptr_t) b);

Completed in 689 milliseconds

12