Home | History | Annotate | Download | only in libvncclient

Lines Matching defs:loop

365     uint8_t loop=0;
388 for (loop=0;loop<count;loop++)
390 if (!ReadFromRFBServer(client, (char *)&tAuth[loop], 4)) return FALSE;
391 t=rfbClientSwap32IfLE(tAuth[loop]);
392 rfbClientLog("%d) Received security type %d\n", loop, t);
403 rfbClientLog("Selecting security type %d (%d/%d in the list)\n", authScheme, loop, count);
405 if (!WriteToRFBServer(client, (char *)&tAuth[loop], 4)) return FALSE;
407 tAuth[loop]=t;
412 for (loop=0;loop<count;loop++)
415 snprintf(buf2, sizeof(buf2), (loop>0 ? ", %d" : "%d"), (int)tAuth[loop]);