HomeSort by relevance Sort by last modified time
    Searched refs:mConnection (Results 1 - 25 of 40) sorted by null

1 2

  /packages/apps/IM/src/com/android/im/imps/
ImpsTransaction.java 28 private ImpsConnection mConnection;
40 mConnection = conn;
53 ImpsSession session = mConnection.getSession();
59 mConnection.sendPrimitive(primitive);
CirChannel.java 30 protected ImpsConnection mConnection;
33 mConnection = connection;
DataChannel.java 28 protected ImpsConnection mConnection;
34 mConnection = connection;
SmsCirChannel.java 77 String sessionCookie = mConnection.getSession().getCookie();
84 mConnection.sendPollingRequest();
88 mConnection.shutdownOnError(new ImErrorInfo(ImpsErrorInfo.NETWORK_ERROR,
93 String data = "HELO " + mConnection.getSession().getID();
HttpCirChannel.java 49 ImpsSession session = mConnection.getSession();
86 mConnection.sendPollingRequest();
103 mConnection.sendPollingRequest();
ImpsTransactionManager.java 26 private ImpsConnection mConnection;
38 this.mConnection = connection;
67 tx.setTransactionInfo(nextTransactionId(), mConnection);
88 tx.setTransactionInfo(newId, mConnection);
136 mConnection, primitive);
ImpsChatSessionManager.java 38 private ImpsConnection mConnection;
44 mConnection = connection;
55 message.setFrom(mConnection.getSession().getLoginUserAddress());
151 msg.setTo(mConnection.getLoginUser().getAddress());
179 mConnection.getConfig().needDeliveryReport());
219 ImEntity participant = address.getEntity(mConnection);
221 ses = createChatSession(address.getEntity(mConnection));
ImpsSession.java 51 private ImpsConnection mConnection;
75 mConnection = connection;
87 mConnection = connection;
313 mConnection.getTransactionManager(), completion) {
335 mConnection.getTransactionManager(), completion) {
375 Integer.toString(mConnection.getConfig().getUdpPort()));
404 long defaultPollMin = mConnection.getConfig().getDefaultServerPollMin();
TcpCirChannel.java 146 mConnection.sendPollingRequest();
192 mConnection.sendPollingRequest();
200 mConnection.sendPollingRequest();
251 sendData("HELO " + mConnection.getSession().getID() + "\r\n");
  /frameworks/base/core/java/android/net/http/
ConnectionThread.java 45 Connection mConnection;
111 mConnection = mConnectionManager.getConnection(mContext,
113 mConnection.processRequests(request);
114 if (mConnection.getCanPersist()) {
115 if (!mConnectionManager.recycleConnection(mConnection)) {
116 mConnection.closeConnection();
119 mConnection.closeConnection();
121 mConnection = null;
134 String con = mConnection == null ? "" : mConnection.toString()
    [all...]
IdleCache.java 34 Connection mConnection;
81 entry.mConnection = connection;
105 ret = entry.mConnection;
107 entry.mConnection = null;
122 entry.mConnection.closeConnection();
123 entry.mConnection = null;
136 entry.mConnection.closeConnection();
137 entry.mConnection = null;
Request.java 57 private Connection mConnection;
159 mConnection = connection;
224 mConnection.getHttpContext());
294 buf = mConnection.getBuf();
352 mConnection.setCanPersist(entity, statusLine.getProtocolVersion(),
378 if (mConnection != null) {
379 mConnection.cancel();
512 HttpsConnection connection = (HttpsConnection)(mConnection);
520 * This should not be called before the mConnection is set.
525 mConnection.mContext.getText
    [all...]
RequestHandle.java 51 private Connection mConnection;
91 mConnection = conn;
287 if (mConnection != null) {
288 mConnection.processRequests(mRequest);
446 // mConnection is non-null if and only if the requests are synchronous.
447 if (mConnection != null) {
452 mConnection = newHandle.mConnection;
  /frameworks/base/core/java/android/view/inputmethod/
InputBinding.java 34 final InputConnection mConnection;
61 mConnection = conn;
75 mConnection = conn;
82 mConnection = null;
92 return mConnection;
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityService.java 112 IAccessibilityServiceConnection mConnection;
157 if (mInfo != null && mConnection != null) {
159 mConnection.setServiceInfo(mInfo);
223 mConnection = ((IAccessibilityServiceConnection) message.obj);
  /packages/apps/IM/src/com/android/im/service/
ImConnectionAdapter.java 61 ImConnection mConnection;
82 mConnection = connection;
85 mConnection.addConnectionListener(mConnectionListener);
87 mGroupManager = mConnection.getChatGroupManager();
94 return mConnection;
110 return mConnection.getSupportedPresenceStatus();
114 mConnection.networkTypeChanged();
121 if ((mConnection.getCapability() & ImConnection.CAPABILITY_SESSION_REESTABLISHMENT) != 0) {
126 mConnection.reestablishSessionAsync(cookie);
149 mConnection.loginAsync(new LoginInfo(userName, password))
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
MessengerTest.java 34 private ServiceConnection mConnection = new ServiceConnection() {
97 mConnection, Context.BIND_AUTO_CREATE);
111 getContext().unbindService(mConnection);
BinderThreadPriorityTest.java 38 private ServiceConnection mConnection = new ServiceConnection() {
65 mConnection, Context.BIND_AUTO_CREATE);
93 getContext().unbindService(mConnection);
  /frameworks/base/core/java/android/bluetooth/
BluetoothPbap.java 117 if (!context.bindService(new Intent(IBluetoothPbap.class.getName()), mConnection, 0)) {
137 if (mConnection != null) {
138 mContext.unbindService(mConnection);
139 mConnection = null;
237 private ServiceConnection mConnection = new ServiceConnection() {
BluetoothHeadset.java 160 if (!context.bindService(new Intent(IBluetoothHeadset.class.getName()), mConnection, 0)) {
181 if (mConnection != null) {
182 mContext.unbindService(mConnection);
183 mConnection = null;
409 private ServiceConnection mConnection = new ServiceConnection() {
  /packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java 475 private ImapConnection mConnection;
489 mConnection.executeSimpleCommand("NOOP");
493 ioExceptionHandler(mConnection, ioe);
497 mConnection = getConnection();
509 List<ImapResponse> responses = mConnection.executeSimpleCommand(
541 throw ioExceptionHandler(mConnection, ioe);
546 return mConnection != null;
561 releaseConnection(mConnection);
562 mConnection = null;
581 if (mConnection == null)
    [all...]
  /frameworks/base/core/java/android/speech/
SpeechRecognizer.java 97 private Connection mConnection;
162 mConnection = null;
247 if (mConnection == null) { // first time connection
248 mConnection = new Connection();
267 if (!mContext.bindService(serviceIntent, mConnection, Context.BIND_AUTO_CREATE)) {
269 mConnection = null;
379 if (mConnection != null) {
380 mContext.unbindService(mConnection);
384 mConnection = null;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalServiceActivities.java 96 private ServiceConnection mConnection = new ServiceConnection() {
127 LocalService.class), mConnection, Context.BIND_AUTO_CREATE);
134 unbindService(mConnection);
MessengerServiceActivities.java 65 private ServiceConnection mConnection = new ServiceConnection() {
117 MessengerService.class), mConnection, Context.BIND_AUTO_CREATE);
139 unbindService(mConnection);
  /frameworks/base/media/java/android/media/
MediaScannerConnection.java 183 MediaScannerConnection mConnection;
205 mConnection.disconnect();
209 mConnection.scanFile(mPaths[mNextPath], mimeType);
235 client.mConnection = connection;

Completed in 557 milliseconds

1 2