Lines Matching refs:b
273 fcgi_hash_buckets *b; in fcgi_hash_destroy() local
276 b = h->buckets; in fcgi_hash_destroy()
277 while (b) { in fcgi_hash_destroy()
278 fcgi_hash_buckets *q = b; in fcgi_hash_destroy()
279 b = b->next; in fcgi_hash_destroy()
350 fcgi_hash_buckets *b = (fcgi_hash_buckets*)malloc(sizeof(fcgi_hash_buckets)); in fcgi_hash_set() local
351 b->idx = 0; in fcgi_hash_set()
352 b->next = h->buckets; in fcgi_hash_set()
353 h->buckets = b; in fcgi_hash_set()
1091 fcgi_begin_request *b; in fcgi_read_request() local
1097 b = (fcgi_begin_request*)buf; in fcgi_read_request()
1098 req->keep = (b->flags & FCGI_KEEP_CONN); in fcgi_read_request()
1111 switch ((b->roleB1 << 8) + b->roleB0) { in fcgi_read_request()