Home | History | Annotate | Download | only in testspdy

Lines Matching full:container

107 	struct SPDY_NameValue *container;
114 if(NULL == (container = SPDY_name_value_create ()))
119 if(NULL != SPDY_name_value_lookup (container, "anything", &ret))
124 if(SPDY_name_value_iterate (container, NULL, NULL) != 0)
131 if(SPDY_YES != SPDY_name_value_add(container,pairs[i],pairs[i+1]))
136 if(SPDY_name_value_iterate (container, NULL, NULL) != ((i / 2) + 1))
142 if(NULL != SPDY_name_value_lookup (container, "anything", &ret))
149 value = SPDY_name_value_lookup(container,pairs[i], &ret);
158 SPDY_name_value_iterate (container, &iterate_cb, &cls);
161 if(SPDY_name_value_iterate (container, &iterate_brake_cb, &cls) != brake_at)
166 SPDY_name_value_destroy(container);
202 if(NULL == (container = SPDY_name_value_create ()))
211 if(SPDY_YES != SPDY_name_value_add(container,pairs_with_dups[i],pairs_with_dups[i+1]))
216 if(SPDY_name_value_iterate (container, NULL, NULL) != atoi(pairs_with_dups[size - 1]))
222 value = SPDY_name_value_lookup(container,pairs_with_dups[i], &ret);
239 if(SPDY_NO != SPDY_name_value_add(container,pairs_with_dups[0],pairs_with_dups[1]))
242 SPDY_name_value_destroy(container);
244 if(NULL == (container = SPDY_name_value_create ()))
253 if(SPDY_YES != SPDY_name_value_add(container,pairs_with_empty[i],pairs_with_empty[i+1]))
257 value = SPDY_name_value_lookup(container,pairs_with_empty[i], &ret);
265 ret = SPDY_name_value_iterate(container, NULL, NULL);
266 if(SPDY_INPUT_ERROR != SPDY_name_value_add(container, "capitalLeter","anything")
267 || SPDY_name_value_iterate(container, NULL, NULL) != ret)
272 SPDY_name_value_destroy(container);
274 if(NULL == (container = SPDY_name_value_create ()))
283 if(SPDY_YES != SPDY_name_value_add(container,pairs_with_dups[i],pairs_with_dups[i+1]))
304 container_arr[0] = container;
313 != (SPDY_name_value_iterate(container, NULL, NULL) + SPDY_name_value_iterate(container2, NULL, NULL)))
318 value = SPDY_name_value_lookup(container,pairs_with_dups[i], &ret);