Searched refs:exceptf (Results 1 - 25 of 61) sorted by relevance

123

/ast/src/lib/libast/vmalloc/
H A Dvmdisc.c47 { if(old->exceptf &&
48 (*old->exceptf)(vm,VM_DISC,(Void_t*)disc,old) != 0 )
H A Dvmclose.c50 if(vm->disc->exceptf && /* announcing closing event */
51 (rv = (*vm->disc->exceptf)(vm,VM_CLOSE,(Void_t*)1,vm->disc)) < 0 )
82 if(disc->exceptf) /* finalizing closing */
83 (void)(*disc->exceptf)(vm, VM_ENDCLOSE, (Void_t*)0, disc);
H A Dvmopen.c86 if(disc->exceptf)
88 if((rv = (*disc->exceptf)(vmp,VM_OPEN,(Void_t*)(&addr),disc)) < 0)
169 if(disc->exceptf) /* signaling that vmopen succeeded */
170 (void)(*disc->exceptf)(vm, VM_ENDOPEN, NIL(Void_t*), disc);
/ast/src/lib/libast/sfio/
H A Dsfpurge.c44 if((f->flags&SF_IOCHECK) && f->disc && f->disc->exceptf)
45 (void)(*f->disc->exceptf)(f,SF_PURGE,(Void_t*)((int)1),f->disc);
94 if((f->flags&SF_IOCHECK) && f->disc && f->disc->exceptf)
95 (void)(*f->disc->exceptf)(f,SF_PURGE,(Void_t*)((int)0),f->disc);
H A Dsfdisc.c156 if(rv == 0 && f->disc && f->disc->exceptf) /* ask current discipline */
158 rv = (*f->disc->exceptf)(f, SF_DBUFFER, &n, f->disc);
161 if(rv == 0 && disc && disc->exceptf) /* ask discipline being pushed */
163 rv = (*disc->exceptf)(f, SF_DBUFFER, &n, disc);
177 dcca->disc.exceptf = _dccaexcept;
201 if(d->exceptf)
203 if((*(d->exceptf))(f,SF_DPOP,(Void_t*)disc,d) < 0 )
215 if(d && d->exceptf)
217 if( (*(d->exceptf))(f,SF_DPUSH,(Void_t*)disc,d) < 0 )
H A Dsfraise.c88 if(disc->exceptf)
90 if((rv = (*disc->exceptf)(f,type,data,disc)) != 0 )
H A Dsfexcept.c51 if(disc && disc->exceptf)
58 ev = (*(disc->exceptf))(f,type,&io,disc);
H A Dsfpoll.c82 if(f->disc && f->disc->exceptf)
83 { if((m = (*f->disc->exceptf)(f,SF_DPOLL,&tm,f->disc)) < 0)
238 if(f->disc && f->disc->exceptf)
239 (*f->disc->exceptf)(f,SF_READY,(Void_t*)(long)status[c],f->disc);
H A Dsfsync.c116 if((f->flags&SF_IOCHECK) && f->disc && f->disc->exceptf)
117 (void)(*f->disc->exceptf)(f,SF_SYNC,(Void_t*)((int)1),f->disc);
163 if((f->flags&SF_IOCHECK) && f->disc && f->disc->exceptf)
164 (void)(*f->disc->exceptf)(f,SF_SYNC,(Void_t*)((int)0),f->disc);
H A Dsfungetc.c81 _Sfudisc->exceptf = _uexcept;
/ast/src/cmd/tests/sfio/
H A Dtalarm.c50 int exceptf(Sfio_t* f, int type, Void_t* data, Sfdisc_t* disc) function
52 int exceptf(f, type, data, disc)
71 Sfdisc_t Disc = {NIL(Sfread_f), NIL(Sfwrite_f), NIL(Sfseek_f), exceptf};
H A Dtexcept.c108 Disc.exceptf = except;
152 Disc2.exceptf = except3;
168 Disc.exceptf = except2;
H A Dtstack.c25 int exceptf(Sfio_t*f, int type, Void_t* data, Sfdisc_t* disc) function
27 int exceptf(f, type, data, disc)
43 terror("Stream mode should be accessible in exceptf");
78 Sfdisc_t Disc = { readf, writef, NIL(Sfseek_f), exceptf, 0 };
/ast/src/cmd/cs/
H A D6263.c73 exceptf(Css_t* css, unsigned long op, unsigned long arg, Cssdisc_t* disc) function
101 disc.exceptf = exceptf;
H A Dcss.c156 exceptf(Css_t* css, unsigned long op, unsigned long arg, Cssdisc_t* disc) function
189 state.disc.exceptf = exceptf;
H A Dtst.c119 exceptf(Css_t* css, unsigned long op, unsigned long arg, Cssdisc_t* disc) function
152 disc.exceptf = exceptf;
H A Dmbb.c359 exceptf(Css_t* css, unsigned long op, unsigned long arg, Cssdisc_t* disc) function
388 state.disc.exceptf = exceptf;
/ast/src/lib/libast/disc/
H A Dmemfatal.c79 disc->exceptf = nomalloc;
H A Dsfdcslow.c75 disc->exceptf = slowexcept;
H A Dsfdctee.c92 te->disc.exceptf = teeexcept;
H A Dsfdcprefix.c136 pfx->disc.exceptf = pfxexcept;
/ast/src/lib/librecsort/
H A Drsopen.c61 rs->vmdisc.exceptf = Vmdcheap->exceptf;
/ast/src/lib/libcs/
H A Dcss.h82 int (*exceptf)(Css_t*, unsigned long, unsigned long, Cssdisc_t*); member in struct:Cssdisc_s
H A Dcsserve.c72 exceptf(Css_t* css, unsigned long op, unsigned long arg, Cssdisc_t* disc) function
162 server->disc.exceptf = exceptf;
/ast/src/lib/libast/stdio/
H A Dvfwscanf.c104 w->sfdisc.exceptf = wideexcept;

Completed in 365 milliseconds

123