Lines Matching defs:pooh
39 struct WriteThis *pooh = (struct WriteThis *) userp;
41 pooh->freecount++;
46 struct WriteThis *pooh = (struct WriteThis *)userp;
47 int eof = !*pooh->readptr;
52 eof = pooh->sizeleft <= 0;
54 pooh->sizeleft--;
57 *ptr = *pooh->readptr; /* copy one single byte */
58 pooh->readptr++; /* advance pointer */
74 struct WriteThis pooh;
98 pooh.readptr = data;
99 pooh.sizeleft = (curl_off_t) strlen(data);
100 pooh.freecount = 0;
115 &pooh);
156 if(pooh.freecount != 2) {
158 pooh.freecount);