/solaris-x11-s11/open-src/lib/DPS/sun-src/include/DPS/ |
H A D | dpsXclient.h | 133 DPSErrorProc errorProc, 143 'errorProc' is called to handle errors reported by the context. 153 DPSErrorProc errorProc, 160 DPSErrorProc errorProc); 163 to 'textProc' (rather than the interpreter). 'errorProc' can 178 DPSErrorProc errorProc, 186 DPSErrorProc errorProc); 195 If 'textProc' or 'errorProc' are NULL, the new DPSContext will 197 context gets the 'textProc' and/or 'errorProc' passed in. The new 261 DPSErrorProc errorProc); [all...] |
H A D | dpsclient.h | 65 errors. The arg1 argument to the errorProc is the address of the 155 When DPSDefaultErrorProc is used as a context's errorProc, the exception 178 extern void DPSSetErrorBackstop(DPSErrorProc errorProc); 180 /* Call this to establish errorProc as the handler for PostScript interpreter 183 argument to errorProc. */ 187 /* Returns the errorProc passed most recently to DPSSetErrorBackstop, or NULL 384 #define DPSSetErrorProc(ctxt, ep) ((ctxt)->errorProc = (ep)) 386 /* Change ctxt's errorProc. */
|
H A D | dpsfriends.h | 287 void (*errorProc)(struct _t_DPSContextRec *, int, long unsigned, long unsigned); member in struct:_t_DPSContextRec 308 The 'textProc' and 'errorProc' are called by the client library
|
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdps/ |
H A D | dpssimpint.h | 52 void (*errorProc)(); member in struct:_t_DPSPrivContextRec
|
H A D | dpsXint.h | 55 DPSErrorProc errorProc; member in struct:_t_DPSPrivContextRec
|
H A D | dpsXclient.c | 97 DPSErrorProc errorProc) 112 if (errorProc) c->errorProc = errorProc; 147 if (cc->errorProc != NIL) { 148 (*cc->errorProc) (ctxt, cc->zombie ? dps_err_deadContext : 187 if (c->errorProc != NIL) 188 (*c->errorProc) (ctxt, dps_err_invalidAccess, 0, 0); 199 if (c->errorProc != NIL) 200 (*c->errorProc) (ctx 93 DPSContextFromContextID( DPSContext ctxt, int contextID, DPSTextProc textProc, DPSErrorProc errorProc) argument 518 XDPSCreateSimpleContext( Display *dpy, Drawable draw, GC gc, int x, int y, DPSTextProc textProc, DPSErrorProc errorProc, DPSSpace space) argument 545 XDPSCreateContext( Display *dpy, Drawable draw, GC gc, int x, int y, unsigned int eventmask, XStandardColormap *grayramp, XStandardColormap *ccube, int actual, DPSTextProc textProc, DPSErrorProc errorProc, DPSSpace space) argument 575 XDPSCreateSecureContext( Display *dpy, Drawable draw, GC gc, int x, int y, unsigned int eventmask, XStandardColormap *grayramp, XStandardColormap *ccube, int actual, DPSTextProc textProc, DPSErrorProc errorProc, DPSSpace space) argument [all...] |
H A D | dpsclient.c | 196 if (ctxt->errorProc != NIL) 197 (*ctxt->errorProc)(ctxt, dps_err_resultTypeCheck, (long unsigned)obj, 0); 285 if (ctxt->errorProc != NIL) 286 (*ctxt->errorProc)(ctxt, dps_err_resultTypeCheck, (long unsigned)obj, 0); 318 if (ctxt->errorProc != NIL) 319 (*ctxt->errorProc)(ctxt, dps_err_resultTypeCheck, (long unsigned)obj, 0); 324 if (ctxt->errorProc != NIL) 325 (*ctxt->errorProc)(ctxt, dps_err_resultTypeCheck, (long unsigned)obj, 0); 593 if (cc->errorProc != NIL) 594 (*cc->errorProc)((DPSContex 2487 DPSCreateTextContext( DPSTextProc textProc, DPSErrorProc errorProc) argument 2574 DPSSetErrorBackstop(DPSErrorProc errorProc) argument 2605 DPSCreateContext( char *wh, DPSTextProc textProc, DPSErrorProc errorProc, DPSSpace space) argument [all...] |
H A D | dpsXpriv.c | 245 if (ctxt->errorProc != NIL) 246 (*ctxt->errorProc) (ctxt, dps_err_encodingCheck, 471 if (BlockForEvent (wh->dpy) < 0 && wh->ctxt->errorProc != NIL) { 472 (*(wh->ctxt->errorProc)) (wh->ctxt, dps_err_closedDisplay,
|
H A D | dpsint.h | 112 DPSErrorProc errorProc,
|