Home | History | Annotate | Download | only in phone

Lines Matching full:conn

386         log("onNewRingingConnection(): state = " + mCM.getState() + ", conn = { " + c + " }");
2021 * @param conn The phone connection.
2025 private String getLogNumber(Connection conn, CallerInfo callerInfo) {
2028 if (conn.isIncoming()) {
2029 number = conn.getAddress();
2038 if (conn.getCall().getPhone().getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA) {
2040 number = conn.getOrigDialString();
2042 number = conn.getAddress();
2052 int presentation = conn.getNumberPresentation();
2068 * @param conn The phone connection.
2071 private CallerInfo getCallerInfoFromConnection(Connection conn) {
2073 Object o = conn.getUserData();
2087 * @param conn The phone connection.
2091 private int getPresentation(Connection conn, CallerInfo callerInfo) {
2095 presentation = conn.getNumberPresentation();
2099 conn.getNumberPresentation());