Home | History | Annotate | Download | only in libvncserver

Lines Matching defs:in

34 #include <netinet/in.h>
280 * modifiedRegion. The idea: in this case it could be
310 * n.b. (dx, dy) is the vector pointing in the direction the
362 char *in,*out;
369 in = screen->frameBuffer+(rect.x1-dx)*bpp+(rect.y1-dy)*rowstride;
371 for(j=rect.y1;j<rect.y2;j++,out+=rowstride,in+=rowstride)
372 memmove(out,in,widthInBytes);
375 in += rowstride*(rect.y2-rect.y1-1);
376 for(j=rect.y2-1;j>=rect.y1;j--,out-=rowstride,in-=rowstride)
377 memmove(out,in,widthInBytes);
530 /* Are we transferring a file in the background? */
588 rfbLogPerror("listenerRun: error in select");
764 * Update server's pixel format in screenInfo structure. This
950 /* Update information in the screenInfo structure */
1187 rfbErr("Can't run in background, because I don't have PThreads!\n");