Home | History | Annotate | Download | only in store

Lines Matching refs:mConnection

73     private ImapConnection mConnection;
87 if (mConnection != null) {
88 mConnection.destroyResponses();
101 mConnection.executeSimpleCommand(ImapConstants.NOOP);
105 ioExceptionHandler(mConnection, ioe);
115 mConnection = mStore.getConnection();
129 throw ioExceptionHandler(mConnection, ioe);
135 mConnection = null;
148 return mExists && mConnection != null;
161 mStore.poolConnection(mConnection);
162 mConnection = null;
183 if (mConnection == null) {
186 connection = mConnection;
208 if (mConnection == null) {
229 if (mConnection == null) {
232 connection = mConnection;
249 if (mConnection == null) {
260 List<ImapResponse> responseList = mConnection.executeSimpleCommand(
333 throw ioExceptionHandler(mConnection, ioe);
349 final List<ImapResponse> responses = mConnection.executeSimpleCommand(
362 throw ioExceptionHandler(mConnection, ioe);
397 return getSearchUids(mConnection.executeSimpleCommand(command));
402 throw ioExceptionHandler(mConnection, ioe);
466 return getSearchUids(mConnection.executeComplexCommand(commands, false));
470 throw ioExceptionHandler(mConnection, ioe);
518 if (mConnection != null) {
519 mConnection.logLastDiscourse();
580 mConnection.sendCommand(String.format(Locale.US,
589 response = mConnection.readResponse();
676 throw ioExceptionHandler(mConnection, ioe);
943 mConnection.sendCommand(
950 response = mConnection.readResponse();
953 mConnection.mTransport.getOutputStream());
1002 throw ioExceptionHandler(mConnection, ioe);
1012 handleUntaggedResponses(mConnection.executeSimpleCommand(ImapConstants.EXPUNGE));
1014 throw ioExceptionHandler(mConnection, ioe);
1044 mConnection.executeSimpleCommand(String.format(Locale.US,
1051 throw ioExceptionHandler(mConnection, ioe);
1081 final List<ImapResponse> responses = mConnection.executeSimpleCommand(
1121 if (connection == mConnection) {
1122 mConnection = null; // To prevent close() from returning the connection to the pool.