HomeSort by relevance Sort by last modified time
    Searched defs:statusCode (Results 26 - 50 of 65) sorted by null

12 3

  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ImageDownloader.java 259 final int statusCode = response.getStatusLine().getStatusCode();
260 if (statusCode != HttpStatus.SC_OK) {
261 Log.w("ImageDownloader", "Error " + statusCode +
  /external/webkit/Source/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 480 int statusCode = m_replyWrapper->reply()->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
490 response.setHTTPStatusCode(statusCode);
514 int statusCode = m_replyWrapper->reply()->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
530 if ((statusCode >= 301 && statusCode <= 303) && m_resourceHandle->firstRequest().httpMethod() == "POST")
  /external/webkit/Source/WebCore/websockets/
WebSocketHandshake.cpp 317 int statusCode;
319 int lineLength = readStatusLine(header, len, statusCode, statusText);
322 if (statusCode == -1) {
326 LOG(Network, "response code: %d", statusCode);
327 m_response.setStatusCode(statusCode);
329 if (statusCode != 101) {
331 m_context->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, makeString("Unexpected response code: ", String::number(statusCode)), 0, clientOrigin(), 0);
420 // statusCode and statusText will be set to -1 and a null string, respectively.
421 int WebSocketHandshake::readStatusLine(const char* header, size_t headerLength, int& statusCode, String& statusText)
427 statusCode = -1
    [all...]
  /frameworks/base/core/java/android/net/http/
HttpsConnection.java 202 int statusCode = 0;
228 statusCode = statusLine.getStatusCode();
229 } while (statusCode < HttpStatus.SC_OK);
256 if (statusCode == HttpStatus.SC_OK) {
278 statusCode,
AndroidHttpClientConnection.java 317 int statusCode = statusline.getStatusCode();
374 if (statusCode >= 200) {
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) {
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
trafficAdmControl.c 673 TI_UINT8 statusCode;
690 statusCode = *pData;
693 tspecInfo.statusCode = statusCode;
695 TRACE2(pTrafficAdmCtrl->hReport, REPORT_SEVERITY_INFORMATION, "dialogToken = %d , statusCode = %d \n",dialogToken, statusCode);
726 if(statusCode != ADDTS_STATUS_CODE_SUCCESS)
730 TRACE1(pTrafficAdmCtrl->hReport, REPORT_SEVERITY_INFORMATION, "***** admCtrlQos_recv: admission reject [ statusCode = %d ]\n",statusCode);
743 TRACE1(pTrafficAdmCtrl->hReport, REPORT_SEVERITY_INFORMATION, "***** admCtrlQos_recv: admission accept [ statusCode = %d ]\n",statusCode)
    [all...]
qosMngr.c     [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
UrlOpener.java 403 int statusCode = response.getStatusLine().getStatusCode();
406 System.out.printf(" Status: %d\n", statusCode); //$NON-NLS-1$
411 if (statusCode == HttpStatus.SC_UNAUTHORIZED) {
416 if (statusCode == HttpStatus.SC_PROXY_AUTHENTICATION_REQUIRED) {
421 if (statusCode == HttpStatus.SC_OK || statusCode == HttpStatus.SC_NOT_MODIFIED) {
509 } else if (statusCode == HttpStatus.SC_NOT_MODIFIED) {
  /frameworks/av/drm/common/
IDrmManagerService.cpp 276 const int statusCode = reply.readInt32();
290 drmInfoStatus = new DrmInfoStatus(statusCode, infoType, drmBuffer, mimeType);
527 const int statusCode = reply.readInt32();
540 drmConvertedStatus = new DrmConvertedStatus(statusCode, convertedData, offset);
559 const int statusCode = reply.readInt32();
572 drmConvertedStatus = new DrmConvertedStatus(statusCode, convertedData, offset);
976 reply->writeInt32(drmInfoStatus->statusCode);
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
WifiDisplaySource.cpp 631 int32_t statusCode;
632 if (!msg->getStatusCode(&statusCode)) {
636 if (statusCode != 200) {
675 int32_t statusCode;
676 if (!msg->getStatusCode(&statusCode)) {
680 if (statusCode != 200) {
786 int32_t statusCode;
787 if (!msg->getStatusCode(&statusCode)) {
791 if (statusCode != 200) {
807 int32_t statusCode;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/storage/
AsecTests.java 666 int statusCode;
678 public void onShutDownComplete(int statusCode) throws RemoteException {
679 this.statusCode = statusCode;
  /frameworks/base/drm/jni/
android_drm_DrmManagerClient.cpp 471 int statusCode = pDrmInfoStatus->statusCode;
495 drmInfoStatus = env->NewObject(localRef, constructorId, statusCode, infoType,
645 int statusCode = pDrmConvertedStatus->statusCode;
660 statusCode, dataArray, pDrmConvertedStatus->offset);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPClientTransaction.java 608 int statusCode = transactionResponse.getStatusCode();
610 if (statusCode / 100 == 1) {
621 } else if (200 <= statusCode && statusCode <= 699) {
636 if (statusCode / 100 == 1) {
642 } else if (200 <= statusCode && statusCode <= 699) {
    [all...]
SIPServerTransaction.java     [all...]
SIPDialog.java     [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 685 int statusCode = response.getStatusLine().getStatusCode();
686 if (statusCode == 503 && mInfo.mNumFailed < Constants.MAX_RETRIES) {
689 if (statusCode == 301 || statusCode == 302 || statusCode == 303 || statusCode == 307) {
690 handleRedirect(state, response, statusCode);
694 Log.i(Constants.TAG, "recevd_status = " + statusCode +
698 if (statusCode != expectedStatus) {
699 handleOtherStatus(state, innerState, statusCode);
    [all...]
  /tools/motodev/src/plugins/translation/src/com/motorola/studio/android/localization/translators/
GoogleTranslator.java 743 int statusCode;
746 statusCode = client.executeMethod(method);
755 checkStatusCode(statusCode, result);
774 private static void checkStatusCode(int statusCode, String response) throws HttpException
776 switch (statusCode)
798 statusCode, getErrorMessage(response)
    [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java 847 int statusCode = response.getStatusLine().getStatusCode();
848 if (statusCode != expectedStatusCode) {
849 if ((statusCode == HttpStatus.SC_OK)
856 + statusCode + " expected "
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
FrameLoaderClientImpl.cpp 861 int statusCode = response.httpStatusCode();
862 if (statusCode == 204 || statusCode == 205) {
    [all...]
  /frameworks/base/voip/java/com/android/server/sip/
SipSessionGroup.java     [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasSyncService.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
javax.servlet.jsp_2.0.0.v200806031607.jar 
org.eclipse.equinox.p2.operations_2.0.0.v20100510.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 

Completed in 998 milliseconds

12 3