Lines Matching refs:pooh
44 struct WriteThis *pooh = (struct WriteThis *) userp; in free_callback() local
46 pooh->freecount++; in free_callback()
51 struct WriteThis *pooh = (struct WriteThis *)userp; in read_callback() local
52 int eof = !*pooh->readptr; in read_callback()
57 eof = pooh->sizeleft <= 0; in read_callback()
59 pooh->sizeleft--; in read_callback()
62 *ptr = *pooh->readptr; /* copy one single byte */ in read_callback()
63 pooh->readptr++; /* advance pointer */ in read_callback()
79 struct WriteThis pooh; in test() local
103 pooh.readptr = data; in test()
104 pooh.sizeleft = (curl_off_t) strlen(data); in test()
105 pooh.freecount = 0; in test()
120 &pooh); in test()
161 if(pooh.freecount != 2) { in test()
163 pooh.freecount); in test()