Home
last modified time | relevance | path

Searched refs:httpGet (Results 1 – 7 of 7) sorted by relevance

/external/robolectric-shadows/shadows/httpclient/src/test/java/org/robolectric/shadows/httpclient/
DShadowDefaultRequestDirectorTest.java289 HttpGet httpGet = new HttpGet("http://example.com"); in shouldRecordExtendedRequestData() local
290 requestDirector.execute(null, httpGet, null); in shouldRecordExtendedRequestData()
292 assertSame(FakeHttp.getSentHttpRequestInfo(0).getHttpRequest(), httpGet); in shouldRecordExtendedRequestData()
302 HttpGet httpGet = new HttpGet("http://example.com"); in getNextSentHttpRequestInfo_shouldRemoveHttpRequestInfos() local
303 requestDirector.execute(null, httpGet, null); in getNextSentHttpRequestInfo_shouldRemoveHttpRequestInfos()
305 assertSame(FakeHttp.getNextSentHttpRequestInfo().getHttpRequest(), httpGet); in getNextSentHttpRequestInfo_shouldRemoveHttpRequestInfos() local
312 HttpGet httpGet = new HttpGet("http://example.com"); in getNextSentHttpRequest_shouldRemoveHttpRequests() local
313 requestDirector.execute(null, httpGet, null); in getNextSentHttpRequest_shouldRemoveHttpRequests()
315 assertSame(FakeHttp.getNextSentHttpRequest(), httpGet); in getNextSentHttpRequest_shouldRemoveHttpRequests() local
DParamsParserTest.java43 HttpGet httpGet = new HttpGet("http://example.com/path?foo=bar"); in parseParams_shouldParseParamsFromGetRequests() local
44 Map<String, String> parsed = ParamsParser.parseParams(httpGet); in parseParams_shouldParseParamsFromGetRequests()
/external/libcups/cups/
Dgetputfile.c91 if (httpGet(http, resource)) in cupsGetFd()
Dlibcups2.def339 httpGet
Dtesthttp.c784 if (httpGet(http, resource)) in main()
Dhttp.h467 extern int httpGet(http_t *http, const char *uri);
Dhttp.c744 httpGet(http_t *http, /* I - HTTP connection */ in httpGet() function