Home
last modified time | relevance | path

Searched refs:interfaces (Results 1 – 25 of 107) sorted by relevance

12345

/aosp14/frameworks/base/tools/sdkparcelables/src/com/android/sdkparcelables/
H A DAncestorCollector.kt22 data class Ancestors(val superName: String?, val interfaces: List<String>?)
34 superName: String?, interfaces: Array<out String>?) {
37 val old = _ancestors.put(name, Ancestors(superName, interfaces?.toList()))
42 super.visit(version, access, name, signature, superName, interfaces)
H A DParcelableDetector.kt61 val seq = (cAncestors.interfaces?.asSequence() ?: emptySequence()) +
/aosp14/frameworks/base/core/java/android/hardware/usb/
H A DUsbConfiguration.java151 public void setInterfaces(@NonNull Parcelable[] interfaces) { in setInterfaces() argument
152 mInterfaces = Preconditions.checkArrayElementsNotNull(interfaces, "interfaces"); in setInterfaces()
175 Parcelable[] interfaces = in.readParcelableArray(
178 configuration.setInterfaces(interfaces);
/aosp14/system/core/init/
H A Dinterface_utils.cpp63 Result<void> CheckInterfaceInheritanceHierarchy(const std::set<FQName>& interfaces, in CheckInterfaceInheritanceHierarchy() argument
66 for (const FQName& intf : interfaces) { in CheckInterfaceInheritanceHierarchy()
77 interfaces.begin(), interfaces.end(), in CheckInterfaceInheritanceHierarchy()
H A Dinterface_utils.h37 Result<void> CheckInterfaceInheritanceHierarchy(const std::set<android::FQName>& interfaces,
H A Dservice_list.h72 if (svc->interfaces().count(interface_name) > 0) { in FindInterface()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/docs/
H A Dsysui.md13 defined interfaces to SysUI.
26 3) SysUI explicitly passes interfaces provided from the `WMComponent` to `SysUIComponent` via
30 interfaces provided by the Shell and the rest of SystemUI.
31 5) SysUI can inject the interfaces into its own components
41 As a result, we enforce explicit interfaces between SysUI and Shell components, and the
42 implementations of the interfaces on each side need to post to the right thread before it calls
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/
H A DImtConflictPerfTestGen.py111 interfaces = ", ".join(["I{}".format(j) for j in range(i+1)]) variable
112 print(" static class C{} implements {} {{}}".format(i, interfaces))
/aosp14/frameworks/base/tools/sdkparcelables/tests/com/android/sdkparcelables/
H A DParcelableDetectorTest.kt71 private fun testAncestors(name: String, superName: String?, vararg interfaces: String): Pair<String…
72 return Pair(name, Ancestors(superName, interfaces.toList()))
/aosp14/frameworks/base/services/core/java/com/android/server/health/
H A DOWNERS1 file:platform/hardware/interfaces:/health/aidl/OWNERS
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/health/
H A DOWNERS1 file:platform/hardware/interfaces:/health/aidl/OWNERS
/aosp14/system/core/init/test_utils/
H A Dservice_utils.cpp50 result[service->name()] = service->interfaces(); in GetOnDeviceServiceInterfacesMap()
/aosp14/frameworks/base/
H A DAndroid.bp342 "hardware/interfaces/biometrics/common/aidl",
343 "hardware/interfaces/biometrics/fingerprint/aidl",
344 "hardware/interfaces/graphics/common/aidl",
345 "hardware/interfaces/keymaster/aidl",
346 "system/hardware/interfaces/media/aidl",
631 "hardware/interfaces/biometrics/common/aidl",
632 "hardware/interfaces/biometrics/fingerprint/aidl",
633 "hardware/interfaces/graphics/common/aidl",
634 "hardware/interfaces/keymaster/aidl",
635 "system/hardware/interfaces/media/aidl",
/aosp14/frameworks/base/keystore/java/android/security/keystore2/
H A DAndroidKeyStoreEdECPrivateKey.java25 import java.security.interfaces.EdECKey;
H A DAndroidKeyStoreXDHPrivateKey.java25 import java.security.interfaces.XECPrivateKey;
H A DAndroidKeyStoreECPrivateKey.java26 import java.security.interfaces.ECKey;
H A DAndroidKeyStoreRSAPrivateKey.java27 import java.security.interfaces.RSAKey;
H A DAndroidKeyStoreRSAPublicKey.java26 import java.security.interfaces.RSAPublicKey;
H A DAndroidKeyStoreXDHPublicKey.java25 import java.security.interfaces.XECPublicKey;
H A DAndroidKeyStoreECPublicKey.java27 import java.security.interfaces.ECPublicKey;
H A DAndroidKeyStoreEdECPublicKey.java25 import java.security.interfaces.EdECPublicKey;
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DOWNERS7 per-file BatteryServiceTest.java = file:platform/hardware/interfaces:/health/aidl/OWNERS
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dplugins.md4 …avior of SystemUI at runtime.  This is done by creating a basic set of interfaces that the plugins…
16 All interfaces need to be independent and not reference classes from SysUI.  They should be placed …
19 The most important part of interfaces is the version included in them.  Every time the interface ch…
178 …rimental directory.  However if you recently changed one of the plugin interfaces, you might want …
188 …s are compiled against a set of relatively stable (and version tagged) interfaces, that the implem…
220 …ementations of the interfaces allows them to be more stable.  Some version changes can be avoided …
/aosp14/frameworks/base/core/java/android/net/vcn/persistablebundleutils/
H A DCertUtils.java26 import java.security.interfaces.RSAPrivateKey;
/aosp14/frameworks/base/native/webview/loader/
H A DAndroid.bp16 // This package provides the system interfaces required to load WebView.

12345