Home | History | Annotate | Download | only in store

Lines Matching refs:mConnection

72     private ImapConnection mConnection;
86 if (mConnection != null) {
87 mConnection.destroyResponses();
100 mConnection.executeSimpleCommand(ImapConstants.NOOP);
104 ioExceptionHandler(mConnection, ioe);
114 mConnection = mStore.getConnection();
128 throw ioExceptionHandler(mConnection, ioe);
134 mConnection = null;
147 return mExists && mConnection != null;
160 mStore.poolConnection(mConnection);
161 mConnection = null;
182 if (mConnection == null) {
185 connection = mConnection;
207 if (mConnection == null) {
228 if (mConnection == null) {
231 connection = mConnection;
247 if (mConnection == null) {
258 List<ImapResponse> responseList = mConnection.executeSimpleCommand(
330 throw ioExceptionHandler(mConnection, ioe);
346 List<ImapResponse> responses = mConnection.executeSimpleCommand(String.format(
358 throw ioExceptionHandler(mConnection, ioe);
393 return getSearchUids(mConnection.executeSimpleCommand(command));
398 throw ioExceptionHandler(mConnection, ioe);
462 return getSearchUids(mConnection.executeComplexCommand(commands, false));
466 throw ioExceptionHandler(mConnection, ioe);
514 if (mConnection != null) {
515 mConnection.logLastDiscourse();
576 mConnection.sendCommand(String.format(
585 response = mConnection.readResponse();
672 throw ioExceptionHandler(mConnection, ioe);
939 mConnection.sendCommand(
946 response = mConnection.readResponse();
949 mConnection.mTransport.getOutputStream());
997 throw ioExceptionHandler(mConnection, ioe);
1007 handleUntaggedResponses(mConnection.executeSimpleCommand(ImapConstants.EXPUNGE));
1009 throw ioExceptionHandler(mConnection, ioe);
1039 mConnection.executeSimpleCommand(String.format(
1046 throw ioExceptionHandler(mConnection, ioe);
1076 List<ImapResponse> responses = mConnection.executeSimpleCommand(
1116 if (connection == mConnection) {
1117 mConnection = null; // To prevent close() from returning the connection to the pool.