Searched refs:mTransport (Results 1 - 15 of 15) 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/apps/Dialer/java/com/android/voicemail/impl/mail/store/
H A DImapConnection.java47 private MailTransport mTransport; field in class:ImapConnection
95 if (mTransport != null && mTransport.isOpen()) {
101 if (mTransport == null) {
102 mTransport = mImapStore.cloneTransport();
105 mTransport.open();
158 if (mTransport != null) {
160 mTransport.close();
161 mTransport = null;
174 mTransport
[all...]
H A DImapStore.java41 private final MailTransport mTransport; field in class:ImapStore
65 mTransport = new MailTransport(context, this.getImapHelper(), network, serverName, port, flags);
86 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/Nfc/src/com/android/nfc/handover/
H A DBluetoothPeripheralHandover.java95 final int mTransport; field in class:BluetoothPeripheralHandover
127 mTransport = transport;
160 || (mProvisioning && mTransport != BluetoothDevice.TRANSPORT_LE)) {
217 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
258 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
291 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
320 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
344 if (mTransport == BluetoothDevice.TRANSPORT_LE) {
364 if (mTransport != BluetoothDevice.TRANSPORT_LE) {
399 if (mTransport !
[all...]
H A DPeripheralHandoverService.java211 int transport = mBluetoothPeripheralHandover.mTransport;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppObexServerSession.java73 private ObexTransport mTransport; field in class:BluetoothOppObexServerSession
107 mTransport = transport;
124 if (D) Log.d(TAG, "Create ServerSession with transport " + mTransport.toString());
125 mSession = new ServerSession(mTransport, this, null);
154 mTransport.close();
156 Log.e(TAG, "close mTransport error" + e);
187 if (mTransport instanceof BluetoothObexTransport) {
188 destination = ((BluetoothObexTransport)mTransport).getRemoteAddress();
556 if (mTransport instanceof BluetoothObexTransport) {
557 destination = ((BluetoothObexTransport)mTransport)
[all...]
H A DBluetoothOppTransfer.java101 private ObexTransport mTransport; field in class:BluetoothOppTransfer
232 mTransport = (ObexTransport)msg.obj;
299 if (mTransport == null) {
300 Log.v(TAG, "receive MSG_SHARE_INTERRUPTED but mTransport = null");
302 mTransport.close();
305 Log.e(TAG, "failed to close mTransport");
307 if (V) Log.v(TAG, "mTransport closed ");
325 if (mTransport == null) {
326 Log.v(TAG, "receive MSG_SHARE_INTERRUPTED but mTransport = null");
328 mTransport
[all...]
H A DBluetoothOppObexClientSession.java69 private ObexTransport mTransport; field in class:BluetoothOppObexClientSession
84 mTransport = transport;
90 mThread = new ClientThread(mContext, mTransport, numShares);
233 Log.e(TAG, "mTransport.close error");
574 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/Bluetooth/src/com/android/bluetooth/mapclient/
H A DMasClient.java58 private BluetoothObexTransport mTransport; field in class:MasClient
92 mTransport = new BluetoothObexTransport(mSocket);
94 mSession = 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 195 milliseconds