HomeSort by relevance Sort by last modified time
    Searched full:serviceclass (Results 1 - 25 of 41) sorted by null

1 2

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
StartedServiceMatcher.java 87 public static Intent createIntent(Class<? extends Service> serviceClass, String extraKey, String extraValue) {
88 Intent intent = createIntent(serviceClass);
93 public static Intent createIntent(Class<? extends Service> serviceClass, String action) {
94 Intent intent = createIntent(serviceClass);
99 public static Intent createIntent(Class<? extends Service> serviceClass) {
100 Package pack = serviceClass.getPackage();
106 return createIntent(packageName, serviceClass);
109 public static Intent createIntent(String packageName, Class<? extends Service> serviceClass) {
111 intent.setClassName(packageName, serviceClass.getName());
112 intent.setClass(getShadowApplication().getApplicationContext(), serviceClass);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallForwardInfo.java 29 public int serviceClass; /* Sum of CommandsInterface.SERVICE_CLASS */
38 + " serviceClass: " + serviceClass
CommandsInterface.java     [all...]
RIL.java     [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsRegistrationListener.aidl 52 * @param serviceClass a service class specified in {@link ImsServiceClass}
57 void registrationServiceCapabilityChanged(int serviceClass, int event);
63 * @param serviceClass a service class specified in {@link ImsServiceClass}
67 void registrationFeatureCapabilityChanged(int serviceClass,
IImsService.aidl 35 int open(int phoneId, int serviceClass, in PendingIntent incomingCallIntent,
  /packages/services/Telephony/res/xml/
callforward_options.xml 25 phone:serviceClass="voice"
41 phone:serviceClass="voice"
58 phone:serviceClass="voice"
75 phone:serviceClass="voice"
  /frameworks/base/services/core/java/com/android/server/
SystemServiceManager.java 54 final Class<SystemService> serviceClass;
56 serviceClass = (Class<SystemService>)Class.forName(className);
65 return startService(serviceClass);
72 * @param serviceClass A Java class that implements the SystemService interface.
77 public <T extends SystemService> T startService(Class<T> serviceClass) {
78 final String name = serviceClass.getName();
82 if (!SystemService.class.isAssignableFrom(serviceClass)) {
88 Constructor<T> constructor = serviceClass.getConstructor(Context.class);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SsData.java 107 public int serviceClass;
151 + " ServiceClass: " + serviceClass
GsmMmiCode.java 301 * and ServiceClass is Voice/None, set IccRecords.setVoiceCallForwardingFlag.
306 isServiceClassVoiceorNone(ssData.serviceClass));
393 private boolean isServiceClassVoiceorNone(int serviceClass) {
394 return (((serviceClass & CommandsInterface.SERVICE_CLASS_VOICE) != 0) ||
395 (serviceClass == CommandsInterface.SERVICE_CLASS_NONE));
816 int serviceClass = siToServiceClass(mSib);
822 reason, serviceClass, dialingNumber,
852 (((serviceClass & CommandsInterface.SERVICE_CLASS_VOICE) != 0) ||
853 (serviceClass == CommandsInterface.SERVICE_CLASS_NONE))) ? 1 : 0;
860 mPhone.mCi.setCallForward(cfAction, reason, serviceClass,
    [all...]
  /packages/services/Telephony/src/com/android/phone/settings/
VoicemailProviderSettings.java 60 fi.serviceClass = CommandsInterface.SERVICE_CLASS_VOICE;
118 || i1.serviceClass != i2.serviceClass
CallForwardInfoUtil.java 108 info.serviceClass = CommandsInterface.SERVICE_CLASS_VOICE;
123 return (info.serviceClass & CommandsInterface.SERVICE_CLASS_VOICE) != 0;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCommandInterface.java 308 public void queryCallWaiting(int serviceClass, Message response) {
312 public void setCallWaiting(boolean enable, int serviceClass,
334 public void setCallForward(int action, int cfReason, int serviceClass,
339 public void queryCallForwardStatus(int cfReason, int serviceClass,
353 int serviceClass, Message response) {
358 int serviceClass, String appId, Message response) {
363 String password, int serviceClass, Message response) {
368 String password, int serviceClass, String appId, Message response) {
ImsPhoneMmiCode.java 681 int serviceClass = siToServiceClass(mSib);
682 if (serviceClass != SERVICE_CLASS_NONE
683 && serviceClass != SERVICE_CLASS_VOICE) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCommandInterface.java 309 public void queryCallWaiting(int serviceClass, Message response) {
313 public void setCallWaiting(boolean enable, int serviceClass,
335 public void setCallForward(int action, int cfReason, int serviceClass,
340 public void queryCallForwardStatus(int cfReason, int serviceClass,
354 int serviceClass, Message response) {
359 int serviceClass, String appId, Message response) {
364 String password, int serviceClass, Message response) {
369 String password, int serviceClass, String appId, Message response) {
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsManager.java 308 * @param serviceClass a service class specified in {@link ImsServiceClass}
322 public int open(int serviceClass, PendingIntent incomingCallPendingIntent,
337 result = mImsService.open(mPhoneId, serviceClass, incomingCallPendingIntent,
338 createRegistrationListenerProxy(serviceClass, listener));
711 private ImsRegistrationListenerProxy createRegistrationListenerProxy(int serviceClass,
714 new ImsRegistrationListenerProxy(serviceClass, listener);
807 public ImsRegistrationListenerProxy(int serviceClass,
809 mServiceClass = serviceClass;
813 public boolean isSameProxy(int serviceClass) {
814 return (mServiceClass == serviceClass);
    [all...]
ImsConnectionStateListener.java 59 public void onFeatureCapabilityChanged(int serviceClass,
  /packages/apps/Email/res/xml/
services.xml 21 The required attributes are as follows (except that EITHER serviceClass or intent is required):
25 serviceClass: a class implementing IEmailService (or null, if the service is remote)
56 email:serviceClass="com.android.email.service.Pop3Service"
74 email:serviceClass="com.android.email.service.ImapService"
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java 413 public void queryCallWaiting(int serviceClass, Message response) {
417 public void setCallWaiting(boolean enable, int serviceClass, Message response) {
421 public void setCallForward(int action, int cfReason, int serviceClass, String number,
426 public void queryCallForwardStatus(int cfReason, int serviceClass, String number,
451 public void queryFacilityLock(String facility, String password, int serviceClass,
456 public void queryFacilityLockForApp(String facility, String password, int serviceClass,
462 int serviceClass, Message response) {
467 int serviceClass, String appId, Message response) {
  /packages/services/Telephony/res/values/
attrs.xml 35 <attr name="serviceClass">
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntdsapi.h 323 NTDSAPI DWORD WINAPI DsMakeSpnW(LPCWSTR ServiceClass,LPCWSTR ServiceName,LPCWSTR InstanceName,USHORT InstancePort,LPCWSTR Referrer,DWORD *pcSpnLength,LPWSTR pszSpn);
324 NTDSAPI DWORD WINAPI DsMakeSpnA(LPCSTR ServiceClass,LPCSTR ServiceName,LPCSTR InstanceName,USHORT InstancePort,LPCSTR Referrer,DWORD *pcSpnLength,LPSTR pszSpn);
325 NTDSAPI DWORD WINAPI DsGetSpnA(DS_SPN_NAME_TYPE ServiceType,LPCSTR ServiceClass,LPCSTR ServiceName,USHORT InstancePort,USHORT cInstanceNames,LPCSTR *pInstanceNames,const USHORT *pInstancePorts,DWORD *pcSpn,LPSTR **prpszSpn);
326 NTDSAPI DWORD WINAPI DsGetSpnW(DS_SPN_NAME_TYPE ServiceType,LPCWSTR ServiceClass,LPCWSTR ServiceName,USHORT InstancePort,USHORT cInstanceNames,LPCWSTR *pInstanceNames,const USHORT *pInstancePorts,DWORD *pcSpn,LPWSTR **prpszSpn);
329 NTDSAPI DWORD WINAPI DsCrackSpnA(LPCSTR pszSpn,LPDWORD pcServiceClass,LPSTR ServiceClass,LPDWORD pcServiceName,LPSTR ServiceName,LPDWORD pcInstanceName,LPSTR InstanceName,USHORT *pInstancePort);
330 NTDSAPI DWORD WINAPI DsCrackSpnW(LPCWSTR pszSpn,DWORD *pcServiceClass,LPWSTR ServiceClass,DWORD *pcServiceName,LPWSTR ServiceName,DWORD *pcInstanceName,LPWSTR InstanceName,USHORT *pInstancePort);
333 NTDSAPI DWORD WINAPI DsClientMakeSpnForTargetServerW(LPCWSTR ServiceClass,LPCWSTR ServiceName,DWORD *pcSpnLength,LPWSTR pszSpn);
334 NTDSAPI DWORD WINAPI DsClientMakeSpnForTargetServerA(LPCSTR ServiceClass,LPCSTR ServiceName,DWORD *pcSpnLength,LPSTR pszSpn);
335 NTDSAPI DWORD WINAPI DsServerRegisterSpnA(DS_SPN_WRITE_OP Operation,LPCSTR ServiceClass,LPCSTR UserObjectDN);
336 NTDSAPI DWORD WINAPI DsServerRegisterSpnW(DS_SPN_WRITE_OP Operation,LPCWSTR ServiceClass,LPCWSTR UserObjectDN)
    [all...]
  /packages/apps/Email/res/values/
attrs.xml 25 <attr name="serviceClass" format="string"/>
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 347 int serviceClass, Message result) {
348 queryFacilityLockForApp(facility, pin, serviceClass, null, result);
352 public void queryFacilityLockForApp(String facility, String pin, int serviceClass,
380 public void setFacilityLock(String facility, boolean lockEnabled, String pin, int serviceClass,
382 setFacilityLockForApp(facility, lockEnabled, pin, serviceClass, null, result);
387 String pin, int serviceClass, String appId,
    [all...]
  /frameworks/base/test-runner/src/android/test/
ServiceTestCase.java 105 * @param serviceClass The type of the service under test.
107 public ServiceTestCase(Class<T> serviceClass) {
108 mServiceClass = serviceClass;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ChildProcessConnectionImpl.java 188 Class<? extends ChildProcessService> serviceClass,
194 mServiceClass = serviceClass;

Completed in 393 milliseconds

1 2