Home
last modified time | relevance | path

Searched refs:property_value (Results 1 – 4 of 4) sorted by relevance

/packages/modules/NeuralNetworks/driver/cache/BlobCache/
DBlobCache.cpp30 static const char property_value[] = "[HOST]"; variable
31 #define PROPERTY_VALUE_MAX (sizeof(property_value) - 1)
34 memcpy(value, property_value, PROPERTY_VALUE_MAX); in property_get()
/packages/modules/Bluetooth/system/btif/src/
Dbtif_storage.cc1521 std::vector<uint8_t> property_value; in btif_storage_migrate_services() local
1529 property_value.insert(property_value.end(), uuid_128bit.begin(), uuid_128bit.end()); in btif_storage_migrate_services()
1532 bt_property_t le_uuids_prop{BT_PROPERTY_UUIDS_LE, static_cast<int>(property_value.size()), in btif_storage_migrate_services()
1533 (void*)property_value.data()}; in btif_storage_migrate_services()
Dbtif_dm.cc1480 std::vector<uint8_t> property_value; in btif_dm_search_devices_evt() local
1499 property_value.insert(property_value.end(), uuid_128bit.begin(), uuid_128bit.end()); in btif_dm_search_devices_evt()
1505 (void*)property_value.data()}); in btif_dm_search_devices_evt()
1832 std::vector<uint8_t> property_value; in btif_on_gatt_results() local
1836 property_value.insert(property_value.end(), uuid_128bit.begin(), uuid_128bit.end()); in btif_on_gatt_results()
1843 static_cast<int>(Uuid::kNumBytes128 * uuids.size()), (void*)property_value.data()}); in btif_on_gatt_results()
/packages/providers/ContactsProvider/tests/assets/upgradeTest/
Dcontacts2_1108.sql6 CREATE TABLE properties (property_key TEXT PRIMARY KEY, property_value TEXT ); field