Home
last modified time | relevance | path

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

12345678910>>...59

/titanic_51/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_51/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...]
/titanic_51/usr/src/lib/libshell/common/data/
H A Dsolaris_cmdlist.h44 #define BINCMDLIST(f) \ argument
46 #define USRBINCMDLIST(f) \ argument
48 #define SBINCMDLIST(f) \ argument
50 #define SUSRBINCMDLIST(f) \ argument
53 #define XPG6CMDLIST(f) \ argument
55 #define XPG4CMDLIST(f) \ argument
59 #define GNUCMDLIST(f) \ argument
68 #define ASTCMDLIST(f) \ argument
/titanic_51/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_51/usr/src/lib/libast/common/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)&(((1<<16)-1)<<16))|(s)) argument
59 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
60 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
61 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
62 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
63 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
H A Dsfio.h335 #define _SF_(f) (f) argument
340 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
341 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v))) argument
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m))) argument
345 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \ argument
348 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \ argument
356 #define __sf_fileno(f) (_SF_(f)->_file) argument
357 #define __sf_eof(f) (_SF_(f)->_flags&SF_EOF) argument
358 #define __sf_error(f) (_SF_(f)->_flags&SF_ERROR) argument
[all …]
/titanic_51/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_51/usr/src/lib/libast/i386/include/ast/
H A Drecfmt.h55 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
58 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
61 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
64 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
67 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
68 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
69 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
70 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
71 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
72 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
H A Dsfio.h335 #define _SF_(f) (f) argument
340 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
341 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v))) argument
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m))) argument
345 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \ argument
348 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \ argument
356 #define __sf_fileno(f) (_SF_(f)->_file) argument
357 #define __sf_eof(f) (_SF_(f)->_flags&SF_EOF) argument
358 #define __sf_error(f) (_SF_(f)->_flags&SF_ERROR) argument
[all …]
/titanic_51/usr/src/lib/libast/amd64/include/ast/
H A Drecfmt.h55 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
58 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
61 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
64 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
67 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
68 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
69 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
70 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
71 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
72 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
/titanic_51/usr/src/lib/libast/sparcv9/include/ast/
H A Drecfmt.h55 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
58 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
61 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
64 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
67 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
68 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
69 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
70 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
71 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
72 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
/titanic_51/usr/src/lib/libast/sparc/include/ast/
H A Drecfmt.h55 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
58 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
61 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
64 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
67 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
68 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
69 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
70 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
71 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
72 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
H A Dsfio.h335 #define _SF_(f) (f) argument
340 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
341 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v))) argument
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m))) argument
345 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \ argument
348 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \ argument
356 #define __sf_fileno(f) (_SF_(f)->_file) argument
357 #define __sf_eof(f) (_SF_(f)->_flags&SF_EOF) argument
358 #define __sf_error(f) (_SF_(f)->_flags&SF_ERROR) argument
[all …]
/titanic_51/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_51/usr/src/lib/libshell/common/tests/
H A Dtypes.sh148 f() function
157 f() function
163 function f function
172 f() function
206 function f function
223 function f function
279 f() function
/titanic_51/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_51/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...]

12345678910>>...59