HomeSort by relevance Sort by last modified time
    Searched refs:property_info_area (Results 1 - 4 of 4) sorted by null

  /system/core/property_service/libpropertyinfoserializer/
property_info_serializer_test.cpp 39 auto property_info_area = reinterpret_cast<const PropertyInfoArea*>(serialized_trie.data()); local
42 EXPECT_EQ(1U, property_info_area->current_version());
43 EXPECT_EQ(1U, property_info_area->minimum_supported_version());
46 auto root_node = property_info_area->root_node();
48 EXPECT_STREQ("default", property_info_area->context(root_node.context_index()));
49 EXPECT_STREQ("default", property_info_area->type(root_node.type_index()));
61 EXPECT_STREQ("1st", property_info_area->context(test_node.context_index()));
62 EXPECT_STREQ("1st", property_info_area->type(test_node.type_index()));
71 EXPECT_STREQ("2nd", property_info_area->context(prefix->context_index));
72 EXPECT_STREQ("2nd", property_info_area->type(prefix->type_index))
140 auto property_info_area = reinterpret_cast<const PropertyInfoArea*>(serialized_trie.data()); local
370 auto property_info_area = reinterpret_cast<const PropertyInfoArea*>(serialized_trie.data()); local
777 auto property_info_area = reinterpret_cast<const PropertyInfoArea*>(serialized_trie.data()); local
822 auto property_info_area = reinterpret_cast<const PropertyInfoArea*>(serialized_trie.data()); local
861 auto property_info_area = reinterpret_cast<const PropertyInfoArea*>(serialized_trie.data()); local
    [all...]
  /system/core/property_service/property_info_checker/
property_info_checker.cpp 179 auto property_info_area = reinterpret_cast<PropertyInfoArea*>(serialized_contexts.data()); local
180 for (size_t i = 0; i < property_info_area->num_contexts(); ++i) {
181 if (!checker.CheckContext(property_info_area->context(i))) {
  /system/core/property_service/libpropertyinfoparser/
property_info_parser.cpp 223 auto property_info_area = reinterpret_cast<PropertyInfoArea*>(map_result); local
224 if (property_info_area->minimum_supported_version() > 1 ||
225 property_info_area->size() != mmap_size) {
  /system/core/init/
property_service.cpp 90 static PropertyInfoAreaFile property_info_area; member in namespace:android::init
109 if (!property_info_area.LoadDefaultPath()) {
408 property_info_area->GetPropertyInfo(control_string_legacy.c_str(), &target_context_legacy,
419 property_info_area->GetPropertyInfo(control_string_full.c_str(), &target_context_full,
446 property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);

Completed in 211 milliseconds