Searched refs:localProfileUri (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/voip/java/android/net/sip/
H A DSipRegistrationListener.java26 * @param localProfileUri the URI string of the SIP profile to register with
28 void onRegistering(String localProfileUri); argument
33 * @param localProfileUri the URI string of the SIP profile to register with
36 void onRegistrationDone(String localProfileUri, long expiryTime); argument
41 * @param localProfileUri the URI string of the SIP profile to register with
46 void onRegistrationFailed(String localProfileUri, int errorCode, argument
H A DISipService.aidl32 void close(in String localProfileUri);
33 boolean isOpened(String localProfileUri);
34 boolean isRegistered(String localProfileUri);
35 void setRegistrationListener(String localProfileUri,
H A DSipManager.java236 * @param localProfileUri the URI of the profile
240 public void setRegistrationListener(String localProfileUri, argument
244 localProfileUri, createRelay(listener, localProfileUri));
254 * @param localProfileUri the URI of the profile to close
257 public void close(String localProfileUri) throws SipException { argument
259 mSipService.close(localProfileUri);
269 * @param localProfileUri the URI of the profile in question
273 public boolean isOpened(String localProfileUri) throws SipException { argument
275 return mSipService.isOpened(localProfileUri);
294 isRegistered(String localProfileUri) argument
352 makeAudioCall(String localProfileUri, String peerProfileUri, SipAudioCall.Listener listener, int timeout) argument
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java195 public synchronized void close(String localProfileUri) { argument
198 SipSessionGroupExt group = mSipGroups.get(localProfileUri);
205 group = mSipGroups.remove(localProfileUri);
212 public synchronized boolean isOpened(String localProfileUri) { argument
215 SipSessionGroupExt group = mSipGroups.get(localProfileUri);
225 public synchronized boolean isRegistered(String localProfileUri) { argument
228 SipSessionGroupExt group = mSipGroups.get(localProfileUri);
238 public synchronized void setRegistrationListener(String localProfileUri, argument
242 SipSessionGroupExt group = mSipGroups.get(localProfileUri);

Completed in 132 milliseconds