Lines Matching defs:pooh
38 struct WriteThis *pooh = (struct WriteThis *)userp;
39 int eof = !*pooh->readptr;
44 eof = pooh->sizeleft <= 0;
46 pooh->sizeleft--;
49 *ptr = *pooh->readptr; /* copy one single byte */
50 pooh->readptr++; /* advance pointer */
64 struct WriteThis pooh;
88 pooh.readptr = data;
89 pooh.sizeleft = (curl_off_t) strlen(data);
97 curl_mime_data_cb(part, (curl_off_t) -1, read_callback, NULL, NULL, &pooh);