HomeSort by relevance Sort by last modified time
    Searched refs:responseCode (Results 26 - 50 of 133) sorted by null

12 3 4 5 6

  /device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2CommandLib/
Tpm2Sequences.c 159 if (SwapBytes32(Res.Header.responseCode) != TPM_RC_SUCCESS) {
160 DEBUG ((EFI_D_ERROR, "HashSequenceStart: Response Code error! 0x%08x\r\n", SwapBytes32(Res.Header.responseCode)));
256 if (SwapBytes32(Res.Header.responseCode) != TPM_RC_SUCCESS) {
257 DEBUG ((EFI_D_ERROR, "SequenceUpdate: Response Code error! 0x%08x\r\n", SwapBytes32(Res.Header.responseCode)));
365 if (SwapBytes32(Res.Header.responseCode) != TPM_RC_SUCCESS) {
366 DEBUG ((EFI_D_ERROR, "EventSequenceComplete: Response Code error! 0x%08x\r\n", SwapBytes32(Res.Header.responseCode)));
486 if (SwapBytes32(Res.Header.responseCode) != TPM_RC_SUCCESS) {
487 DEBUG ((EFI_D_ERROR, "SequenceComplete: Response Code error! 0x%08x\r\n", SwapBytes32(Res.Header.responseCode)));
Tpm2NVStorage.c 186 TPM_RC ResponseCode;
212 ResponseCode = SwapBytes32(RecvBuffer.Header.responseCode);
213 if (ResponseCode != TPM_RC_SUCCESS) {
214 DEBUG ((EFI_D_ERROR, "Tpm2NvReadPublic - responseCode - %x\n", SwapBytes32(RecvBuffer.Header.responseCode)));
216 switch (ResponseCode) {
294 TPM_RC ResponseCode;
359 ResponseCode = SwapBytes32(RecvBuffer.Header.responseCode);
    [all...]
Tpm2Integrity.c 176 if (SwapBytes32(Res.Header.responseCode) != TPM_RC_SUCCESS) {
177 DEBUG ((EFI_D_ERROR, "Tpm2PcrExtend: Response Code error! 0x%08x\r\n", SwapBytes32(Res.Header.responseCode)));
271 if (SwapBytes32(Res.Header.responseCode) != TPM_RC_SUCCESS) {
272 DEBUG ((EFI_D_ERROR, "Tpm2PcrEvent: Response Code error! 0x%08x\r\n", SwapBytes32(Res.Header.responseCode)));
360 if (SwapBytes32(RecvBuffer.Header.responseCode) != TPM_RC_SUCCESS) {
361 DEBUG ((EFI_D_ERROR, "Tpm2PcrRead - responseCode - %x\n", SwapBytes32(RecvBuffer.Header.responseCode)));
516 if (SwapBytes32(Res.Header.responseCode) != TPM_RC_SUCCESS) {
517 DEBUG((EFI_D_ERROR,"Tpm2PcrAllocate: Response Code error! 0x%08x\r\n", SwapBytes32(Res.Header.responseCode)));
Tpm2Session.c 156 if (SwapBytes32(RecvBuffer.Header.responseCode) != TPM_RC_SUCCESS) {
157 DEBUG ((EFI_D_ERROR, "Tpm2StartAuthSession - responseCode - %x\n", SwapBytes32(RecvBuffer.Header.responseCode)));
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
CustomDispatcherTest.java 86 private Thread buildRequestThread(final String path, final AtomicInteger responseCode) {
93 responseCode.set(conn.getResponseCode()); // Force the connection to hit the "server".
  /external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
CustomDispatcherTest.java 86 private Thread buildRequestThread(final String path, final AtomicInteger responseCode) {
93 responseCode.set(conn.getResponseCode()); // Force the connection to hit the "server".
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
AsyncHttpURLConnection.java 97 int responseCode = connection.getResponseCode();
98 if (responseCode != 200) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsObexClient.java 439 int responseCode = -1;
446 return responseCode;
531 responseCode = putOperation.getResponseCode();
532 if (responseCode != -1) {
534 Log.v(TAG, "Put response code " + responseCode);
536 if (responseCode != ResponseCodes.OBEX_HTTP_OK) {
537 Log.i(TAG, "Response error code is " + responseCode);
549 return responseCode;
  /tools/tradefederation/core/src/com/android/tradefed/result/
JsonHttpTestResultReporter.java 130 int responseCode = conn.getResponseCode();
131 if (responseCode < 200 || responseCode >= 300) {
133 CLog.e("Posting failure. code: %d, response: %s", responseCode, response);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
RSSPullService.java 167 int responseCode = localHttpURLConnection.getResponseCode();
169 switch (responseCode) {
  /system/security/keystore/
keystore_cli_v2.cpp 46 using ConfirmationResponseCode = android::hardware::confirmationui::V1_0::ResponseCode;
470 ConfirmationResponseCode responseCode = static_cast<ConfirmationResponseCode>(result);
472 "responseCode = %d\n",
473 responseCode);
547 ConfirmationResponseCode responseCode = static_cast<ConfirmationResponseCode>(aidl_return);
548 if (responseCode != ConfirmationResponseCode::OK) {
549 printf("Presenting confirmation prompt failed with response code %d.\n", responseCode);
562 responseCode = static_cast<ConfirmationResponseCode>(aidl_return);
563 if (responseCode != ConfirmationResponseCode::OK) {
564 printf("Canceling confirmation prompt failed with response code %d.\n", responseCode);
    [all...]
  /frameworks/base/obex/javax/obex/
HeaderSet.java 246 public int responseCode;
257 responseCode = -1;
704 if (responseCode == -1) {
707 return responseCode;
ClientSession.java 158 if (returnHeaderSet.responseCode == ResponseCodes.OBEX_HTTP_OK) {
512 header.responseCode = mInput.read();
584 if ((header.responseCode == ResponseCodes.OBEX_HTTP_UNAUTHORIZED)
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapRequest.java 126 protected void checkResponseCode(int responseCode) throws IOException {
  /developers/build/prebuilts/gradle/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
NetworkFragment.java 237 int responseCode = connection.getResponseCode();
238 if (responseCode != HttpsURLConnection.HTTP_OK) {
239 throw new IOException("HTTP error code: " + responseCode);
  /developers/samples/android/connectivity/network/NetworkConnect/Application/src/main/java/com/example/android/networkconnect/
NetworkFragment.java 237 int responseCode = connection.getResponseCode();
238 if (responseCode != HttpsURLConnection.HTTP_OK) {
239 throw new IOException("HTTP error code: " + responseCode);
  /development/samples/browseable/NetworkConnect/src/com.example.android.networkconnect/
NetworkFragment.java 237 int responseCode = connection.getResponseCode();
238 if (responseCode != HttpsURLConnection.HTTP_OK) {
239 throw new IOException("HTTP error code: " + responseCode);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/errorReporting/
GithubFeedbackTask.java 114 int responseCode = httpURLConnection.getResponseCode();
115 if (responseCode != 201) {
116 throw new RuntimeException("Expected HTTP_CREATED (201), obtained " + responseCode);
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 349 final String responseCode = response.getResponseCodeOrEmpty().getString();
353 if (ImapConstants.UNAVAILABLE.equals(responseCode)) {
357 throw new ImapException(toString, status, alert, responseCode);
571 final String responseCode = response.getResponseCodeOrEmpty().getString();
572 if (ImapConstants.UNAVAILABLE.equals(responseCode)) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetNativeInterface.java 235 * @param responseCode 0 - ERROR, 1 - OK
240 public boolean atResponseCode(BluetoothDevice device, int responseCode, int errorCode) {
241 return atResponseCodeNative(responseCode, errorCode, Utils.getByteAddress(device));
462 private native boolean atResponseCodeNative(int responseCode, int errorCode, byte[] address);
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsHttpClient.java 185 final int responseCode = connection.getResponseCode();
187 Log.d(MmsService.TAG, "HTTP: " + responseCode + " " + responseMessage);
191 if (responseCode / 100 != 2) {
192 throw new MmsHttpException(responseCode, responseMessage);
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
RoomParametersFetcher.java 178 int responseCode = connection.getResponseCode();
179 if (responseCode != 200) {
  /prebuilts/misc/common/robolectric/3.1.1/lib/
wagon-http-lightweight-1.0-beta-6.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/wagon/wagon-http-lightweight/1.0-beta-6/
wagon-http-lightweight-1.0-beta-6.jar 
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 494 int responseCode = response.code();
495 if ((responseCode < HTTP_CONTINUE || responseCode >= 200)
496 && responseCode != HTTP_NO_CONTENT
497 && responseCode != HTTP_NOT_MODIFIED) {
    [all...]

Completed in 616 milliseconds

12 3 4 5 6