Searched refs:mTransport (Results 1 - 16 of 16) sorted by relevance

/packages/apps/Email/provider_src/com/android/email/mail/store/
H A DImapConnection.java65 MailTransport mTransport; field in class:ImapConnection
133 if (mTransport != null && mTransport.isOpen()) {
139 if (mTransport == null) {
140 mTransport = mImapStore.cloneTransport();
143 mTransport.open();
204 if (mTransport != null) {
205 mTransport.close();
206 mTransport = null;
241 * Create an {@link ImapResponseParser} from {@code mTransport
[all...]
H A DPop3Store.java79 mTransport = new MailTransport(context, "POP3", recvAuth);
91 mTransport = testTransport;
130 if (mTransport.isOpen()) {
176 while ((response = mTransport.readLine(false)) != null) {
183 mTransport.close();
194 if (mTransport.isOpen()) {
203 mTransport.open();
210 if (mTransport.canTryTlsSecurity()) {
213 mTransport.reopenTls();
232 mTransport
[all...]
H A DImapStore.java115 mTransport = new MailTransport(context, "IMAP", recvAuth);
170 mTransport = testTransport;
532 return mTransport.clone();
H A DImapFolder.java1090 final int socketTimeout = mConnection.mTransport.getSoTimeout();
1097 mConnection.mTransport.setSoTimeout(0);
1102 mConnection.mTransport.getOutputStream();
1111 mConnection.mTransport.setSoTimeout(socketTimeout);
/packages/services/Telephony/src/com/android/phone/common/mail/store/
H A DImapConnection.java49 private MailTransport mTransport; field in class:ImapConnection
94 if (mTransport != null && mTransport.isOpen()) {
100 if (mTransport == null) {
101 mTransport = mImapStore.cloneTransport();
104 mTransport.open();
158 if (mTransport != null) {
160 mTransport.close();
161 mTransport = null;
176 mTransport
[all...]
H A DImapStore.java41 private final MailTransport mTransport; field in class:ImapStore
60 mTransport = new MailTransport(context, this.getImapHelper(),
82 return mTransport.clone();
/packages/apps/Email/src/com/android/email/mail/transport/
H A DSmtpSender.java50 private MailTransport mTransport; field in class:SmtpSender
70 mTransport = new MailTransport(context, "SMTP", sendAuth);
86 mTransport = testTransport;
92 mTransport.open();
99 InetAddress localAddress = mTransport.getLocalAddress();
121 if (mTransport.canTryTlsSecurity()) {
124 mTransport.reopenTls();
208 new EOLConvertingOutputStream(mTransport.getOutputStream()),
225 mTransport.close();
252 mTransport
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DBluetoothPbapSession.java65 private BluetoothPbapObexTransport mTransport; field in class:BluetoothPbapSession
81 mTransport = null;
108 mTransport = (BluetoothPbapObexTransport) msg.obj;
269 if (mTransport != null) {
271 mTransport.close();
275 mTransport = null;
282 mObexSession = new BluetoothPbapObexSession(mTransport);
H A DBluetoothPbapObexSession.java58 private final ObexTransport mTransport; field in class:BluetoothPbapObexSession
68 mTransport = transport;
137 mClientSession = new ClientSession(mTransport);
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DBluetoothPeripheralHandover.java87 final int mTransport; field in class:BluetoothPeripheralHandover
115 mTransport = transport;
138 || (mProvisioning && mTransport != BluetoothDevice.TRANSPORT_LE)) {
194 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
223 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
256 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
285 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
309 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
329 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
361 if (mTransport
[all...]
H A DPeripheralHandoverService.java208 int transport = mBluetoothPeripheralHandover.mTransport;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppObexServerSession.java71 private ObexTransport mTransport; field in class:BluetoothOppObexServerSession
102 mTransport = transport;
117 if (D) Log.d(TAG, "Create ServerSession with transport " + mTransport.toString());
118 mSession = new ServerSession(mTransport, this, null);
147 mTransport.close();
149 Log.e(TAG, "close mTransport error" + e);
180 if (mTransport instanceof BluetoothObexTransport) {
181 destination = ((BluetoothObexTransport)mTransport).getRemoteAddress();
549 if (mTransport instanceof BluetoothObexTransport) {
550 destination = ((BluetoothObexTransport)mTransport)
[all...]
H A DBluetoothOppTransfer.java101 private ObexTransport mTransport; field in class:BluetoothOppTransfer
164 mTransport = (ObexTransport)msg.obj;
222 if (mTransport == null) {
223 Log.v(TAG, "receive MSG_SHARE_INTERRUPTED but mTransport = null");
225 mTransport.close();
228 Log.e(TAG, "failed to close mTransport");
230 if (V) Log.v(TAG, "mTransport closed ");
248 if (mTransport == null) {
249 Log.v(TAG, "receive MSG_SHARE_INTERRUPTED but mTransport = null");
251 mTransport
[all...]
H A DBluetoothOppObexClientSession.java68 private ObexTransport mTransport; field in class:BluetoothOppObexClientSession
83 mTransport = transport;
89 mThread = new ClientThread(mContext, mTransport, numShares);
228 Log.e(TAG, "mTransport.close error");
566 Log.e(TAG, "mTransport.close error");
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMnsObexClient.java52 private ObexTransport mTransport; field in class:BluetoothMnsObexClient
182 if (mTransport != null) {
185 mTransport.close();
186 mTransport = null;
190 Log.e(TAG, "mTransport.close error: " + e.getMessage());
330 mTransport = new BluetoothObexTransport(btSocket);
333 mClientSession = new ClientSession(mTransport);
/packages/apps/Email/provider_src/com/android/email/mail/
H A DStore.java54 protected MailTransport mTransport; field in class:Store

Completed in 3821 milliseconds