Lines Matching defs:num
303 int num = 0;
338 else if(1 == sscanf(ptr, "pipe: %d", &num)) {
339 logmsg("instructed to allow a pipe size of %d", num);
340 if(num < 0)
342 else if(num > 0)
343 req->pipe = num-1; /* decrease by one since we don't count the
346 else if(1 == sscanf(ptr, "skip: %d", &num)) {
347 logmsg("instructed to skip this number of bytes %d", num);
348 req->skip = num;
941 size_t num = count;
942 if(num > 200)
943 num = 200;
944 written = swrite(sock, buffer, num);
966 size_t num = count;
967 if(num > 200)
968 num = 200;
970 num);
1011 int num;
1014 if(2 == sscanf(ptr, "%31s %d", command, &num)) {
1016 logmsg("Told to sleep for %d seconds", num);
1017 quarters = num * 4;
1032 logmsg("Continuing after sleeping %d seconds", num);