Home | History | Annotate | Download | only in phone

Lines Matching defs:number

58         final String number = c.getAddress();
68 ", number set to: " + PhoneUtils.toLogSafePhoneNumber(number));
79 && phone.isOtaSpNumber(number);
110 public void logCall(CallerInfo ci, String number, int presentation, int callType, long start,
136 * Retrieve the phone number from the caller info or the connection.
138 * For incoming call the number is in the Connection object. For
142 * If CallerInfo is missing the phone number, get it from the connection.
143 * Apply the Call Name Presentation (CNAP) transform in the connection on the number.
147 * @return the phone number.
150 String number = null;
153 number = conn.getAddress();
157 // number. Instead it contains an I18N'd string such as
158 // "Emergency Number" or "Voice Mail" so we get the number
164 number = conn.getOrigDialString();
166 number = conn.getAddress();
169 number = callerInfo.phoneNumber;
173 if (null == number) {
180 number, presentation);
182 if (!PhoneNumberUtils.isUriNumber(number)) {
183 number = PhoneNumberUtils.stripSeparators(number);
185 if (VDBG) log("getLogNumber: " + number);
186 return number;