Lines Matching refs:temp
87 rule *temp; in HTAddRule() local
90 temp = typecalloc(rule); in HTAddRule()
91 if (temp == NULL) in HTAddRule()
94 assert(temp != NULL); in HTAddRule()
100 temp->equiv = pEquiv; in HTAddRule()
102 temp->equiv = 0; in HTAddRule()
105 StrAllocCopy(temp->condition_op, cond_op); in HTAddRule()
106 StrAllocCopy(temp->condition, cond); in HTAddRule()
109 temp->pattern = pPattern; in HTAddRule()
110 temp->op = op; in HTAddRule()
129 temp->next = rules; in HTAddRule()
130 rules = temp; in HTAddRule()
132 temp->next = 0; in HTAddRule()
134 rule_tail->next = temp; in HTAddRule()
136 rules = temp; in HTAddRule()
137 rule_tail = temp; in HTAddRule()
155 rule *temp = rules; in HTClearRules() local
157 rules = temp->next; in HTClearRules()
158 FREE(temp->pattern); in HTClearRules()
159 FREE(temp->equiv); in HTClearRules()
160 FREE(temp->condition_op); in HTClearRules()
161 FREE(temp->condition); in HTClearRules()
162 FREE(temp); in HTClearRules()
330 char *temp = NULL; in HTTranslate() local
332 StrAllocCopy(temp, "NoProxy="); in HTTranslate()
333 StrAllocCat(temp, current); in HTTranslate()
335 current = temp; in HTTranslate()
352 char *temp = NULL; in HTTranslate() local
354 HTSprintf0(&temp, "%.*s%.*s%s", in HTTranslate()
361 current, temp)); in HTTranslate()
363 current = temp; /* Use this */ in HTTranslate()
366 char *temp = NULL; in HTTranslate() local
368 StrAllocCopy(temp, r->equiv); in HTTranslate()
370 current, temp)); in HTTranslate()
372 current = temp; /* Use this */ in HTTranslate()
377 char *temp = NULL; in HTTranslate() local
379 StrAllocCopy(temp, "NoProxy="); in HTTranslate()
380 StrAllocCat(temp, current); in HTTranslate()
382 current = temp; in HTTranslate()
412 char *temp = NULL; in HTTranslate() local
414 StrAllocCopy(temp, "Proxied="); in HTTranslate()
415 StrAllocCat(temp, r->equiv); in HTTranslate()
416 StrAllocCat(temp, current); in HTTranslate()
420 return temp; in HTTranslate()
434 char *temp = NULL; in HTTranslate() local
436 StrAllocCopy(temp, "NoProxy="); in HTTranslate()
437 StrAllocCat(temp, current); in HTTranslate()
439 return temp; in HTTranslate()
515 const char *temp = pointer; in HTSetConfiguration() local
517 if (LYscanFloat2(&temp, &quality)) { in HTSetConfiguration()
519 if (LYscanFloat2(&temp, &secs)) { in HTSetConfiguration()
521 if (LYscanFloat2(&temp, &secs_per_byte)) { in HTSetConfiguration()
523 if (sscanf(temp, "%ld", &maxbytes)) { in HTSetConfiguration()