Home
last modified time | relevance | path

Searched defs:f (Results 1 – 25 of 1167) sorted by relevance

12345678910>>...47

/titanic_52/usr/src/lib/libeti/form/inc/
H A Dutility.h68 #define Status(f, s) ((f) -> status & (s)) argument
69 #define Set(f, s) ((f) -> status |= (s)) argument
70 #define Clr(f, s) ((f) -> status &= ~(s)) argument
72 #define Opt(f, x) ((f) -> opts & (x)) argument
79 #define MakeArg(f, p, err) (_makearg((f) argument
80 CopyArg(f,err) global() argument
81 FreeArg(f) global() argument
82 CheckField(f) global() argument
83 CheckChar(f,c) global() argument
84 NextChoice(f) global() argument
85 PrevChoice(f) global() argument
89 init_field(f) global() argument
97 term_field(f) global() argument
105 init_form(f) global() argument
113 term_form(f) global() argument
122 P(f) global() argument
123 Pmin(f,p) global() argument
124 Pmax(f,p) global() argument
125 Smin(f,p) global() argument
126 Smax(f,p) global() argument
128 Form(f) global() argument
129 ValidIndex(f,i) global() argument
130 ValidPage(f,i) global() argument
131 C(f) global() argument
132 W(f) global() argument
133 X(f) global() argument
134 Y(f) global() argument
135 T(f) global() argument
136 B(f) global() argument
137 Xmax(f) global() argument
138 Ymax(f) global() argument
139 Win(f) global() argument
140 Sub(f) global() argument
142 Field(f) global() argument
143 Buf(f) global() argument
144 OneRow(f) global() argument
145 GrowSize(f) global() argument
146 BufSize(f) global() argument
147 Buffer(f,n) global() argument
148 LineBuf(f,n) global() argument
149 TotalBuf(f) global() argument
150 Just(f) global() argument
151 Fore(f) global() argument
152 Back(f) global() argument
153 Pad(f) global() argument
[all...]
/titanic_52/usr/src/lib/libeti/form/common/
H A Dchg_field.c38 #define first(f) (f->field [Pmin(f, P(f))]) argument
39 #define last(f) (f->field [Pmax(f, P(f))]) argument
40 #define sfirst(f) (f argument
41 slast(f) global() argument
43 Active(f) global() argument
47 next(FIELD * f) next() argument
64 prev(FIELD * f) prev() argument
81 snext(FIELD * f) snext() argument
95 sprev(FIELD * f) sprev() argument
109 left(FIELD * f) left() argument
123 right(FIELD * f) right() argument
137 up(FIELD * f) up() argument
161 down(FIELD * f) down() argument
188 _next_field(FORM * f) _next_field() argument
194 _prev_field(FORM * f) _prev_field() argument
200 _first_field(FORM * f) _first_field() argument
206 _last_field(FORM * f) _last_field() argument
212 _snext_field(FORM * f) _snext_field() argument
218 _sprev_field(FORM * f) _sprev_field() argument
224 _sfirst_field(FORM * f) _sfirst_field() argument
230 _slast_field(FORM * f) _slast_field() argument
236 _left_field(FORM * f) _left_field() argument
242 _right_field(FORM * f) _right_field() argument
248 _up_field(FORM * f) _up_field() argument
254 _down_field(FORM * f) _down_field() argument
260 _first_active(FORM * f) _first_active() argument
[all...]
H A Dchg_char.c38 #define SizePrev(f, v) ((v) - Buf(f)) /* from beginning to v */ argument
39 #define SizeNext(f, v) (BufSize(f) - SizePrev(f, v)) argument
46 _next_char(FORM *f) in _next_char() argument
64 _prev_char(FORM * f) _prev_char() argument
79 _next_line(FORM * f) _next_line() argument
91 _prev_line(FORM * f) _prev_line() argument
103 _next_word(FORM * f) _next_word() argument
143 _prev_word(FORM * f) _prev_word() argument
163 _beg_field(FORM * f) _beg_field() argument
174 _end_field(FORM * f) _end_field() argument
191 _beg_line(FORM * f) _beg_line() argument
202 _end_line(FORM * f) _end_line() argument
219 _left_char(FORM * f) _left_char() argument
230 _right_char(FORM * f) _right_char() argument
241 _up_char(FORM * f) _up_char() argument
252 _down_char(FORM * f) _down_char() argument
263 _scr_fline(FORM * f) _scr_fline() argument
278 _scr_bline(FORM * f) _scr_bline() argument
293 _scr_fpage(FORM * f) _scr_fpage() argument
310 _scr_bpage(FORM * f) _scr_bpage() argument
327 _scr_fhpage(FORM * f) _scr_fhpage() argument
345 _scr_bhpage(FORM * f) _scr_bhpage() argument
363 _scr_fchar(FORM * f) _scr_fchar() argument
377 _scr_bchar(FORM * f) _scr_bchar() argument
390 _scr_hfline(FORM * f) _scr_hfline() argument
406 _scr_hbline(FORM * f) _scr_hbline() argument
422 _scr_hfhalf(FORM * f) _scr_hfhalf() argument
439 _scr_hbhalf(FORM * f) _scr_hbhalf() argument
[all...]
H A Dchg_data.c39 #define AT_BOTTOM(f) (Y(f) == Ymax(f) - 1) /* last line */ argument
40 #define AT_END(f) (Y(f) == Ymax(f) - 1 && X(f) == Xmax(f) - 1) argument
42 #define AT_BEGINNING(f) (Y(f) argument
45 room_for_line(FORM * f) room_for_line() argument
55 room_for_char(FORM * f) room_for_char() argument
84 FORM *f = c->form; _grow_field() local
174 insert_str(FORM * f,int y,int off,int nstr) insert_str() argument
220 wrap_ok(FORM * f) wrap_ok() argument
275 _new_line(FORM * f) _new_line() argument
357 _ins_char(FORM * f) _ins_char() argument
376 _ins_line(FORM * f) _ins_line() argument
394 _del_char(FORM * f) _del_char() argument
401 _del_prev(FORM * f) _del_prev() argument
470 _del_line(FORM * f) _del_line() argument
479 _del_word(FORM * f) _del_word() argument
508 _clr_eol(FORM * f) _clr_eol() argument
516 _clr_eof(FORM * f) _clr_eof() argument
524 _clr_field(FORM * f) _clr_field() argument
533 _ovl_mode(FORM * f) _ovl_mode() argument
541 _ins_mode(FORM * f) _ins_mode() argument
549 _validation(FORM * f) _validation() argument
556 _next_choice(FORM * f) _next_choice() argument
564 _prev_choice(FORM * f) _prev_choice() argument
575 _data_entry(FORM * f,int ch) _data_entry() argument
[all...]
H A Dchg_page.c38 #define first(f) (0) argument
39 #define last(f) (f->maxpage - 1) argument
43 next(FORM *f) in next() argument
54 prev(FORM *f) in prev() argument
64 _next_page(FORM * f) _next_page() argument
70 _prev_page(FORM * f) _prev_page() argument
76 _first_page(FORM * f) _first_page() argument
82 _last_page(FORM * f) _last_page() argument
[all...]
H A Dutility.c38 #define Scrollable(f) ((f)->drows > (f)->rows || \ argument
40 #define Connected(f) ((f) -> form != (FORM *) 0) argument
41 #define OnPage(f) ((f) -> page == P((f) argument
42 Posted(f) global() argument
43 Visible(f) global() argument
44 isCurrent(f) global() argument
45 Justified(f) global() argument
93 _adjust_cursor(FORM * f,char * v) _adjust_cursor() argument
109 _buf_to_win(FIELD * f,WINDOW * w) _buf_to_win() argument
127 _win_to_buf(WINDOW * w,FIELD * f) _win_to_buf() argument
145 _pos_form_cursor(FORM * f) _pos_form_cursor() argument
180 _update_current(FORM * f) _update_current() argument
245 justify(FIELD * f,WINDOW * w) justify() argument
270 unjustify(FIELD * f,WINDOW * w) unjustify() argument
284 _sync_buffer(FORM * f) _sync_buffer() argument
296 _sync_linked(FIELD * f) _sync_linked() argument
311 display_field(FIELD * f) display_field() argument
337 erase_field(FIELD * f) erase_field() argument
353 _sync_field(FIELD * f) _sync_field() argument
387 _sync_attrs(FIELD * f) _sync_attrs() argument
423 _sync_opts(FIELD * f,OPTIONS opts) _sync_opts() argument
477 _validate(FORM * f) _validate() argument
499 _set_current_field(FORM * f,FIELD * field) _set_current_field() argument
564 _set_form_page(FORM * f,int page,FIELD * c) _set_form_page() argument
[all...]
H A Dfield.c88 MakeType(FIELD *f, va_list *ap) in MakeType() argument
109 CopyType(FIELD *f, FIELD *fsrc) in CopyType() argument
131 FreeType(FIELD * f) FreeType() argument
151 FIELD *f = (FIELD *) 0; new_field() local
195 FIELD *f = (FIELD *) 0; dup_field() local
244 FIELD *f = (FIELD *) 0; link_field() local
283 free_field(FIELD * f) free_field() argument
310 field_info(FIELD * f,int * rows,int * cols,int * frow,int * fcol,int * nrow,int * nbuf) field_info() argument
338 set_max_field(FIELD * f,int max) set_max_field() argument
362 dynamic_field_info(FIELD * f,int * drows,int * dcols,int * max) dynamic_field_info() argument
383 move_field(FIELD * f,int frow,int fcol) move_field() argument
405 set_field_type(FIELD * f,FIELDTYPE * ft,...) set_field_type() argument
422 field_type(FIELD * f) field_type() argument
428 field_arg(FIELD * f) field_arg() argument
438 set_new_page(FIELD * f,int flag) set_new_page() argument
454 new_page(FIELD * f) new_page() argument
[all...]
H A Dpost.c39 post_form(FORM *f) in post_form() argument
70 unpost_form(FORM * f) unpost_form() argument
92 pos_form_cursor(FORM * f) pos_form_cursor() argument
104 set_current_field(FORM * f,FIELD * c) set_current_field() argument
143 current_field(FORM * f) current_field() argument
149 field_index(FIELD * f) field_index() argument
158 set_form_page(FORM * f,int page) set_form_page() argument
193 form_page(FORM * f) form_page() argument
[all...]
H A Dform.c77 insert(FIELD *f, FIELD *head) in insert() argument
113 sort_form(FORM * f) sort_form() argument
140 merge(FIELD * f,FORM * form) merge() argument
155 FIELD **f = form->field; disconnect_fields() local
173 connect_fields(FORM * f,FIELD ** x) connect_fields() argument
226 FORM *f; new_form() local
247 free_form(FORM * f) free_form() argument
262 set_form_fields(FORM * f,FIELD ** fields) set_form_fields() argument
290 form_fields(FORM * f) form_fields() argument
296 field_count(FORM * f) field_count() argument
302 scale_form(FORM * f,int * rows,int * cols) scale_form() argument
316 data_behind(FORM * f) data_behind() argument
331 data_ahead(FORM * f) data_ahead() argument
[all...]
H A Ddriver.c46 #define CALL(x, f) (x.class ? (*x.class) (x.act, f) : E_SYSTEM_ERROR) argument
121 _page_navigation(PTF_int act, FORM *f) in _page_navigation() argument
139 _field_navigation(PTF_int act, FORM *f) in _field_navigation() argument
155 _data_navigation(PTF_int act,FORM * f) _data_navigation() argument
162 _data_manipulation(PTF_int act,FORM * f) _data_manipulation() argument
174 _misc_request(PTF_int act,FORM * f) _misc_request() argument
180 form_driver(FORM * f,int c) form_driver() argument
[all...]
H A Dform_opts.c39 set_form_opts(FORM *f, OPTIONS opts) in set_form_opts() argument
46 form_opts(FORM *f) in form_opts() argument
52 form_opts_on(FORM *f, OPTIONS opts) in form_opts_on() argument
59 form_opts_off(FORM *f, OPTIONS opts) in form_opts_off() argument
/titanic_52/usr/src/cmd/ast/libshell/common/
H A Dillumos_cmdlist.h45 #define BINCMDLIST(f) \ argument
47 #define USRBINCMDLIST(f) \ argument
49 #define SBINCMDLIST(f) \ argument
51 #define SUSRBINCMDLIST(f) \ argument
54 XPG6CMDLIST(f) global() argument
56 XPG4CMDLIST(f) global() argument
60 GNUCMDLIST(f) global() argument
69 ASTCMDLIST(f) global() argument
[all...]
/titanic_52/usr/src/contrib/ast/src/lib/libast/include/
H A Drecfmt.h46 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
49 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
52 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
55 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
58 #define REC_V_RECORD(f,s) (((f) argument
59 REC_V_HEADER(f) global() argument
60 REC_V_OFFSET(f) global() argument
61 REC_V_LENGTH(f) global() argument
62 REC_V_LITTLE(f) global() argument
63 REC_V_INCLUSIVE(f) global() argument
64 REC_V_SIZE(f) global() argument
65 REC_V_ATTRIBUTES(f) global() argument
68 REC_M_INDEX(f) global() argument
[all...]
H A Dsfio.h337 #define _SF_(f) (f) argument
342 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
343 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
344 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_ argument
345 __sf_putm(f,v,m) global() argument
347 __sf_putc(f,c) global() argument
350 __sf_getc(f) global() argument
358 __sf_fileno(f) global() argument
359 __sf_eof(f) global() argument
360 __sf_error(f) global() argument
361 __sf_clrerr(f) global() argument
362 __sf_stacked(f) global() argument
363 __sf_value(f) global() argument
369 sfputd(Sfio_t * f,Sfdouble_t v) sfputd() argument
370 sfputl(Sfio_t * f,Sflong_t v) sfputl() argument
371 sfputu(Sfio_t * f,Sfulong_t v) sfputu() argument
372 sfputm(Sfio_t * f,Sfulong_t v,Sfulong_t m) sfputm() argument
375 sfputc(Sfio_t * f,int c) sfputc() argument
376 sfgetc(Sfio_t * f) sfgetc() argument
382 sffileno(Sfio_t * f) sffileno() argument
383 sfeof(Sfio_t * f) sfeof() argument
384 sferror(Sfio_t * f) sferror() argument
385 sfclrerr(Sfio_t * f) sfclrerr() argument
386 sfstacked(Sfio_t * f) sfstacked() argument
387 sfvalue(Sfio_t * f) sfvalue() argument
420 sfstrclose(f) global() argument
422 sfstrseek(f,p,m) global() argument
436 sfstrsize(f) global() argument
437 sfstrtell(f) global() argument
438 sfstrpend(f) global() argument
439 sfstrbase(f) global() argument
441 sfstruse(f) global() argument
445 sfstrrsrv(f,n) global() argument
450 sfstrbuf(f,b,n,m) global() argument
[all...]
/titanic_52/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dfsm.c55 #define PROTO_NAME(f) ((f)->callbacks->proto_name) argument
78 fsm_init(f) in fsm_init() argument
96 fsm_lowerup(f) fsm_lowerup() argument
126 fsm_lowerdown(f) fsm_lowerdown() argument
170 fsm_open(f) fsm_open() argument
219 fsm_close(f,reason) fsm_close() argument
280 fsm *f = (fsm *) arg; global() local
331 fsm_input(f,inpacket,l) fsm_input() argument
413 fsm_rconfreq(f,id,inp,len) fsm_rconfreq() argument
493 fsm_rconfack(f,id,inp,len) fsm_rconfack() argument
550 fsm_rconfnakrej(f,code,id,inp,len) fsm_rconfnakrej() argument
607 fsm_rtermreq(f,id,p,len) fsm_rtermreq() argument
641 fsm_rtermack(f) fsm_rtermack() argument
676 fsm_rcoderej(f,inp,len) fsm_rcoderej() argument
767 fsm_protreject(f) fsm_protreject() argument
816 fsm_sconfreq(f,retransmit) fsm_sconfreq() argument
870 fsm_sdata(f,code,id,data,datalen) fsm_sdata() argument
[all...]
/titanic_52/usr/src/boot/lib/libstand/
H A Dnullfs.c71 int null_open (const char *path, struct open_file *f) in null_open() argument
76 int null_close(struct open_file *f) in null_close() argument
81 int null_read (struct open_file *f, void *buf, size_t size, size_t *resid) in null_read() argument
86 int null_write (struct open_file *f, void *buf, size_t size, size_t *resid) in null_write() argument
91 off_t null_seek (struct open_file *f, off_t offset, int where) in null_seek() argument
97 int null_stat (struct open_file *f, struct stat *sb) in null_stat() argument
102 int null_readdir(struct open_file *f, struct dirent *d) in null_readdir() argument
/titanic_52/usr/src/contrib/ast/src/lib/libast/astsa/
H A Dsfstr.c27 #define VALID(p,f) ((p=(Sfstr_t*)f)>=&strs[0]&&p<&strs[elementsof(strs)]) argument
48 sfclose(Sfio_t* f) in sfclose() argument
64 sfprintf(Sfio_t* f, const char* fmt, ...) in sfprintf() argument
97 sfputc(Sfio_t* f, in argument
115 sfputr(Sfio_t * f,const char * buf,int sep) sfputr() argument
142 sfstrbase(Sfio_t * f) sfstrbase() argument
171 _sf_strseek(f,p,m) global() argument
186 sfstrseek(Sfio_t * f,int n,int w) sfstrseek() argument
196 sfstrset(Sfio_t * f,int n) sfstrset() argument
206 sfstrtell(Sfio_t * f) sfstrtell() argument
219 sfstruse(Sfio_t * f) sfstruse() argument
232 sfwrite(Sfio_t * f,void * buf,int n) sfwrite() argument
[all...]
/titanic_52/usr/src/lib/libexacct/common/
H A Dexacct_ops.c75 static int stack_check(ea_file_impl_t *f) in stack_check() argument
110 stack_free(ea_file_impl_t * f) stack_free() argument
126 stack_new_group(ea_file_impl_t * f,int nobjs) stack_new_group() argument
149 stack_next_object(ea_file_impl_t * f,size_t (* xread)(ea_file_impl_t *,void *,size_t)) stack_next_object() argument
197 stack_previous_object(ea_file_impl_t * f) stack_previous_object() argument
228 fread_wrapper(ea_file_impl_t * f,void * buf,size_t sz) fread_wrapper() argument
240 bufread_wrapper(ea_file_impl_t * f,void * buf,size_t sz) bufread_wrapper() argument
256 fseek_wrapper(ea_file_impl_t * f,off_t adv) fseek_wrapper() argument
262 bufseek_wrapper(ea_file_impl_t * f,off_t adv) bufseek_wrapper() argument
278 fpos_wrapper(ea_file_impl_t * f) fpos_wrapper() argument
284 bufpos_wrapper(ea_file_impl_t * f) bufpos_wrapper() argument
321 ea_file_impl_t *f = (ea_file_impl_t *)ef; ea_next_object() local
421 ea_file_impl_t *f = (ea_file_impl_t *)ef; ea_previous_object() local
485 xget_object(ea_file_impl_t * f,ea_object_t * obj,size_t (* xread)(ea_file_impl_t *,void *,size_t),off_t (* xseek)(ea_file_impl_t *,off_t),void * (* xpos)(ea_file_impl_t *),int flags) xget_object() argument
681 unpack_group(ea_file_impl_t * f,ea_object_t * grp,int flag) unpack_group() argument
823 ea_file_impl_t *f = (ea_file_impl_t *)ef; ea_write_object() local
870 ea_file_impl_t *f = (ea_file_impl_t *)ef; validate_header() local
963 ea_file_impl_t *f = (ea_file_impl_t *)ef; write_header() local
1050 ea_file_impl_t *f = (ea_file_impl_t *)ef; ea_fdopen() local
1189 ea_file_impl_t *f = (ea_file_impl_t *)ef; ea_close() local
1215 ea_file_impl_t *f = (ea_file_impl_t *)ef; ea_clear() local
[all...]
/titanic_52/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfvprintf.c96 int sfvprintf(Sfio_t* f, const char* form, va_list args) in sfvprintf() argument
143 #define SMputc(f,c) { if((o = SFFLSBUF(f,c)) >= 0 ) n_output += 1; \ argument
146 #define SMnputc(f,c,n) { if((o = SFNPUTC(f, argument
149 SMwrite(f,s,n) global() argument
153 SFBUF(f) global() argument
154 SFINIT(f) global() argument
155 SFEND(f) global() argument
156 SFputc(f,c) global() argument
157 SFnputc(f,c,n) global() argument
158 SFwrite(f,s,n) global() argument
161 SFBUF(f) global() argument
162 SFINIT(f) global() argument
163 SFEND(f) global() argument
164 SFputc(f,c) global() argument
167 SFnputc(f,c,n) global() argument
170 SFwrite(f,s,n) global() argument
[all...]
/titanic_52/usr/src/uts/sun4u/serengeti/io/
H A Dsbdp.c185 static fn_t f = "sbdp_get_bd_and_wnode_num"; in sbdp_get_bd_and_wnode_num() local
212 static fn_t f = "sbdp_get_board_num"; in sbdp_get_board_num() local
257 static fn_t f = "sbdp_get_unit_num"; in sbdp_get_unit_num() local
388 static fn_t f = "sbdp_update_bd_info"; sbdp_update_bd_info() local
462 static fn_t f = "sbdp_bd_init"; sbdp_bd_init() local
487 static fn_t f = "sbdp_bd_fini"; sbdp_bd_fini() local
508 static fn_t f = "sbdp_wnode_init"; sbdp_wnode_init() local
529 static fn_t f = "sbdp_wnode_fini"; sbdp_wnode_fini() local
550 static fn_t f = "sbdp_add_new_bd_info"; sbdp_add_new_bd_info() local
572 static fn_t f = "sbdp_cleanup_bd"; sbdp_cleanup_bd() local
623 static fn_t f = "sbdp_get_wnodep"; sbdp_get_wnodep() local
649 static fn_t f = "sbdp_insert_wnode"; sbdp_insert_wnode() local
675 static fn_t f = "sbdp_remove_wnode"; sbdp_remove_wnode() local
710 static fn_t f = "sbdp_setup_instance"; sbdp_setup_instance() local
748 static fn_t f = "sbdp_teardown_instance"; sbdp_teardown_instance() local
791 static fn_t f = "sbdp_set_err"; sbdp_set_err() local
831 static fn_t f = "sbdp_ioctl"; sbdp_ioctl() local
876 static fn_t f = "sbdp_is_node_bad"; sbdp_is_node_bad() local
894 static fn_t f = "sbdp_get_bd_info"; sbdp_get_bd_info() local
930 static fn_t f = "sbdp_get_comp_status"; sbdp_get_comp_status() local
967 static fn_t f = "sbdp_cpu_in_reset"; sbdp_cpu_in_reset() local
1003 static fn_t f = "sbdp_set_cpu_present"; sbdp_set_cpu_present() local
1028 static fn_t f = "sbdp_is_cpu_present"; sbdp_is_cpu_present() local
1051 static fn_t f = "sbdp_is_cpu_in_reset"; sbdp_is_cpu_in_reset() local
1073 static fn_t f = "sbdp_dr_avail"; sbdp_dr_avail() local
[all...]
/titanic_52/usr/src/boot/sys/boot/userboot/userboot/
H A Dhost.c48 host_open(const char *upath, struct open_file *f) in host_open() argument
58 host_close(struct open_file *f) in host_close() argument
71 host_read(struct open_file *f, void *start, size_t size, size_t *resid) in host_read() argument
81 host_write(struct open_file *f, void *start, size_t size, size_t *resid) in host_write() argument
88 host_seek(struct open_file *f, off_ argument
95 host_stat(struct open_file * f,struct stat * sb) host_stat() argument
111 host_readdir(struct open_file * f,struct dirent * d) host_readdir() argument
154 host_dev_open(struct open_file * f,...) host_dev_open() argument
167 host_dev_close(struct open_file * f) host_dev_close() argument
[all...]
/titanic_52/usr/src/contrib/ast/src/cmd/ksh93/tests/
H A Dtypes.sh148 f() function
157 f() function
163 function f function
172 f() function
206 function f function
223 function f global() function
279 f() global() function
[all...]
/titanic_52/usr/src/tools/ctf/cvt/
H A Dfifo.c51 fifo_t *f; in fifo_new() local
60 fifo_add(fifo_t *f, void *data) in fifo_add() argument
77 fifo_remove(fifo_t *f) in fifo_remove() argument
103 fifo_free(fifo_t * f,void (* freefn)(void *)) fifo_free() argument
123 fifo_len(fifo_t * f) fifo_len() argument
134 fifo_empty(fifo_t * f) fifo_empty() argument
140 fifo_iter(fifo_t * f,int (* iter)(void * data,void * arg),void * arg) fifo_iter() argument
[all...]
/titanic_52/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dscr_dump.c51 scr_dump(f) in scr_dump() argument
72 scr_replace(w, f) in scr_replace() argument
137 scr_restore(f) in scr_restore() argument
157 scr_init(f) scr_init() argument
182 scr_set(f) scr_set() argument
[all...]
/titanic_52/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dscr_dump.c56 scr_dump(const char *f) in scr_dump() argument
72 scr_replace(WINDOW *w, const char *f) in scr_replace() argument
137 scr_restore(const char *f) in scr_restore() argument
152 scr_init(const char *f) in scr_init() argument
178 scr_set(const char *f) in scr_set() argument
[all...]

12345678910>>...47