/ast/src/lib/libast/vmalloc/ |
H A D | vmdisc.c | 47 { if(old->exceptf && 48 (*old->exceptf)(vm,VM_DISC,(Void_t*)disc,old) != 0 )
|
H A D | vmclose.c | 50 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 D | vmopen.c | 86 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 D | sfpurge.c | 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); 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 D | sfdisc.c | 156 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 D | sfraise.c | 88 if(disc->exceptf) 90 if((rv = (*disc->exceptf)(f,type,data,disc)) != 0 )
|
H A D | sfexcept.c | 51 if(disc && disc->exceptf) 58 ev = (*(disc->exceptf))(f,type,&io,disc);
|
H A D | sfpoll.c | 82 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 D | sfsync.c | 116 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 D | sfungetc.c | 81 _Sfudisc->exceptf = _uexcept;
|
/ast/src/cmd/tests/sfio/ |
H A D | talarm.c | 50 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 D | texcept.c | 108 Disc.exceptf = except; 152 Disc2.exceptf = except3; 168 Disc.exceptf = except2;
|
H A D | tstack.c | 25 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 D | 6263.c | 73 exceptf(Css_t* css, unsigned long op, unsigned long arg, Cssdisc_t* disc) function 101 disc.exceptf = exceptf;
|
H A D | css.c | 156 exceptf(Css_t* css, unsigned long op, unsigned long arg, Cssdisc_t* disc) function 189 state.disc.exceptf = exceptf;
|
H A D | tst.c | 119 exceptf(Css_t* css, unsigned long op, unsigned long arg, Cssdisc_t* disc) function 152 disc.exceptf = exceptf;
|
H A D | mbb.c | 359 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 D | memfatal.c | 79 disc->exceptf = nomalloc;
|
H A D | sfdcslow.c | 75 disc->exceptf = slowexcept;
|
H A D | sfdctee.c | 92 te->disc.exceptf = teeexcept;
|
H A D | sfdcprefix.c | 136 pfx->disc.exceptf = pfxexcept;
|
/ast/src/lib/librecsort/ |
H A D | rsopen.c | 61 rs->vmdisc.exceptf = Vmdcheap->exceptf;
|
/ast/src/lib/libcs/ |
H A D | css.h | 82 int (*exceptf)(Css_t*, unsigned long, unsigned long, Cssdisc_t*); member in struct:Cssdisc_s
|
H A D | csserve.c | 72 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 D | vfwscanf.c | 104 w->sfdisc.exceptf = wideexcept;
|