/packages/apps/Email/tests/src/com/android/email/mail/store/imap/ |
ImapResponseParserTest.java | 85 r = p.readResponse(); 95 r = p.readResponse(); 101 r = p.readResponse(); 106 r = p.readResponse(); 117 r = p.readResponse(); 123 r = p.readResponse(); 129 r = p.readResponse(); 135 r = p.readResponse(); 140 r = p.readResponse(); 153 r = p.readResponse(); [all...] |
ImapTestUtils.java | 91 return p.readResponse();
|
/frameworks/av/media/mtp/ |
MtpEventPacket.h | 39 int readResponse(struct usb_device *device);
|
MtpEventPacket.cpp | 68 int MtpEventPacket::readResponse(struct usb_device *device) {
|
MtpDevice.cpp | 324 MtpResponseCode ret = readResponse(); 348 MtpResponseCode ret = readResponse(); 367 MtpResponseCode ret = readResponse(); 383 MtpResponseCode ret = readResponse(); 406 MtpResponseCode ret = readResponse(); 424 MtpResponseCode ret = readResponse(); 441 MtpResponseCode ret = readResponse(); 491 MtpResponseCode ret = readResponse(); 528 MtpResponseCode ret = readResponse(); 538 MtpResponseCode ret = readResponse(); [all...] |
MtpDevice.h | 159 MtpResponseCode readResponse();
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
BluetoothPbapRequest.java | 83 readResponse(is); 113 protected void readResponse(InputStream stream) throws IOException { 114 Log.v(TAG, "readResponse");
|
BluetoothPbapRequestPullVcardEntry.java | 70 protected void readResponse(InputStream stream) throws IOException { 71 Log.v(TAG, "readResponse");
|
BluetoothPbapRequestPullPhoneBook.java | 97 protected void readResponse(InputStream stream) throws IOException { 98 Log.v(TAG, "readResponse");
|
BluetoothPbapRequestPullVcardListing.java | 86 protected void readResponse(InputStream stream) throws IOException { 87 Log.v(TAG, "readResponse");
|
/packages/services/Telephony/src/com/android/phone/common/mail/store/ |
ImapConnection.java | 111 ImapResponse response = mParser.readResponse(false); 142 if (!mParser.readResponse(true).is(0, ImapConstants.BYE)) { 145 if (!mParser.readResponse(false).isOk()) { 338 public ImapResponse readResponse() throws IOException, MessagingException { 339 return mParser.readResponse(false); 398 response = mParser.readResponse(false);
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
BluetoothMasRequest.java | 115 readResponse(is); 155 protected void readResponse(InputStream stream) throws IOException {
|
BluetoothMasRequestGetFolderListing.java | 59 protected void readResponse(InputStream stream) {
|
BluetoothMasRequestGetMessage.java | 60 protected void readResponse(InputStream stream) {
|
BluetoothMasRequestGetMessagesListing.java | 118 protected void readResponse(InputStream stream) {
|
/external/xmlrpcpp/src/ |
XmlRpcClient.h | 82 virtual bool readResponse();
|
XmlRpcClient.cpp | 132 if ( ! readResponse()) return 0; 354 XmlRpcClient::readResponse() 359 XmlRpcUtil::error("Error in XmlRpcClient::readResponse: read error (%s).",XmlRpcSocket::getErrorMsg().c_str()); 366 XmlRpcUtil::error("Error in XmlRpcClient::readResponse: EOF while reading response"); 374 XmlRpcUtil::log(3, "XmlRpcClient::readResponse (read %d bytes)", _response.length());
|
/packages/apps/Email/provider_src/com/android/email/mail/store/ |
ImapConnection.java | 148 mParser.readResponse(); 262 ImapResponse readResponse() throws IOException, MessagingException { 263 return mParser.readResponse(); 313 ImapResponse response = readResponse(); 341 response = mParser.readResponse(); 557 response = mParser.readResponse(); 567 response = readResponse();
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
HttpTransport.java | 80 return httpConnection.readResponse();
|
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/ |
HttpURLConnectionImpl.java | 452 private boolean execute(boolean readResponse) throws IOException { 462 if (readResponse) { 463 httpEngine.readResponse();
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Call.java | 268 engine.readResponse();
|
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/ |
ImapResponseParser.java | 140 * @see #readResponse() 160 public ImapResponse readResponse() throws IOException, MessagingException {
|
/packages/services/Telephony/src/com/android/phone/common/mail/store/imap/ |
ImapResponseParser.java | 122 * @see #readResponse() 144 public ImapResponse readResponse(boolean byeExpected) throws IOException, MessagingException {
|
/external/apache-http/android/src/android/net/http/ |
Request.java | 237 void readResponse(AndroidHttpClientConnection httpClientConnection) 316 if (HttpLog.LOGV) HttpLog.v("Request.readResponse() " + count); 329 if (HttpLog.LOGV) HttpLog.v( "readResponse() handling " + e); 352 if (HttpLog.LOGV) HttpLog.v("Request.readResponse(): done " +
|
Connection.java | 279 req.readResponse(mHttpClientConnection);
|