HomeSort by relevance Sort by last modified time
    Searched refs:statusCode (Results 1 - 25 of 98) 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/emailcommon/src/com/android/emailcommon/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...]
  /frameworks/base/drm/java/android/drm/
DrmConvertedStatus.java 34 public final int statusCode;
48 statusCode = _statusCode;
DrmInfoStatus.java 36 public final int statusCode;
59 statusCode = _statusCode;
  /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/Source/WebKit/win/Interfaces/
IWebHTTPURLResponse.idl 41 HRESULT localizedStringForStatusCode([in] int statusCode, [out, retval] BSTR* statusString);
42 HRESULT statusCode([out, retval] int* statusCode);
  /external/webkit/Source/WebCore/websockets/
WebSocketHandshakeResponse.cpp 62 int WebSocketHandshakeResponse::statusCode() const
67 void WebSocketHandshakeResponse::setStatusCode(int statusCode)
69 ASSERT(statusCode >= 100 && statusCode < 600);
70 m_statusCode = statusCode;
WebSocketHandshakeResponse.h 47 int statusCode() const;
48 void setStatusCode(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);
  /frameworks/base/drm/common/
DrmConvertedStatus.cpp 23 statusCode(_statusCode),
DrmInfoStatus.cpp 23 statusCode(_statusCode),
  /frameworks/base/include/drm/
DrmConvertedStatus.h 59 int statusCode;
DrmInfoStatus.h 58 int statusCode;
  /external/webkit/Source/WebKit/win/
WebURLResponse.cpp 50 static String CFHTTPMessageCopyLocalizedShortDescriptionForStatusCode(CFIndex statusCode)
53 if (statusCode < 100 || statusCode >= 600)
55 else if (statusCode >= 100 && statusCode <= 199) {
56 switch (statusCode) {
67 } else if (statusCode >= 200 && statusCode <= 299) {
68 switch (statusCode) {
94 } else if (statusCode >= 300 && statusCode <= 399)
    [all...]
WebURLResponse.h 74 /* [in] */ int statusCode,
77 virtual HRESULT STDMETHODCALLTYPE statusCode(
78 /* [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)
  /frameworks/base/core/java/android/ddm/
DdmHandleExit.java 69 int statusCode = in.getInt();
71 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/QuickSearchBox/src/com/android/quicksearchbox/util/
HttpHelper.java 125 public HttpException(int statusCode, String reasonPhrase) {
126 super(statusCode + " " + reasonPhrase);
127 mStatusCode = statusCode;
  /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...]

Completed in 489 milliseconds

1 2 3 4