Lines Matching defs:cbc
52 struct CBC *cbc = ctx;
54 if (cbc->pos + size * nmemb > cbc->size)
56 memcpy (&cbc->buf[cbc->pos], ptr, size * nmemb);
57 cbc->pos += size * nmemb;
114 struct CBC cbc;
127 cbc.buf = buf;
128 cbc.size = 2048;
129 cbc.pos = 0;
137 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc);
228 if (cbc.pos != strlen ("/hello_world"))
230 if (0 != strncmp ("/hello_world", cbc.buf, strlen ("/hello_world")))