/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...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
SipStatusLine.java | 16 * @return StatusCode 32 * Set the statusCode member 33 * @param statusCode int to set 35 public abstract void setStatusCode(int statusCode);
|
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...] |
/external/libnfc-nxp/src/ |
phLibNfc_Ioctl.c | 94 NFCSTATUS StatusCode=NFCSTATUS_INVALID_PARAMETER; 101 StatusCode=NFCSTATUS_INVALID_PARAMETER; 102 return StatusCode; 108 StatusCode = NFCSTATUS_INVALID_PARAMETER; 109 return StatusCode; 114 StatusCode = NFCSTATUS_NOT_INITIALISED; 115 return StatusCode; 121 StatusCode = NFCSTATUS_SHUTDOWN; 122 return StatusCode; 141 StatusCode = phHal4Nfc_Ioctl( phLibNfc_Ioctl_Cntx.psHwReference [all...] |
/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/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;
|
/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;
|
/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/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/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);
|
/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);
|
/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...] |
/frameworks/base/libs/storage/ |
IMountShutdownObserver.cpp | 32 int32_t statusCode = data.readInt32(); 33 onShutDownComplete(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;
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
HttpHelper.java | 125 public HttpException(int statusCode, String reasonPhrase) { 126 super(statusCode + " " + reasonPhrase); 127 mStatusCode = statusCode;
|
/frameworks/base/drm/common/ |
DrmConvertedStatus.cpp | 23 statusCode(_statusCode),
|
DrmInfoStatus.cpp | 23 statusCode(_statusCode),
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleExit.java | 69 int statusCode = in.getInt(); 71 Runtime.getRuntime().halt(statusCode);
|
/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;
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadThread.java | 672 int statusCode = response.getStatusLine().getStatusCode(); 673 if (statusCode == 503 && mInfo.mNumFailed < Constants.MAX_RETRIES) { 676 if (statusCode == 301 || statusCode == 302 || statusCode == 303 || statusCode == 307) { 677 handleRedirect(state, response, statusCode); 681 Log.i(Constants.TAG, "recevd_status = " + statusCode + 685 if (statusCode != expectedStatus) { 686 handleOtherStatus(state, innerState, statusCode); [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_webrequest_api_constants.cc | 14 const char kStatusCodeKey[] = "statusCode";
|
/external/nist-sip/java/javax/sip/ |
Dialog.java | 67 Response createReliableProvisionalResponse(int statusCode)
|