Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 2683) sorted by relevance

12345678910>>...108

/titanic_51/usr/src/man/man9f/
H A DMakefile20 MANSECT= 9f
22 MANFILES= ASSERT.9f \
23 Intro.9f \
24 OTHERQ.9f \
25 RD.9f \
26 SAMESTR.9f \
27 STRUCT_DECL.9f \
28 WR.9f \
29 adjmsg.9f \
30 allocb.9f \
[all...]
/titanic_51/usr/src/lib/libsys/sparc/
H A Dlibsys.list1 f 1 access
2 f 1 acct
3 f 1 alarm
4 f 1 catclose
5 f 1 catgets
6 f 1 catopen
7 f 1 chdir
8 f 1 chmod
9 f 1 chown
10 f
[all...]
/titanic_51/usr/src/lib/libsys/i386/
H A Dlibsys.list1 f 1 access
2 f 1 acct
3 f 1 alarm
4 f 1 catclose
5 f 1 catgets
6 f 1 catopen
7 f 1 chdir
8 f 1 chmod
9 f 1 chown
10 f
[all...]
/titanic_51/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfseek.c30 static void newpos(Sfio_t* f, Sfoff_t p) in newpos() argument
32 static void newpos(f, p) in newpos()
33 Sfio_t* f; in newpos()
38 if((f->bits&SF_MMAP) && f->data)
39 { SFMUNMAP(f, f->data, f->endb-f->data);
40 f
52 sfseek(Sfio_t * f,Sfoff_t p,int type) sfseek() argument
[all...]
H A Dsfrd.c37 reg Sfio_t* f; in _sfwrsync() local
44 f = p->sf[0]; in _sfwrsync()
45 if(!SFFROZEN(f) && f->next > f->data && in _sfwrsync()
46 (f->mode&SF_WRITE) && f->extent < 0 ) in _sfwrsync()
47 (void)_sfflsbuf(f,-1); in _sfwrsync()
52 { f = _Sfpool.sf[n]; in _sfwrsync()
54 if(!SFFROZEN(f) in _sfwrsync()
61 sfrd(Sfio_t * f,Void_t * buf,size_t n,Sfdisc_t * disc) sfrd() argument
[all...]
H A Dsfmode.c45 ** 05/31/2003 (sfsetbuf(f,f,align_size) to set alignment for data)
71 reg Sfio_t* f; in _sfcleanup() local
75 f = (Sfio_t*)Version; /* shut compiler warning */ in _sfcleanup()
84 { if(!(f = p->sf[n]) || SFFROZEN(f) ) in _sfcleanup()
87 SFLOCK(f,0); in _sfcleanup()
88 SFMTXLOCK(f); in _sfcleanup()
91 (void)SFRAISE(f, SF_ATEXIT, NIL(Void_t*)); in _sfcleanup()
93 if(f in _sfcleanup()
115 _sfsetpool(Sfio_t * f) _sfsetpool() argument
169 _sfrsrv(reg Sfio_t * f,reg ssize_t size) _sfrsrv() argument
214 _sfpopen(reg Sfio_t * f,int fd,int pid,int stdio) _sfpopen() argument
254 _sfpclose(reg Sfio_t * f) _sfpclose() argument
311 _sfpmode(Sfio_t * f,int type) _sfpmode() argument
362 _sfmode(reg Sfio_t * f,reg int wanted,reg int local) _sfmode() argument
[all...]
H A Dsfpurge.c30 int sfpurge(Sfio_t* f) in sfpurge() argument
32 int sfpurge(f) in sfpurge()
33 Sfio_t* f; in sfpurge()
37 SFMTXDECL(f);
39 SFMTXENTER(f,-1);
41 if((mode = f->mode&SF_RDWR) != (int)f->mode && _sfmode(f,mode|SF_SYNCED,0) < 0)
42 SFMTXRETURN(f, -1);
44 if((f
[all...]
H A Dsfsync.c25 ** If f is nil, all streams are sync-ed
37 reg Sfio_t* f; in _sfall() local
53 f = p->sf[n]; in _sfall()
55 if(f->flags&SF_STRING ) in _sfall()
57 if(SFFROZEN(f)) in _sfall()
59 if((f->mode&SF_READ) && (f->mode&SF_SYNCED) ) in _sfall()
61 if((f->mode&SF_READ) && !(f->bits&SF_MMAP) && in _sfall()
62 f in _sfall()
83 sfsync(reg Sfio_t * f) sfsync() argument
[all...]
H A Dsfclose.c30 int sfclose(Sfio_t* f) in sfclose() argument
32 int sfclose(f) in sfclose()
33 Sfio_t* f; in sfclose()
38 SFMTXDECL(f); /* declare a local stream variable for multithreading */
40 SFMTXENTER(f, -1);
42 GETLOCAL(f,local);
44 if(!(f->mode&SF_INIT) &&
45 SFMODE(f,local) != (f->mode&SF_RDWR) &&
46 SFMODE(f,loca
[all...]
H A Dsfsize.c29 Sfoff_t sfsize(Sfio_t* f) in sfsize() argument
31 Sfoff_t sfsize(f) in sfsize()
32 Sfio_t* f; in sfsize()
38 SFMTXDECL(f);
40 SFMTXENTER(f, (Sfoff_t)(-1));
42 if((mode = f->mode&SF_RDWR) != (int)f->mode && _sfmode(f,mode,0) < 0)
43 SFMTXRETURN(f, (Sfoff_t)(-1));
45 if(f
[all...]
/titanic_51/usr/src/lib/libast/common/sfio/
H A Dsfseek.c30 static void newpos(Sfio_t* f, Sfoff_t p) in newpos() argument
32 static void newpos(f, p) in newpos()
33 Sfio_t* f; in newpos()
38 if((f->bits&SF_MMAP) && f->data)
39 { SFMUNMAP(f, f->data, f->endb-f->data);
40 f->data = NIL(uchar*);
43 f->next = f->endr = f->endw = f->data;
44 f->endb = (f->mode&SF_WRITE) ? f->data+f->size : f->data;
45 if((f->here = p) < 0)
46 { f->extent = -1;
[all …]
H A Dsfrd.c37 reg Sfio_t* f; in _sfwrsync() local
44 f = p->sf[0]; in _sfwrsync()
45 if(!SFFROZEN(f) && f->next > f->data && in _sfwrsync()
46 (f->mode&SF_WRITE) && f->extent < 0 ) in _sfwrsync()
47 (void)_sfflsbuf(f,-1); in _sfwrsync()
52 { f = _Sfpool.sf[n]; in _sfwrsync()
54 if(!SFFROZEN(f) && f->next > f->data && in _sfwrsync()
55 (f->mode&SF_WRITE) && f->extent < 0 ) in _sfwrsync()
56 (void)_sfflsbuf(f,-1); in _sfwrsync()
61 ssize_t sfrd(Sfio_t* f, Void_t* buf, size_t n, Sfdisc_t* disc) in sfrd() argument
[all …]
H A Dsfmode.c71 reg Sfio_t* f; in _sfcleanup() local
75 f = (Sfio_t*)Version; /* shut compiler warning */ in _sfcleanup()
84 { if(!(f = p->sf[n]) || SFFROZEN(f) ) in _sfcleanup()
87 SFLOCK(f,0); in _sfcleanup()
88 SFMTXLOCK(f); in _sfcleanup()
91 (void)SFRAISE(f, SF_ATEXIT, NIL(Void_t*)); in _sfcleanup()
93 if(f->flags&SF_STRING) in _sfcleanup()
97 pool = f->mode&SF_POOL; in _sfcleanup()
98 f->mode &= ~SF_POOL; in _sfcleanup()
99 if((f->flags&SF_WRITE) && !(f->mode&SF_WRITE)) in _sfcleanup()
[all …]
H A Dsfpurge.c30 int sfpurge(Sfio_t* f) in sfpurge() argument
32 int sfpurge(f) in sfpurge()
33 Sfio_t* f; in sfpurge()
37 SFMTXDECL(f);
39 SFMTXENTER(f,-1);
41 if((mode = f->mode&SF_RDWR) != (int)f->mode && _sfmode(f,mode|SF_SYNCED,0) < 0)
42 SFMTXRETURN(f, -1);
44 if((f->flags&SF_IOCHECK) && f->disc && f->disc->exceptf)
45 (void)(*f->disc->exceptf)(f,SF_PURGE,(Void_t*)((int)1),f->disc);
47 if(f->disc == _Sfudisc)
[all …]
H A Dsfsync.c37 reg Sfio_t* f; in _sfall() local
53 f = p->sf[n]; in _sfall()
55 if(f->flags&SF_STRING ) in _sfall()
57 if(SFFROZEN(f)) in _sfall()
59 if((f->mode&SF_READ) && (f->mode&SF_SYNCED) ) in _sfall()
61 if((f->mode&SF_READ) && !(f->bits&SF_MMAP) && in _sfall()
62 f->next == f->endb) in _sfall()
64 if((f->mode&SF_WRITE) && !(f->bits&SF_HOLE) && in _sfall()
65 f->next == f->data) in _sfall()
68 if(sfsync(f) < 0) in _sfall()
[all …]
H A Dsfclose.c30 int sfclose(Sfio_t* f) in sfclose() argument
32 int sfclose(f) in sfclose()
33 Sfio_t* f; in sfclose()
38 SFMTXDECL(f);
40 SFMTXENTER(f, -1);
42 GETLOCAL(f,local);
44 if(!(f->mode&SF_INIT) &&
45 SFMODE(f,local) != (f->mode&SF_RDWR) &&
46 SFMODE(f,local) != (f->mode&(SF_READ|SF_SYNCED)) &&
47 _sfmode(f,SF_SYNCED,local) < 0)
[all …]
H A Dsfsize.c29 Sfoff_t sfsize(Sfio_t* f) in sfsize() argument
31 Sfoff_t sfsize(f) in sfsize()
32 Sfio_t* f; in sfsize()
38 SFMTXDECL(f);
40 SFMTXENTER(f, (Sfoff_t)(-1));
42 if((mode = f->mode&SF_RDWR) != (int)f->mode && _sfmode(f,mode,0) < 0)
43 SFMTXRETURN(f, (Sfoff_t)(-1));
45 if(f->flags&SF_STRING)
46 { SFSTRSIZE(f);
47 SFMTXRETURN(f, f->extent);
[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
79 fsm *f; in fsm_init()
81 f->state = INITIAL;
82 f->flags = 0;
83 f->id = (uchar_t)(drand48() * 0xFF); /* Start with random id */
84 f->timeouttime = DEFTIMEOUT;
85 f->maxconfreqtransmits = DEFMAXCONFREQS;
86 f
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/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 Dfield.c88 MakeType(FIELD *f, va_list *ap) in MakeType() argument
92 f->arg = MakeArg(f, ap, &err); /* pick off type specific args */ in MakeType()
95 FreeArg(f); /* release type specific args */ in MakeType()
96 f->type = (FIELDTYPE *)0; in MakeType()
97 f->arg = (char *)0; in MakeType()
100 IncrType(f->type); /* increment reference count */ in MakeType()
109 CopyType(FIELD *f, FIELD *fsrc) in CopyType() argument
113 f->type = fsrc->type; /* copy field type */ in CopyType()
114 f in CopyType()
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 Dutility.c38 #define Scrollable(f) ((f)->drows > (f)->rows || \ argument
39 (f)->dcols > (f)->cols)
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 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
48 if (++X(f) == Xmax(f)) { in _next_char()
49 if (++Y(f) == Ymax(f)) { in _next_char()
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 Dpost.c39 post_form(FORM *f) in post_form() argument
43 if (!f) in post_form()
46 if (Status(f, POSTED)) in post_form()
49 if (!f->field) in post_form()
52 getmaxyx(Sub(f), y, x); in post_form()
54 if (f->rows > y || f->cols > x) in post_form()
57 v = _set_form_page(f, P(f), C(f)); in post_form()
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...]
/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/pkg/manifests/
H A Dsystem-kernel.man9f.inc18 file path=usr/share/man/man9f/ASSERT.9f
19 file path=usr/share/man/man9f/Intro.9f
20 file path=usr/share/man/man9f/OTHERQ.9f
21 file path=usr/share/man/man9f/RD.9f
22 file path=usr/share/man/man9f/SAMESTR.9f
23 file path=usr/share/man/man9f/STRUCT_DECL.9f
24 file path=usr/share/man/man9f/WR.9f
25 file path=usr/share/man/man9f/adjmsg.9f
26 file path=usr/share/man/man9f/allocb.9f
27 file path=usr/share/man/man9f/atomic_add.9f
[all...]

12345678910>>...108