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

1 2 3 4

  /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;
  /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/nist-sip/java/gov/nist/javax/sip/header/
StatusLine.java 57 protected int statusCode;
78 if (sl.statusCode != 0) {
80 int hiscode = sl.statusCode;
81 String codeString = Integer.toString(sl.statusCode);
82 String mycode = Integer.toString(statusCode);
86 if (statusCode != sl.statusCode)
116 String encoding = SIPConstants.SIP_VERSION_STRING + SP + statusCode;
134 return statusCode;
154 public void setStatusCode(int statusCode) {
    [all...]
SipStatusLine.java 16 * @return StatusCode
32 * Set the statusCode member
33 * @param statusCode int to set
35 public abstract void setStatusCode(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/os/storage/
IMountShutdownObserver.java 69 int statusCode;
70 statusCode = data.readInt();
71 this.onShutDownComplete(statusCode);
98 * @param statusCode indicates success or failure of the shutdown.
100 public void onShutDownComplete(int statusCode) throws RemoteException {
105 _data.writeInt(statusCode);
121 * @param statusCode indicates success or failure of the shutdown.
123 public void onShutDownComplete(int statusCode) throws RemoteException;
  /frameworks/base/libs/storage/
IMountShutdownObserver.cpp 32 int32_t statusCode = data.readInt32();
33 onShutDownComplete(statusCode);
  /frameworks/base/include/storage/
IMountShutdownObserver.h 30 virtual void onShutDownComplete(const int32_t statusCode) = 0;
  /external/nist-sip/java/javax/sip/message/
MessageFactory.java 32 Response createResponse(int statusCode, CallIdHeader callId,
37 Response createResponse(int statusCode, CallIdHeader callId,
42 Response createResponse(int statusCode, CallIdHeader callId,
46 Response createResponse(int statusCode, Request request,
50 Response createResponse(int statusCode, Request request,
54 Response createResponse(int statusCode, Request request)
Response.java 61 void setStatusCode(int statusCode) throws ParseException;
  /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, String deviceName) {
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...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java 260 * Creates a new Response message of type specified by the statusCode
264 * @param statusCode -
265 * the new integer of the statusCode value of this Message.
284 * while parsing the statusCode or the body.
286 public Response createResponse(int statusCode, CallIdHeader callId,
297 statusLine.setStatusCode(statusCode);
298 String reasonPhrase = SIPResponse.getReasonPhrase(statusCode);
300 // throw new ParseException(statusCode + " Unkown ", 0);
317 * Creates a new Response message of type specified by the statusCode
321 * @param statusCode
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
StatusLineParser.java 50 protected int statusCode() throws ParseException {
53 dbg_enter("statusCode");
63 dbg_leave("statusCode");
80 int scode = statusCode();
  /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);
  /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) {

Completed in 1175 milliseconds

1 2 3 4