Searched refs:sipUri (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneFactory.java33 * @param sipUri the local SIP URI the phone runs on
39 public static SipPhone makePhone(String sipUri, Context context, argument
42 SipProfile profile = new SipProfile.Builder(sipUri).build();
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java1290 public static String obfuscateSipUri(String sipUri) { argument
1293 sipUri = sipUri.trim();
1294 if (sipUri.startsWith("sip:")) {
1300 int len = sipUri.length();
1302 char c = sipUri.charAt(i);
1303 char nextC = (i + 1 < len) ? sipUri.charAt(i + 1) : '\0';
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneFactory.java280 * @param sipUri the local SIP URI the phone runs on
283 public static SipPhone makeSipPhone(String sipUri) { argument
284 return SipPhoneFactory.makePhone(sipUri, sContext, sPhoneNotifier);

Completed in 134 milliseconds