Home | History | Annotate | Download | only in microspdy

Lines Matching refs:temp

63 	struct SPDY_NameValue *temp;
143 temp = container;
144 while(NULL != temp->next)
145 temp = temp->next;
146 temp->next = pair;
147 pair->prev = temp;
194 struct SPDY_NameValue *temp = container;
203 if(strcmp(name, temp->name) == 0)
205 *num_values = temp->num_values;
206 return (const char * const *)temp->value;
209 temp = temp->next;
211 while(NULL != temp);
221 struct SPDY_NameValue *temp = container;
223 while(NULL != temp)
226 free(temp->name);
227 for(i=0; i<temp->num_values; ++i)
228 free(temp->value[i]);
229 free(temp->value);
230 free(temp);
231 temp=container;
243 struct SPDY_NameValue *temp = container;
259 temp=temp->next;
261 while(NULL != temp);
270 ret = iterator(iterator_cls, temp->name, (const char * const *)temp->value, temp->num_values);
271 temp=temp->next;
273 while(NULL != temp && SPDY_YES == ret);
465 int32_t temp;
515 temp = htonl(name_size);
516 memcpy(*stream + offset, &temp, 4);