/external/tpm2/generator/ |
D | commands.txt | 21 _NAME responseCode 40 _NAME responseCode 59 _NAME responseCode 78 _NAME responseCode 97 _NAME responseCode 139 _NAME responseCode 164 _NAME responseCode 195 _NAME responseCode 235 _NAME responseCode 266 _NAME responseCode [all …]
|
D | raw_commands_fixed.txt | 1100 but only if the responseCode is TPM_RC_SUCCESS. 1748 command fails (the responseCode is not TPM_RC_SUCCESS), then the tag parameter in the response 1754 TPM_ST_RSP_COMMAND, responseSize to 00 00 00 0A16 and responseCode to TPM_RC_BAD_TAG. 1925 Normal completion for any command. If the responseCode is 2415 responseCode 2807 responseCode 3101 responseCode 3270 responseCode 3412 responseCode 3742 responseCode [all …]
|
D | raw_commands.txt | 1100 but only if the responseCode is TPM_RC_SUCCESS. 1748 command fails (the responseCode is not TPM_RC_SUCCESS), then the tag parameter in the response 1754 TPM_ST_RSP_COMMAND, responseSize to 00 00 00 0A16 and responseCode to TPM_RC_BAD_TAG. 1925 Normal completion for any command. If the responseCode is 2415 responseCode 2807 responseCode 3101 responseCode 3270 responseCode 3412 responseCode 3740 responseCode [all …]
|
D | raw_structures_fixed.txt | 2354 TPM_RC_ indicates that the type is used for a responseCode. The allowed enumeration 5842 If the responseCode from the TPM is not
|
D | raw_structures.txt | 2357 TPM_RC_ indicates that the type is used for a responseCode. The allowed enumeration 5869 If the responseCode from the TPM is not
|
/external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/ |
D | Crawler.java | 96 int responseCode = response.code(); in fetch() local 98 System.out.printf("%03d: %s %s%n", responseCode, url, responseSource); in fetch() 101 if (responseCode != 200 || contentType == null) { in fetch()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
D | ExternalHttp2Example.java | 48 int responseCode = connection.getResponseCode(); in main() local 49 System.out.println(responseCode); in main()
|
D | ExternalSpdyExample.java | 48 int responseCode = connection.getResponseCode(); in main() local 49 System.out.println(responseCode); in main()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/errorReporting/ |
D | GithubFeedbackTask.java | 114 int responseCode = httpURLConnection.getResponseCode(); in sendFeedback() local 115 if (responseCode != 201) { in sendFeedback() 116 throw new RuntimeException("Expected HTTP_CREATED (201), obtained " + responseCode); in sendFeedback()
|
/external/mockwebserver/src/test/java/com/google/mockwebserver/ |
D | CustomDispatcherTest.java | 86 private Thread buildRequestThread(final String path, final AtomicInteger responseCode) { in buildRequestThread() argument 93 … responseCode.set(conn.getResponseCode()); // Force the connection to hit the "server". in buildRequestThread()
|
/external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/ |
D | CustomDispatcherTest.java | 86 private Thread buildRequestThread(final String path, final AtomicInteger responseCode) { in buildRequestThread() argument 93 responseCode.set(conn.getResponseCode()); // Force the connection to hit the "server". in buildRequestThread()
|
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/ |
D | AsyncHttpURLConnection.java | 97 int responseCode = connection.getResponseCode(); in sendHttpMessage() local 98 if (responseCode != 200) { in sendHttpMessage()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | HttpEngine.java | 666 int responseCode = response.code(); in hasBody() local 667 if ((responseCode < HTTP_CONTINUE || responseCode >= 200) in hasBody() 668 && responseCode != HTTP_NO_CONTENT in hasBody() 669 && responseCode != HTTP_NOT_MODIFIED) { in hasBody() 1057 int responseCode = userResponse.code(); in followUpRequest() local 1059 switch (responseCode) { in followUpRequest()
|
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
D | RoomParametersFetcher.java | 178 int responseCode = connection.getResponseCode(); in requestTurnServers() local 179 if (responseCode != 200) { in requestTurnServers()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | CacheTest.java | 156 private void assertCached(boolean shouldPut, int responseCode) throws Exception { in assertCached() argument 161 .setResponseCode(responseCode) in assertCached() 164 if (responseCode == HttpURLConnection.HTTP_PROXY_AUTH) { in assertCached() 166 } else if (responseCode == HttpURLConnection.HTTP_UNAUTHORIZED) { in assertCached() 168 } else if (responseCode == HttpURLConnection.HTTP_NO_CONTENT in assertCached() 169 || responseCode == HttpURLConnection.HTTP_RESET) { in assertCached() 179 assertEquals(responseCode, response.code()); in assertCached() 186 assertNotNull(Integer.toString(responseCode), cached); in assertCached() 189 assertNull(Integer.toString(responseCode), cached); in assertCached() 433 int responseCode, String headerName, String headerValue) throws Exception { in temporaryRedirectCachedWithCachingHeader() argument [all …]
|
D | URLConnectionTest.java | 1511 int responseCode = proxy ? 407 : 401; 1514 MockResponse pleaseAuthenticate = new MockResponse().setResponseCode(responseCode) 1525 assertEquals(responseCode, connection.getResponseCode());
|
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/ |
D | ResponseCacheTest.java | 182 private void assertCached(boolean shouldPut, int responseCode) throws Exception { in assertCached() argument 187 .setResponseCode(responseCode) in assertCached() 190 if (responseCode == HttpURLConnection.HTTP_PROXY_AUTH) { in assertCached() 192 } else if (responseCode == HttpURLConnection.HTTP_UNAUTHORIZED) { in assertCached() 200 assertEquals(responseCode, connection.getResponseCode()); in assertCached() 207 assertNotNull(Integer.toString(responseCode), cached); in assertCached() 209 assertNull(Integer.toString(responseCode), cached); in assertCached() 424 int responseCode, String headerName, String headerValue) throws Exception { in temporaryRedirectCachedWithCachingHeader() argument 426 .setResponseCode(responseCode) in temporaryRedirectCachedWithCachingHeader() 442 private void temporaryRedirectNotCachedWithoutCachingHeader(int responseCode) throws Exception { in temporaryRedirectNotCachedWithoutCachingHeader() argument [all …]
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-block-line.m | 51 - (void)sendResponseCode:(TResponseCode)responseCode dataFollows:(BOOL)flag
|
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/ |
D | UrlConnectionCacheTest.java | 165 private void assertCached(boolean shouldPut, int responseCode) throws Exception { in assertCached() argument 170 .setResponseCode(responseCode) in assertCached() 173 if (responseCode == HttpURLConnection.HTTP_PROXY_AUTH) { in assertCached() 175 } else if (responseCode == HttpURLConnection.HTTP_UNAUTHORIZED) { in assertCached() 183 assertEquals(responseCode, conn.getResponseCode()); in assertCached() 190 assertNotNull(Integer.toString(responseCode), cached); in assertCached() 193 assertNull(Integer.toString(responseCode), cached); in assertCached()
|
/external/tpm2/ |
D | part3.txt | 694 but only if the responseCode is TPM_RC_SUCCESS. 1115 command fails (the responseCode is not TPM_RC_SUCCESS), then the tag parameter in the response 1121 TPM_ST_RSP_COMMAND, responseSize to 00 00 00 0A16 and responseCode to TPM_RC_BAD_TAG. 1238 Normal completion for any command. If the responseCode is 1545 TPM_RC responseCode 1797 TPM_RC responseCode 1991 TPM_RC responseCode 2115 TPM_RC responseCode 2208 TPM_RC responseCode 2395 TPM_RC responseCode [all …]
|
D | SessionProcess.c | 1463 TPM_RC responseCode = TPM_RC_SUCCESS; in ComputeRpHash() local 1469 CryptUpdateDigestInt(&hashState, sizeof(TPM_RC), &responseCode); in ComputeRpHash()
|
/external/libmicrohttpd/src/microhttpd/ |
D | internal.h | 778 unsigned int responseCode; member
|
D | connection.c | 675 rc = connection->responseCode & (~MHD_ICY_FLAG); 679 (0 != (connection->responseCode & MHD_ICY_FLAG)) 2621 connection->responseCode = 0; 2893 connection->responseCode = status_code;
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/third_party/SocketRocket/ |
D | SRWebSocket.m | 442 NSInteger responseCode = CFHTTPMessageGetResponseStatusCode(_receivedHTTPHeaders); 444 if (responseCode >= 400) { 445 SRFastLog(@"Request failed with response code %d", responseCode); 446 …eceived bad response code from server %ld", (long)responseCode], SRHTTPResponseErrorKey:@(response…
|
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/ |
D | HttpURLConnectionImpl.java | 434 throw new HttpRetryException("Cannot retry streamed HTTP body", responseCode); in getResponse()
|