Lines Matching defs:my

102     DPSCAPData my;
165 my = (DPSCAPData) extData->private_data;
166 my->codes = codes;
167 agent = my->agent;
251 my->dpscapVersion = reply.good.dpscapVersion;
252 if (my->dpscapVersion < DPSCAPPROTOVERSION)
256 sprintf(kbuf, "NX: agent version %d older than expected %d, client will downgrade", my->dpscapVersion, DPSCAPPROTOVERSION);
289 my->agentWindow = reply.good.agentWindow;
292 /* Hook my extension data on the dpy */
294 my->extData = extData;
302 /* Chain my data on global list */
304 my->next = gCSDPS->head;
305 gCSDPS->head = my;
484 register DPSCAPData my = (DPSCAPData)Xcalloc(1, sizeof(DPSCAPDataRec));
486 if (my == (DPSCAPData)NULL) return(NULL);
487 my->dpy = dpy;
488 my->agent = agent;
489 my->typePSOutput = XInternAtom(
493 my->typePSOutputWithLen = XInternAtom(
497 my->typePSStatus = XInternAtom(
501 my->typeNoop = XInternAtom(
505 my->typeSync = XInternAtom(
509 my->typeXError = XInternAtom(
513 my->typePSReady = XInternAtom(
517 my->typeResume = XInternAtom(
521 return(my);
528 register DPSCAPData my = (DPSCAPData) extData->private_data;
531 if (my == (DPSCAPData)NULL) return(0);
532 DPSCAPCloseAgent(my->agent);
533 my->agent = NULL;
534 /* my->extData->private_data = NIL; ???? +++ */
535 if (my == gCSDPS->head)
536 gCSDPS->head = my->next;
538 if (n->next == my)
540 n->next = my->next;
543 Xfree(my);
621 DPSCAPData my;
627 my = (DPSCAPData) extData->private_data;
637 DPSCAPChangeGC(my->agent, gc, DPSGCBITS, &values);
654 DPSCAPData my;
661 my = (DPSCAPData) extData->private_data;
670 dpy = my->agent;
715 DPSCAPData my;
732 my = (DPSCAPData) extData->private_data;
745 DPSCAPChangeGC(my->agent, gc, DPSGCBITS, &values);