Home
last modified time | relevance | path

Searched refs:TYPE_SERVICE (Results 1 – 7 of 7) sorted by relevance

/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DHandleMap.java32 public static final int TYPE_SERVICE = 1; field in HandleMap
50 this.type = TYPE_SERVICE; in Entry()
60 this.type = TYPE_SERVICE; in Entry()
117 if (entry.type != TYPE_SERVICE || entry.serverIf != serverIf in setStarted()
139 if (entry.type == TYPE_SERVICE && entry.handle == handle && entry.uuid.equals(uuid)) { in checkServiceExists()
191 case TYPE_SERVICE: in dump()
H A DGattService.java3846 if (entry.type != HandleMap.TYPE_SERVICE || entry.serverIf != serverIf in stopNextService()
3869 if (entry.type != HandleMap.TYPE_SERVICE || entry.serverIf != serverIf) { in deleteServices()
/aosp12/frameworks/base/services/core/java/com/android/server/firewall/
H A DIntentFirewall.java70 private static final int TYPE_SERVICE = 2; field in IntentFirewall
138 return checkIntent(mServiceResolver, resolvedService, TYPE_SERVICE, intent, callerUid, in checkService()
289 " S:" + resolvers[TYPE_SERVICE].filterSet().size() + ")"); in readRulesDir()
294 mServiceResolver = resolvers[TYPE_SERVICE]; in readRulesDir()
335 ruleType = TYPE_SERVICE; in readRules()
/aosp12/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageProperty.java23 import static android.content.pm.PackageManager.TYPE_SERVICE;
88 } else if (componentType == TYPE_SERVICE) { in queryProperty()
H A DPackageManagerService.java94 import static android.content.pm.PackageManager.TYPE_SERVICE;
3762 ps, callingUid, component, TYPE_SERVICE, userId)) { in getServiceInfoBody()
4092 if (isComponentVisibleToInstantApp(component, TYPE_SERVICE)) { in isComponentVisibleToInstantApp()
4125 } else if (type == TYPE_SERVICE) { in isComponentVisibleToInstantApp()
/aosp12/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java404 public static final int TYPE_SERVICE = 3; field in PackageManager
414 TYPE_SERVICE,
425 TYPE_SERVICE,
/aosp12/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java3550 mPM.queryProperty(propertyName, TYPE_SERVICE); in queryServiceProperty()