HomeSort by relevance Sort by last modified time
    Searched refs:VintfObject (Results 1 - 25 of 30) sorted by null

1 2

  /test/vts-testcase/hal/treble/vintf/
SystemVendorTest.h 35 vendor_manifest_ = VintfObject::GetDeviceHalManifest();
39 fwk_manifest_ = VintfObject::GetFrameworkHalManifest();
DeviceManifestTest.cpp 19 #include <vintf/VintfObject.h>
29 vendor_manifest_ = VintfObject::GetDeviceHalManifest();
41 Level shipping_fcm_version = VintfObject::GetDeviceHalManifest()->level();
70 VintfObject::CheckDeprecation(&error))
76 VintfObject::GetDeviceHalManifest(),
SystemVendorTest.cpp 23 #include <vintf/VintfObject.h>
39 *VintfObject::GetFrameworkCompatibilityMatrix(), &error))
43 *VintfObject::GetDeviceCompatibilityMatrix(), &error))
47 EXPECT_TRUE(VintfObject::GetRuntimeInfo()->checkCompatibility(
48 *VintfObject::GetFrameworkCompatibilityMatrix(), &error,
53 VintfObject::CheckCompatibility(
98 VintfObject::ListInstances list_instances = [this](const string &package,
168 VintfObject::CheckDeprecation(list_instances, &error))
174 VintfObject::GetFrameworkHalManifest(),
utils.h 29 #include <vintf/VintfObject.h>
53 using android::vintf::VintfObject;
VtsTrebleVintfTestBase.h 25 #include <vintf/VintfObject.h>
vts_treble_vintf_test_o_mr1.cpp 34 #include <vintf/VintfObject.h>
55 using android::vintf::VintfObject;
87 vendor_manifest_ = VintfObject::GetDeviceHalManifest();
VtsTrebleVintfTestBase.cpp 43 #include <vintf/VintfObject.h>
69 using android::vintf::VintfObject;
  /cts/common/device-side/device-info/src_stub/android/os/
VintfObject.java 3 * frameworks/base/core/java/android/os/VintfObject.java
10 public class VintfObject {
  /frameworks/base/core/java/android/os/
VintfObject.java 26 public class VintfObject {
  /frameworks/base/core/tests/coretests/src/android/os/
VintfObjectTest.java 24 * Sanity check for {@link VintfObject#report VintfObject.report()}.
27 String[] xmls = VintfObject.report();
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
VintfDeviceInfo.java 19 import android.os.VintfObject;
48 store.addResult("sepolicy_version", VintfObject.getSepolicyVersion());
50 String[] hals = VintfObject.getHalNamesAndVersions();
54 Map<String, String[]> vndks = VintfObject.getVndkSnapshots();
72 Long version = VintfObject.getTargetFrameworkCompatibilityMatrixVersion();
VintfFilesCollector.java 21 import android.os.VintfObject;
34 * Device-side VINTF files collector. Uses {@link android.os.VintfObject} to collect VINTF manifests
61 for (String content : VintfObject.report()) {
  /frameworks/base/core/jni/
android_os_VintfRuntimeInfo.cpp 21 #include <vintf/VintfObject.h>
30 using vintf::VintfObject;
35 std::shared_ptr<const RuntimeInfo> info = VintfObject::GetRuntimeInfo( \
57 std::shared_ptr<const RuntimeInfo> info = VintfObject::GetRuntimeInfo(
android_os_VintfObject.cpp 17 #define LOG_TAG "VintfObject"
25 #include <vintf/VintfObject.h>
43 using vintf::VintfObject;
87 tryAddSchema(VintfObject::GetDeviceHalManifest(), gHalManifestConverter,
89 tryAddSchema(VintfObject::GetFrameworkHalManifest(), gHalManifestConverter,
91 tryAddSchema(VintfObject::GetDeviceCompatibilityMatrix(), gCompatibilityMatrixConverter,
93 tryAddSchema(VintfObject::GetFrameworkCompatibilityMatrix(), gCompatibilityMatrixConverter,
112 int32_t status = VintfObject::CheckCompatibility(cPackageInfo, &error, checks);
114 LOG(WARNING) << "VintfObject.verify() returns " << status << ": " << error;
128 tryAddHalNamesAndVersions(VintfObject::GetDeviceHalManifest()
    [all...]
  /system/hwservicemanager/
Vintf.cpp 9 #include <vintf/VintfObject.h>
44 vintf::VintfObject::GetFrameworkHalManifest());
49 vintf::VintfObject::GetDeviceHalManifest());
  /test/vts/utils/native/testability_checker/
VtsTestabilityCheckerMain.cpp 22 #include <vintf/VintfObject.h>
27 using android::vintf::VintfObject;
106 auto framework_comp_matrix = VintfObject::GetFrameworkCompatibilityMatrix();
112 auto device_hal_manifest = VintfObject::GetDeviceHalManifest();
118 auto framework_hal_manifest = VintfObject::GetFrameworkHalManifest();
  /system/libvintf/
VintfObject.cpp 17 #include "VintfObject.h"
72 std::shared_ptr<const HalManifest> VintfObject::GetDeviceHalManifest(bool skipCache) {
74 return Get(&gVendorManifest, skipCache, &VintfObject::FetchDeviceHalManifest);
78 std::shared_ptr<const HalManifest> VintfObject::GetFrameworkHalManifest(bool skipCache) {
80 return Get(&gFrameworkManifest, skipCache, &VintfObject::FetchFrameworkHalManifest);
85 std::shared_ptr<const CompatibilityMatrix> VintfObject::GetDeviceCompatibilityMatrix(bool skipCache) {
87 return Get(&gDeviceMatrix, skipCache, &VintfObject::FetchDeviceMatrix);
91 std::shared_ptr<const CompatibilityMatrix> VintfObject::GetFrameworkCompatibilityMatrix(bool skipCache) {
103 std::bind(&VintfObject::GetCombinedFrameworkMatrix, deviceManifest, _1, _2));
112 status_t VintfObject::GetCombinedFrameworkMatrix
    [all...]
main.cpp 20 #include <vintf/VintfObject.h>
247 auto vm = VintfObject::GetDeviceHalManifest();
248 auto fm = VintfObject::GetFrameworkHalManifest();
249 auto vcm = VintfObject::GetDeviceCompatibilityMatrix();
250 auto fcm = VintfObject::GetFrameworkCompatibilityMatrix();
251 auto ki = VintfObject::GetRuntimeInfo();
319 auto compatible = VintfObject::CheckCompatibility({}, &error);
320 std::cout << "VintfObject::CheckCompatibility? "
327 auto deprecate = VintfObject::CheckDeprecation(&error);
328 std::cout << "VintfObject::CheckDeprecation (against device manifest)?
    [all...]
check_vintf.cpp 25 #include <vintf/VintfObject.h>
248 return VintfObject::CheckCompatibility({} /* packageInfo */, error, DISABLE_RUNTIME_INFO);
  /system/libvintf/test/
vintf_object_tests.cpp 25 #include <vintf/VintfObject.h>
436 int result = VintfObject::CheckCompatibility(packageInfo, &error);
475 int result = VintfObject::CheckCompatibility(packageInfo, &error);
504 int result = VintfObject::CheckCompatibility(packageInfo, &error);
519 int result = VintfObject::CheckCompatibility(packageInfo, &error);
538 int result = VintfObject::CheckCompatibility(packageInfo, &error);
576 int result = VintfObject::CheckCompatibility(packageInfo, &error);
622 int result = VintfObject::CheckCompatibility(packageInfo, &error);
637 int result = VintfObject::CheckCompatibility(packageInfo, &error);
653 VintfObject::GetRuntimeInfo(true /* skipCache */, RuntimeInfo::FetchFlag::ALL)
    [all...]
  /system/libvintf/include/vintf/
CompatibilityMatrix.h 109 friend class VintfObject;
RuntimeInfo.h 72 // RuntimeInfo object is created (the first time VintfObject::GetRuntimeInfo is called),
95 friend class VintfObject;
HalManifest.h 129 friend class VintfObject;
VintfObject.h 33 * VintfObject
52 class VintfObject {
  /cts/common/device-side/device-info/
Android.mk 39 # This stub library provides some internal APIs (SystemProperties, VintfObject, etc.)

Completed in 698 milliseconds

1 2