HomeSort by relevance Sort by last modified time
    Searched refs:statusCode (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/apache-http/src/org/apache/http/client/
HttpResponseException.java 40 private final int statusCode;
42 public HttpResponseException(int statusCode, final String s) {
44 this.statusCode = statusCode;
48 return this.statusCode;
  /frameworks/base/core/java/android/os/storage/
IMountShutdownObserver.aidl 29 * @param statusCode indicates success or failure
32 void onShutDownComplete(int statusCode);
  /packages/apps/Email/src/com/android/email/service/
IEmailServiceCallback.aidl 23 * statuscode = 1, progress = 0: "starting"
24 * statuscode = 0, progress = n/a: "finished"
27 * statuscode = err, progress = n/a: "stopping due to error"
30 * statuscode = 1, progress = 0: "starting"
31 * statuscode = 1, progress = 30: "working"
32 * statuscode = 1, progress = 60: "working"
33 * statuscode = 0, progress = n/a: "finished"
39 * statusCode = 0 for OK, 1 for progress, other codes for error
42 void syncMailboxListStatus(long accountId, int statusCode, int progress);
47 * statusCode = 0 for OK, 1 for progress, other codes for erro
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicStatusLine.java 61 private final int statusCode;
71 * @param statusCode the status code of the response
75 public BasicStatusLine(final ProtocolVersion version, int statusCode,
82 if (statusCode < 0) {
87 this.statusCode = statusCode;
97 return this.statusCode;
  /external/webkit/WebKit/win/Interfaces/
IWebHTTPURLResponse.idl 41 HRESULT localizedStringForStatusCode([in] int statusCode, [out, retval] BSTR* statusString);
42 HRESULT statusCode([out, retval] int* statusCode);
  /external/webkit/WebKit/win/
WebURLResponse.cpp 52 static LPCTSTR CFHTTPMessageCopyLocalizedShortDescriptionForStatusCode(CFIndex statusCode)
55 if (statusCode < 100 || statusCode >= 600)
57 else if (statusCode >= 100 && statusCode <= 199) {
58 switch (statusCode) {
69 } else if (statusCode >= 200 && statusCode <= 299) {
70 switch (statusCode) {
96 } else if (statusCode >= 300 && statusCode <= 399)
    [all...]
WebURLResponse.h 77 /* [in] */ int statusCode,
80 virtual HRESULT STDMETHODCALLTYPE statusCode(
81 /* [retval][out] */ int *statusCode);
  /frameworks/base/core/java/android/ddm/
DdmHandleExit.java 70 int statusCode = in.getInt();
72 Runtime.getRuntime().halt(statusCode);
  /frameworks/base/telephony/java/com/android/internal/telephony/test/
SimulatedRadioControl.java 52 public void triggerIncomingUssd(String statusCode, String message);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppUtility.java 252 public static String getStatusDescription(Context context, int statusCode) {
254 if (statusCode == BluetoothShare.STATUS_PENDING) {
256 } else if (statusCode == BluetoothShare.STATUS_RUNNING) {
258 } else if (statusCode == BluetoothShare.STATUS_SUCCESS) {
260 } else if (statusCode == BluetoothShare.STATUS_NOT_ACCEPTABLE) {
262 } else if (statusCode == BluetoothShare.STATUS_FORBIDDEN) {
264 } else if (statusCode == BluetoothShare.STATUS_CANCELED) {
266 } else if (statusCode == BluetoothShare.STATUS_FILE_ERROR) {
268 } else if (statusCode == BluetoothShare.STATUS_ERROR_NO_SDCARD) {
270 } else if (statusCode == BluetoothShare.STATUS_CONNECTION_ERROR)
    [all...]
  /cts/tools/host/src/com/android/cts/
TestDevice.java     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
HistoryDelegate.cpp 122 int statusCode = 0;
123 if (FAILED(httpResponse->statusCode(&statusCode)))
139 bool wasFailure = hasSubstituteData || (httpResponse && statusCode >= 400);
ResourceLoadDelegate.cpp 116 int statusCode = 0;
119 httpResponse->statusCode(&statusCode);
121 return L"<NSURLResponse " + url + L", http status code " + wstringFromInt(statusCode) + L">";
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
authSm.h 109 TI_UINT16 statusCode,
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/mlme/Auth/
authSm.h 108 UINT16 statusCode,
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
authSm.h 109 TI_UINT16 statusCode,
  /external/webkit/WebCore/inspector/front-end/
ResourceView.js 322 requestMethodElement.hidden = !this.resource.statusCode;
324 statusCodeElement.hidden = !this.resource.statusCode;
327 if (this.resource.statusCode) {
329 if (this.resource.statusCode < 300)
331 else if (this.resource.statusCode < 400)
335 statusCodeImage = "<img class=\"resource-status-image\" src=\"" + statusImageSource + "\" title=\"" + WebInspector.Resource.StatusTextForCode(this.resource.statusCode) + "\">";
341 statusCodeImage + "<div class=\"header-value source-code\">" + WebInspector.Resource.StatusTextForCode(this.resource.statusCode) + "</div>";
  /frameworks/base/core/java/android/net/http/
Request.java 250 int statusCode = 0;
255 statusCode = statusLine.getStatusCode();
256 } while (statusCode < HttpStatus.SC_OK);
263 statusCode, statusLine.getReasonPhrase());
266 hasBody = canResponseHaveBody(mHttpRequest, statusCode);
337 if (statusCode == HttpStatus.SC_OK
338 || statusCode == HttpStatus.SC_PARTIAL_CONTENT) {
HttpsConnection.java 201 int statusCode = 0;
224 statusCode = statusLine.getStatusCode();
225 } while (statusCode < HttpStatus.SC_OK);
252 if (statusCode == HttpStatus.SC_OK) {
274 statusCode,
  /external/webkit/WebCore/loader/icon/
IconFetcher.cpp 189 int statusCode = response.httpStatusCode() / 100;
190 if (statusCode == 4 || statusCode == 5) {
  /frameworks/base/core/java/android/webkit/
CacheManager.java 387 public static CacheResult createCacheFile(String url, int statusCode,
389 return createCacheFile(url, statusCode, headers, mimeType, 0,
393 static CacheResult createCacheFile(String url, int statusCode,
403 if (statusCode == 303) {
411 if (checkCacheRedirect(statusCode) && !headers.getSetCookie().isEmpty()) {
417 CacheResult ret = parseHeaders(statusCode, headers, mimeType);
585 private static boolean checkCacheRedirect(int statusCode) {
586 if (statusCode == 301 || statusCode == 302 || statusCode == 307)
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 92 int statusCode = 0;
94 statusCode = [(NSHTTPURLResponse *)self statusCode];
95 return [NSString stringWithFormat:@"<NSURLResponse %@, http status code %i>", [[self URL] _drt_descriptionSuitableForTestResult], statusCode];
  /packages/apps/IM/src/com/android/im/imps/
ImpsUtils.java 94 int statusCode = parseInt(resultCode, ImErrorInfo.ILLEGAL_SERVER_RESPONSE);
95 return new ImpsErrorInfo(statusCode, errorDesc, response);
  /external/opencore/protocols/rtsp_parcom/src/
rtsp_par_com_message.cpp 32 statusCode = 0;
  /external/webkit/WebCore/page/
EventSource.cpp 169 int statusCode = response.httpStatusCode();
170 if (statusCode == 200 && response.httpHeaderField("Content-Type") == "text/event-stream") {
174 if (statusCode <= 200 || statusCode > 299)

Completed in 687 milliseconds

1 2 3