HomeSort by relevance Sort by last modified time
    Searched refs:statusCode (Results 51 - 75 of 116) sorted by null

1 23 4 5

  /external/webkit/Tools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 95 int statusCode = 0;
97 statusCode = [(NSHTTPURLResponse *)self statusCode];
98 return [NSString stringWithFormat:@"<NSURLResponse %@, http status code %i>", [[self URL] _drt_descriptionSuitableForTestResult], statusCode];
WebArchiveDumpSupportMac.mm 65 RetainPtr<CFHTTPMessageRef> httpMessage(AdoptCF, CFHTTPMessageCreateResponse(kCFAllocatorDefault, [httpResponse statusCode], 0, kCFHTTPVersion1_1));
  /frameworks/base/core/java/com/google/android/mms/util/
DrmConvertSession.java 97 convertedStatus.statusCode == DrmConvertedStatus.STATUS_OK &&
131 convertedStatus.statusCode != DrmConvertedStatus.STATUS_OK ||
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DrmConvertSession.java 96 convertedStatus.statusCode == DrmConvertedStatus.STATUS_OK &&
130 convertedStatus.statusCode != DrmConvertedStatus.STATUS_OK ||
  /external/webkit/Tools/DumpRenderTree/win/
ResourceLoadDelegate.cpp 113 int statusCode = 0;
116 httpResponse->statusCode(&statusCode);
118 return L"<NSURLResponse " + url + L", http status code " + wstringFromInt(statusCode) + L">";
  /frameworks/base/core/java/android/net/http/
RequestHandle.java 143 * @param statusCode HTTP status code returned from original request
148 public boolean setupRedirect(String redirectTo, int statusCode,
191 if ((statusCode == 302 || statusCode == 303) && mMethod.equals("POST")) {
199 if (statusCode == 307) {
  /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 +
  /frameworks/base/voip/java/com/android/server/sip/
SipSessionGroup.java     [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
DownloadCache.java 323 AtomicInteger statusCode = new AtomicInteger(0);
338 statusCode);
341 if (is != null && statusCode.get() == HttpStatus.SC_OK) {
362 if (statusCode.get() == HttpStatus.SC_NOT_MODIFIED) {
374 if (statusCode.get() == HttpStatus.SC_NOT_FOUND) {
418 null /*headers*/, null /*statusCode*/);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java     [all...]
SIPDialog.java     [all...]
  /external/apache-http/src/org/apache/http/message/
BasicLineParser.java 419 int statusCode = 0;
421 statusCode =
436 return createStatusLine(ver, statusCode, reasonPhrase);
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 302 *@param statusCode is the status code to set.
305 public void setStatusCode(int statusCode) throws ParseException {
307 // RFC3261 defines statuscode as 3DIGIT, 606 is the highest officially
310 if (statusCode < 100 || statusCode > 699)
314 this.statusLine.setStatusCode(statusCode);
SIPRequest.java 654 * @param statusCode Status code for the response. Reason phrase is generated.
660 public SIPResponse createResponse(int statusCode) {
662 String reasonPhrase = SIPResponse.getReasonPhrase(statusCode);
663 return this.createResponse(statusCode, reasonPhrase);
676 * @param statusCode Status code for the response.
684 public SIPResponse createResponse(int statusCode, String reasonPhrase) {
691 newResponse.setStatusCode(statusCode);
693 throw new IllegalArgumentException("Bad code " + statusCode);
698 newResponse.setReasonPhrase(SIPResponse.getReasonPhrase(statusCode));
706 || (nextHeader instanceof RecordRouteList && mustCopyRR(statusCode))
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
RequestAPITest.java 311 public void verifyRedirect(int statusCode, String testName) throws Exception {
322 testEventHandler.expectStatus(statusCode);
327 mTestWebServer.setRedirect(REDIRECT_TO, statusCode);
343 requestHandle.setupRedirect(REDIRECT_TO, statusCode, new HashMap<String, String>());
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
qosMngr_API.h 77 TI_UINT8 statusCode;
authSm.c 577 TI_STATUS auth_smMsgBuild(auth_t *pCtx, TI_UINT16 seq, TI_UINT16 statusCode, TI_UINT8* pChallange, TI_UINT8 challangeLen)
597 pAuthMsg->status = ENDIAN_HANDLE_WORD(statusCode);
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...]
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceResponseMac.mm 99 m_httpStatusCode = [httpResponse statusCode];
ResourceHandleMac.mm 780 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:%d, Location:<%@>", m_handle, connection, [newRequest description], static_cast<int>([(id)redirectResponse statusCode]), [[(id)redirectResponse allHeaderFields] objectForKey:@"Location"]);
785 if ([redirectResponse isKindOfClass:[NSHTTPURLResponse class]] && [(NSHTTPURLResponse *)redirectResponse statusCode] == 307) {
    [all...]
  /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/inspector/front-end/
HAREntry.js 76 status: this._resource.statusCode,
NetworkManager.js 92 resource.statusCode = response.status;
274 resource.statusCode = response.status;
  /frameworks/base/core/java/android/webkit/
CacheManager.java 380 static CacheResult createCacheFile(String url, int statusCode,
  /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;

Completed in 1210 milliseconds

1 23 4 5