/external/wpa_supplicant_8/src/wps/ |
http.h | 15 HTTP_OK = 200,
|
wps_upnp_web.c | 249 case HTTP_OK: 461 return HTTP_OK; 497 return HTTP_OK; 599 return HTTP_OK; 659 return HTTP_OK; 721 if (ret == HTTP_OK) { 746 if (ret == HTTP_OK) { 884 if (ret != HTTP_OK) 1069 http_put_reply_code(buf, HTTP_OK); [all...] |
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
PublicApiFunctionalTest.java | 79 enqueueResponse(HTTP_OK, FILE_CONTENT); 179 int status = isFirstResponse ? HTTP_OK : HTTP_PARTIAL_CONTENT; 196 enqueueResponse(HTTP_OK, STRING_1K) 203 enqueueEmptyResponse(HTTP_OK); 243 enqueueResponse(HTTP_OK, "small contents"); 248 enqueueResponse(HTTP_OK, "large contents large contents"); 302 enqueueResponse(HTTP_OK, FILE_CONTENT); 323 enqueueEmptyResponse(HTTP_OK); 348 enqueueResponse(HTTP_OK, FILE_CONTENT); 355 enqueueResponse(HTTP_OK, FILE_CONTENT) [all...] |
ThreadingTest.java | 49 enqueueResponse(HTTP_OK, FILE_CONTENT);
|
DownloadManagerFunctionalTest.java | 49 enqueueResponse(HTTP_OK, FILE_CONTENT); 66 enqueueResponse(HTTP_OK, FILE_CONTENT); 81 enqueueResponse(HTTP_OK, FILE_CONTENT); 92 enqueueResponse(HTTP_OK, FILE_CONTENT);
|
AbstractDownloadManagerFunctionalTest.java | 53 protected static final int HTTP_OK = 200;
|
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerFunctionalTest.java | 157 enqueueResponse(HTTP_OK, blobData); 196 enqueueResponse(HTTP_OK, blobData); 227 enqueueResponse(HTTP_OK, blobData); 254 MockResponse response = enqueueResponse(HTTP_OK, blobData); 330 MockResponse response = enqueueResponse(HTTP_OK, blobData); 362 enqueueResponse(HTTP_OK, blobData); 392 MockResponse response = enqueueResponse(HTTP_OK, blobData); 410 MockResponse response = enqueueResponse(HTTP_OK, blobData);
|
DownloadManagerStressTest.java | 88 enqueueResponse(HTTP_OK, blobData);
|
DownloadManagerBaseTest.java | 70 protected static final int HTTP_OK = 200; [all...] |
/frameworks/base/tests/CoreTests/android/core/ |
HttpConstants.java | 21 public static final int HTTP_OK = 200;
|
/libcore/support/src/test/java/tests/support/ |
Support_HttpConstants.java | 21 public static final int HTTP_OK = 200;
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps_upnp_web.c | 616 case HTTP_OK: 818 return HTTP_OK; 846 return HTTP_OK; 869 return HTTP_OK; 892 return HTTP_OK; 915 return HTTP_OK; 938 return HTTP_OK; 961 return HTTP_OK; 984 return HTTP_OK; 1043 return HTTP_OK; [all...] |
wps_upnp_i.h | 35 HTTP_OK = 200,
|
wps_upnp_event.c | 229 if (reply_code == HTTP_OK) {
|
/external/chromium/third_party/libevent/test/ |
regress_http.c | 239 evhttp_send_reply(req, HTTP_OK, "Everything is fine", 287 evhttp_send_reply_start(req, HTTP_OK, "Everything is fine"); 387 evhttp_send_reply(req, HTTP_OK, "Everything is fine", NULL); 505 if (req->response_code != HTTP_OK) { 534 if (req->response_code != HTTP_OK) { 577 evhttp_send_reply(req, HTTP_OK, "Everything is fine", evb); 587 if (req->response_code != HTTP_OK) { 753 evhttp_send_reply(req, HTTP_OK, "Everything is fine", evb); 768 if (req->response_code != HTTP_OK) { 850 if (req == NULL || req->response_code != HTTP_OK) { [all...] |
regress_rpc.c | 239 if (req->response_code != HTTP_OK) {
|
/external/chromium/third_party/libevent/ |
evhttp.h | 55 #define HTTP_OK 200
|
evrpc.c | 361 evhttp_send_reply(req, HTTP_OK, "OK", data);
|
/libcore/luni/src/main/java/java/net/ |
HttpURLConnection.java | 429 public static final int HTTP_OK = 200;
|
/external/mockwebserver/src/test/java/com/google/mockwebserver/ |
MockWebServerTest.java | 51 assertEquals(HttpURLConnection.HTTP_OK, connection.getResponseCode());
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
JavaNetHttpHelper.java | 151 if (c.getResponseCode() != HttpURLConnection.HTTP_OK) {
|
/sdk/sdkstats/src/com/android/sdkstats/ |
SdkStatsService.java | 179 if (conn.getResponseCode() != HttpURLConnection.HTTP_OK &&
|
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/ |
DownloadManagerBaseTest.java | 75 protected static final int HTTP_OK = 200; 748 enqueueResponse(HTTP_OK, body); 759 enqueueResponse(HTTP_OK, body);
|
/libcore/luni/src/main/java/libcore/net/http/ |
ResponseHeaders.java | 342 if (responseCode != HttpURLConnection.HTTP_OK
|
/frameworks/base/core/java/android/webkit/ |
LoadListener.java | 67 private static final int HTTP_OK = 200; 437 if ((mStatusCode == HTTP_OK || [all...] |