Searched defs:connection (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Phone/src/com/android/phone/
H A DContactsAsyncHelper.java135 * Used to see if the requested call / connection has a
146 public boolean isDifferentImageRequest(Connection connection) { argument
147 // if the connection does not exist, see if the
149 if (connection == null) {
150 if (DBG) Log.d(LOG_TAG, "isDifferentImageRequest: connection is null");
153 Object o = connection.getUserData();
H A DManageConferenceUtils.java65 Connection connection = (Connection) cookie;
66 int presentation = connection.getNumberPresentation();
188 Connection connection = (Connection) connections.get(i);
189 updateManageConferenceRow(i, connection, canSeparate);
202 * @param connection the Connection corresponding to this caller.
209 final Connection connection,
211 if (DBG) log("updateManageConferenceRow(" + i + ")... connection = " + connection);
213 if (connection != null) {
234 endConferenceConnection(i, connection);
208 updateManageConferenceRow(final int i, final Connection connection, boolean canSeparate) argument
322 endConferenceConnection(int i, Connection connection) argument
338 separateConferenceConnection(int i, Connection connection) argument
[all...]
H A DBluetoothPhoneService.java130 // avoid situation such as no cell or wifi connection but still
186 Connection connection = null;
188 connection = (Connection) ((AsyncResult) msg.obj).result;
190 handlePreciseCallStateChange(connection);
236 private void handlePreciseCallStateChange(Connection connection) { argument
263 mRingNumber = getCallNumber(connection, ringingCall);
413 private CallNumber getCallNumber(Connection connection, Call call) { argument
417 if (connection == null) {
418 connection = call.getEarliestConnection();
419 if (connection
541 sendClccResponseGsm(int index, Connection connection) argument
618 sendClccResponseCdma(int index, Connection connection) argument
[all...]
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapStore.java387 ImapConnection connection = getConnection();
390 // Establish a connection to the IMAP server; if necessary
392 connection.executeSimpleCommand(ImapConstants.NOOP);
397 List<ImapResponse> responses = connection.executeSimpleCommand(imapCommand);
428 connection.close();
431 // We do NOT want this connection pooled, or we will continue to send NOOP and SELECT
433 connection.destroyResponses();
434 connection = null;
437 if (connection != null) {
438 poolConnection(connection);
530 poolConnection(ImapConnection connection) argument
[all...]
H A DImapFolder.java97 // Make sure the connection is valid.
109 // Return the connection to the pool, if exists.
133 // Don't cache this connection, so we're forced to try connecting/login again
177 * so we must get the connection ourselves if it's not there. We are specifically
180 ImapConnection connection = null;
183 connection = mStore.getConnection();
185 connection = mConnection;
189 connection.executeSimpleCommand(String.format(
203 throw ioExceptionHandler(connection, ioe);
206 connection
1111 ioExceptionHandler(ImapConnection connection, IOException ioe) argument
[all...]
/packages/apps/Nfc/nci/jni/
H A DPeerToPeer.cpp116 ** Description: Find a PeerToPeer object by connection handle.
143 ** Description: Find a PeerToPeer object by connection handle.
194 ** Description: Let a server start listening for peer's connection request.
497 ** Description: Create a P2pClient object for a new out-bound connection.
559 ** Description: Free resources related to a connection.
571 // If the connection is a for a client, delete the client itself
585 // If the connection is for a server, just delete the connection
604 ** Description: Estabish a connection-oriented connection t
1631 sp<NfaConn> connection = allocateConnection(connJniHandle); local
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
H A DResearchLogger.java959 final RichInputConnection connection) {
961 if (connection != null) {
962 Range range = connection.getWordRangeAtCursor(WHITESPACE_SEPARATORS, 1);
954 latinIME_onUpdateSelection(final int lastSelectionStart, final int lastSelectionEnd, final int oldSelStart, final int oldSelEnd, final int newSelStart, final int newSelEnd, final int composingSpanStart, final int composingSpanEnd, final boolean expectingUpdateSelection, final boolean expectingUpdateSelectionFromLogger, final RichInputConnection connection) argument

Completed in 1476 milliseconds