Searched refs:statusCode (Results 26 - 43 of 43) sorted by relevance

12

/frameworks/support/v4/jellybean-mr1/android/support/v4/media/routing/
H A DMediaRouterJellybeanMr1.java152 int statusCode = (Integer)mGetStatusCodeMethod.invoke(route);
153 return statusCode == mStatusConnecting;
/frameworks/support/v7/mediarouter/jellybean-mr1/android/support/v7/media/
H A DMediaRouterJellybeanMr1.java152 int statusCode = (Integer)mGetStatusCodeMethod.invoke(route);
153 return statusCode == mStatusConnecting;
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DDrmConvertSession.java97 convertedStatus.statusCode == DrmConvertedStatus.STATUS_OK &&
131 convertedStatus.statusCode != DrmConvertedStatus.STATUS_OK ||
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java143 * @param statusCode HTTP status code returned from original request
148 public boolean setupRedirect(String redirectTo, int statusCode, argument
191 if ((statusCode == 302 || statusCode == 303) && mMethod.equals("POST")) {
199 if (statusCode == 307) {
H A DAndroidHttpClientConnection.java313 int statusCode = statusline.getStatusCode();
370 if (statusCode >= 200) {
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipSessionGroup.java953 int statusCode = response.getStatusCode();
954 switch (statusCode) {
966 if (statusCode >= 500) {
1056 private String getResponseString(int statusCode) { argument
1058 statusLine.setStatusCode(statusCode);
1059 statusLine.setReasonPhrase(SIPResponse.getReasonPhrase(statusCode));
1154 int statusCode = response.getStatusCode();
1155 switch (statusCode) {
1193 if (statusCode >= 400) {
1197 } else if (statusCode >
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp750 int32_t statusCode; local
751 if (!msg->getStatusCode(&statusCode)) {
755 if (statusCode != 200) {
794 int32_t statusCode; local
795 if (!msg->getStatusCode(&statusCode)) {
799 if (statusCode != 200) {
974 int32_t statusCode; local
975 if (!msg->getStatusCode(&statusCode)) {
979 if (statusCode != 200) {
995 int32_t statusCode; local
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DRequestAPITest.java311 public void verifyRedirect(int statusCode, String testName) throws Exception { argument
322 testEventHandler.expectStatus(statusCode);
327 mTestWebServer.setRedirect(REDIRECT_TO, statusCode);
343 requestHandle.setupRedirect(REDIRECT_TO, statusCode, new HashMap<String, String>());
/frameworks/base/media/java/android/media/
H A DMediaRouter.java482 route.setRealStatusCode(globalRoute.statusCode);
515 if (route.mRealStatusCode != globalRoute.statusCode) {
516 route.setRealStatusCode(globalRoute.statusCode);
1592 boolean setRealStatusCode(int statusCode) { argument
1593 if (mRealStatusCode != statusCode) {
1594 mRealStatusCode = statusCode;
1605 int statusCode = mRealStatusCode;
1607 switch (statusCode) {
1616 statusCode = STATUS_CONNECTING;
1620 if (mResolvedStatusCode == statusCode) {
[all...]
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DAsecTests.java666 int statusCode; field in class:AsecTests.ShutdownObserver
678 public void onShutDownComplete(int statusCode) throws RemoteException { argument
679 this.statusCode = statusCode;
/frameworks/base/drm/jni/
H A Dandroid_drm_DrmManagerClient.cpp473 int statusCode = pDrmInfoStatus->statusCode; local
497 drmInfoStatus = env->NewObject(localRef, constructorId, statusCode, infoType,
648 int statusCode = pDrmConvertedStatus->statusCode; local
663 statusCode, dataArray, pDrmConvertedStatus->offset);
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp266 const int statusCode = reply.readInt32(); local
280 drmInfoStatus = new DrmInfoStatus(statusCode, infoType, drmBuffer, mimeType);
517 const int statusCode = reply.readInt32(); local
530 drmConvertedStatus = new DrmConvertedStatus(statusCode, convertedData, offset);
549 const int statusCode = reply.readInt32(); local
562 drmConvertedStatus = new DrmConvertedStatus(statusCode, convertedData, offset);
955 reply->writeInt32(drmInfoStatus->statusCode);
1216 reply->writeInt32(drmConvertedStatus->statusCode);
1247 reply->writeInt32(drmConvertedStatus->statusCode);
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java1251 return mMutableInfo.statusCode;
1279 final int statusCode = computeStatusCode(descriptor);
1280 if (mMutableInfo.statusCode != statusCode) {
1281 mMutableInfo.statusCode = statusCode;
/frameworks/base/services/core/java/com/android/server/power/
H A DShutdownThread.java351 public void onShutDownComplete(int statusCode) throws RemoteException {
352 Log.w(TAG, "Result code " + statusCode + " from MountService.shutdown");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DModelInterpreter.java386 public void triggerIncomingUssd(String statusCode, String message) {} argument
H A DSimulatedCommands.java1272 * @param statusCode Status code string. See <code>setOnUSSD</code>
1277 public void triggerIncomingUssd(String statusCode, String message) { argument
1279 String[] result = {statusCode, message};
/frameworks/base/drm/java/android/drm/
H A DDrmManagerClient.java147 if (null != status && DrmInfoStatus.STATUS_OK == status.statusCode) {
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsCall.java1600 private void notifyError(int reason, int statusCode, String message) { argument

Completed in 489 milliseconds

12