HomeSort by relevance Sort by last modified time
    Searched refs:SPDY_name_value_add (Results 1 - 8 of 8) sorted by null

  /external/libmicrohttpd/src/testspdy/
test_struct_namevalue.c 131 if(SPDY_YES != SPDY_name_value_add(container,pairs[i],pairs[i+1]))
133 FAIL_TEST("SPDY_name_value_add failed\n");
175 if(SPDY_INPUT_ERROR != SPDY_name_value_add(ob1,ob2,ob3))
177 FAIL_TEST("SPDY_name_value_add with NULLs failed\n");
211 if(SPDY_YES != SPDY_name_value_add(container,pairs_with_dups[i],pairs_with_dups[i+1]))
213 FAIL_TEST("SPDY_name_value_add failed\n");
239 if(SPDY_NO != SPDY_name_value_add(container,pairs_with_dups[0],pairs_with_dups[1]))
240 FAIL_TEST("SPDY_name_value_add failed\n");
253 if(SPDY_YES != SPDY_name_value_add(container,pairs_with_empty[i],pairs_with_empty[i+1]))
255 FAIL_TEST("SPDY_name_value_add failed\n")
    [all...]
test_request_response_with_callback.c 139 if(SPDY_YES != SPDY_name_value_add(resp_headers,SPDY_HTTP_HEADER_CONTENT_TYPE,"text/plain"))
141 fprintf(stdout,"SPDY_name_value_add failed\n");
  /external/libmicrohttpd/src/examples/
spdy_fileserver.c 197 || SPDY_YES != SPDY_name_value_add(resp_headers,SPDY_HTTP_HEADER_DATE,date))
199 printf("SPDY_name_value_add or Rfc1123_DateTimeNow failed\n");
205 || SPDY_YES != SPDY_name_value_add(resp_headers,SPDY_HTTP_HEADER_CONTENT_LENGTH,fsize))
207 printf("SPDY_name_value_add or asprintf failed\n");
213 if(SPDY_YES != SPDY_name_value_add(resp_headers,SPDY_HTTP_HEADER_CONTENT_TYPE,mime))
215 printf("SPDY_name_value_add failed\n");
220 if(SPDY_YES != SPDY_name_value_add(resp_headers,SPDY_HTTP_HEADER_SERVER,"libmicrospdy/fileserver"))
222 printf("SPDY_name_value_add failed\n");
spdy_response_with_callback.c 111 if(SPDY_YES != SPDY_name_value_add(resp_headers,SPDY_HTTP_HEADER_CONTENT_TYPE,"text/plain"))
113 fprintf(stdout,"SPDY_name_value_add failed\n");
  /external/libmicrohttpd/src/microspdy/
applicationlayer.c 126 if (SPDY_YES != SPDY_name_value_add(headers,iterator->name,iterator->value[i]))
434 if(SPDY_YES != SPDY_name_value_add(all_headers[0], ":status", fullstatus))
440 if(SPDY_YES != SPDY_name_value_add(all_headers[0], ":version", version))
structures.c 56 SPDY_name_value_add (struct SPDY_NameValue *container,
612 if(SPDY_YES != SPDY_name_value_add(*container, name, value))
  /external/libmicrohttpd/src/include/
microspdy.h     [all...]
  /external/libmicrohttpd/src/spdy2http/
proxy.c 645 if(SPDY_YES != SPDY_name_value_add(proxy->headers, name, ""))
646 DIE("SPDY_name_value_add failed");
657 if(SPDY_YES != (ret = SPDY_name_value_add(proxy->headers, name, value)))
671 PRINT_INFO2("SPDY_name_value_add failed (%i) for '%s'", ret, name);
    [all...]

Completed in 3518 milliseconds