OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getResponseCode
(Results
1 - 25
of
120
) sorted by null
1
2
3
4
5
/frameworks/av/media/mtp/
MtpResponsePacket.h
41
inline MtpResponseCode
getResponseCode
() const { return getContainerCode(); }
/frameworks/base/obex/javax/obex/
Operation.java
108
* <code>
getResponseCode
()</code> will do an implicit close on the
113
* will be set.) A call to <code>
getResponseCode
()</code> will cause an implicit
160
int
getResponseCode
() throws IOException;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/network/
BlockingHttpClientTests.java
57
when(mMockHttpConnection.
getResponseCode
()).thenReturn(HttpURLConnection.HTTP_BAD_GATEWAY);
71
when(mMockHttpConnection.
getResponseCode
()).thenReturn(
87
when(mMockHttpConnection.
getResponseCode
()).thenReturn(HttpURLConnection.HTTP_FORBIDDEN);
105
when(mMockHttpConnection.
getResponseCode
()).thenReturn(HttpURLConnection.HTTP_OK);
121
when(mMockHttpConnection.
getResponseCode
()).thenReturn(HttpURLConnection.HTTP_OK);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestSetPath.java
66
mResponseCode = hs.
getResponseCode
();
BluetoothMasRequest.java
120
mResponseCode = op.
getResponseCode
();
143
mResponseCode = op.
getResponseCode
();
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapRequestSetPath.java
68
mResponseCode = hs.
getResponseCode
();
BluetoothPbapRequest.java
88
mResponseCode = mOp.
getResponseCode
();
/packages/apps/TV/src/com/android/tv/util/
NetworkUtils.java
52
if (connection.
getResponseCode
() == HttpURLConnection.HTTP_NO_CONTENT) {
/cts/tests/tests/os/src/android/os/cts/
StrictModeTest.java
67
((HttpURLConnection) new URL("http://example.com/").openConnection()).
getResponseCode
();
90
((HttpURLConnection) new URL("https://example.com/").openConnection()).
getResponseCode
();
/external/mockwebserver/src/test/java/com/google/mockwebserver/
CustomDispatcherTest.java
51
conn.
getResponseCode
(); // Force the connection to hit the "server".
93
responseCode.set(conn.
getResponseCode
()); // Force the connection to hit the "server".
/external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
CustomDispatcherTest.java
51
conn.
getResponseCode
(); // Force the connection to hit the "server".
93
responseCode.set(conn.
getResponseCode
()); // Force the connection to hit the "server".
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverHttp2Test.java
45
assertEquals(200, connection.
getResponseCode
());
69
assertEquals(200, connection.
getResponseCode
());
ExternalHttp2Example.java
48
int responseCode = connection.
getResponseCode
();
ExternalSpdyExample.java
48
int responseCode = connection.
getResponseCode
();
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
NetworkUriImageRequest.java
62
if (connection.
getResponseCode
() == HttpURLConnection.HTTP_OK) {
94
if (connection.
getResponseCode
() == HttpURLConnection.HTTP_OK) {
/frameworks/base/core/java/android/service/gatekeeper/
GateKeeperResponse.java
104
public int
getResponseCode
() {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/network/
BlockingHttpClient.java
80
final int responseCode = mConnection.
getResponseCode
();
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
URLFetcher.java
107
if (connection.
getResponseCode
() != HttpURLConnection.HTTP_OK) {
108
Log.e(TAG, "The responses code is not 200 but " + connection.
getResponseCode
());
/libcore/ojluni/src/main/java/java/net/
HttpURLConnection.java
672
public int
getResponseCode
() throws IOException {
753
getResponseCode
();
[
all
...]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
JavaNetHttpHelper.java
151
if (c.
getResponseCode
() != HttpURLConnection.HTTP_OK) {
152
throw new HttpException(c.
getResponseCode
(), c.getResponseMessage());
/frameworks/base/core/java/com/android/internal/widget/
VerifyCredentialResponse.java
115
public int
getResponseCode
() {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ExcludedProxyTest.java
78
conn2.
getResponseCode
();
101
conn4.
getResponseCode
();
180
conn.
getResponseCode
();
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
HttpUrlFetcher.java
68
final int statusCode = urlConnection.
getResponseCode
();
/external/replicaisland/src/com/replica/replicaisland/
EventReporter.java
105
final int response = connection.
getResponseCode
();
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
AsyncHttpURLConnection.java
97
int responseCode = connection.
getResponseCode
();
Completed in 1201 milliseconds
1
2
3
4
5