Home
last modified time | relevance | path

Searched refs:responseCode (Results 1 – 25 of 26) sorted by relevance

12

/external/tpm2/generator/
Dcommands.txt21 _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 …]
Draw_commands_fixed.txt1100 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 …]
Draw_commands.txt1100 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 …]
Draw_structures_fixed.txt2354 TPM_RC_ indicates that the type is used for a responseCode. The allowed enumeration
5842 If the responseCode from the TPM is not
Draw_structures.txt2357 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/
DCrawler.java96 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/
DExternalHttp2Example.java48 int responseCode = connection.getResponseCode(); in main() local
49 System.out.println(responseCode); in main()
DExternalSpdyExample.java48 int responseCode = connection.getResponseCode(); in main() local
49 System.out.println(responseCode); in main()
/external/smali/smalidea/src/main/java/org/jf/smalidea/errorReporting/
DGithubFeedbackTask.java114 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/
DCustomDispatcherTest.java86 private Thread buildRequestThread(final String path, final AtomicInteger responseCode) { in buildRequestThread() argument
93responseCode.set(conn.getResponseCode()); // Force the connection to hit the "server". in buildRequestThread()
/external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
DCustomDispatcherTest.java86 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/
DAsyncHttpURLConnection.java97 int responseCode = connection.getResponseCode(); in sendHttpMessage() local
98 if (responseCode != 200) { in sendHttpMessage()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DHttpEngine.java666 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/
DRoomParametersFetcher.java178 int responseCode = connection.getResponseCode(); in requestTurnServers() local
179 if (responseCode != 200) { in requestTurnServers()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DCacheTest.java156 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 …]
DURLConnectionTest.java1511 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/
DResponseCacheTest.java182 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/
Ddebug-info-block-line.m51 - (void)sendResponseCode:(TResponseCode)responseCode dataFollows:(BOOL)flag
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/
DUrlConnectionCacheTest.java165 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/
Dpart3.txt694 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 …]
DSessionProcess.c1463 TPM_RC responseCode = TPM_RC_SUCCESS; in ComputeRpHash() local
1469 CryptUpdateDigestInt(&hashState, sizeof(TPM_RC), &responseCode); in ComputeRpHash()
/external/libmicrohttpd/src/microhttpd/
Dinternal.h778 unsigned int responseCode; member
Dconnection.c675 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/
DSRWebSocket.m442 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/
DHttpURLConnectionImpl.java434 throw new HttpRetryException("Cannot retry streamed HTTP body", responseCode); in getResponse()

12