OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sipProfileName
(Results
1 - 2
of
2
) sorted by null
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipAccountRegistry.java
146
* @param
sipProfileName
The name of the {@link SipProfile} to start, or {@code null} for all.
149
void startSipService(Context context, String
sipProfileName
, boolean enableProfile) {
150
startSipProfilesAsync(context,
sipProfileName
, enableProfile);
158
* @param
sipProfileName
Name of the SIP profile.
160
void removeSipProfile(String
sipProfileName
) {
161
AccountEntry accountEntry = getAccountEntry(
sipProfileName
);
176
* @param
sipProfileName
Name of the SIP profile.
178
void stopSipService(Context context, String
sipProfileName
) {
180
AccountEntry accountEntry = getAccountEntry(
sipProfileName
);
187
PhoneAccountHandle handle = SipUtil.createAccountHandle(context,
sipProfileName
);
[
all
...]
SipUtil.java
61
Context context, String
sipProfileName
) {
64
intent.putExtra(EXTRA_PHONE_ACCOUNT, SipUtil.createAccountHandle(context,
sipProfileName
));
80
static PhoneAccountHandle createAccountHandle(Context context, String
sipProfileName
) {
82
new ComponentName(context, SipConnectionService.class),
sipProfileName
);
96
String
sipProfileName
= phoneAccountHandle.getId();
97
if (TextUtils.isEmpty(
sipProfileName
)) {
100
return
sipProfileName
;
Completed in 183 milliseconds