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

/frameworks/opt/net/voip/src/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.java235 * @param localProfileUri the URI of the profile
239 public void setRegistrationListener(String localProfileUri, argument
243 localProfileUri, createRelay(listener, localProfileUri));
253 * @param localProfileUri the URI of the profile to close
256 public void close(String localProfileUri) throws SipException { argument
258 mSipService.close(localProfileUri);
268 * @param localProfileUri the URI of the profile in question
272 public boolean isOpened(String localProfileUri) throws SipException { argument
274 return mSipService.isOpened(localProfileUri);
293 isRegistered(String localProfileUri) argument
351 makeAudioCall(String localProfileUri, String peerProfileUri, SipAudioCall.Listener listener, int timeout) argument
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java191 public synchronized void close(String localProfileUri) { argument
194 SipSessionGroupExt group = mSipGroups.get(localProfileUri);
201 group = mSipGroups.remove(localProfileUri);
209 public synchronized boolean isOpened(String localProfileUri) { argument
212 SipSessionGroupExt group = mSipGroups.get(localProfileUri);
223 public synchronized boolean isRegistered(String localProfileUri) { argument
226 SipSessionGroupExt group = mSipGroups.get(localProfileUri);
237 public synchronized void setRegistrationListener(String localProfileUri, argument
241 SipSessionGroupExt group = mSipGroups.get(localProfileUri);

Completed in 378 milliseconds