/system/bt/test/suite/support/ |
D | adapter.c | 27 static bt_property_t *properties = NULL; variable 42 if (properties[i].type == type) { in adapter_get_property() 43 return &properties[i]; in adapter_get_property() 79 property_free_array(properties, property_count); in adapter_properties() 80 properties = property_copy_array(new_properties, num_properties); in adapter_properties() 95 void device_found(int num_properties, bt_property_t *properties) { in device_found() argument 107 int num_properties, bt_property_t *properties) { in remote_device_properties() argument
|
D | callbacks.c | 24 void adapter_properties(bt_status_t status, int num_properties, bt_property_t *properties); 28 void device_found(int num_properties, bt_property_t *properties); 30 …roperties(bt_status_t status, bt_bdaddr_t *bd_addr, int num_properties, bt_property_t *properties);
|
/system/bt/tools/bdtool/ |
D | adapter.c | 27 static bt_property_t *properties = NULL; variable 47 if (properties[i].type == type) { in adapter_get_property() 48 return &properties[i]; in adapter_get_property() 80 property_free_array(properties, property_count); in adapter_properties() 81 properties = property_copy_array(new_properties, num_properties); in adapter_properties() 154 bt_property_t *properties) { in remote_device_properties() argument 159 parse_properties(num_properties, properties); in remote_device_properties()
|
/system/bt/btcore/src/ |
D | property.c | 29 bt_property_t *property_copy_array(const bt_property_t *properties, size_t count) { in property_copy_array() argument 30 assert(properties != NULL); in property_copy_array() 36 memcpy(&clone[0], &properties[0], sizeof(bt_property_t) * count); in property_copy_array() 39 memcpy(clone[i].val, properties[i].val, clone[i].len); in property_copy_array() 118 void property_free_array(bt_property_t *properties, size_t count) { in property_free_array() argument 119 if (properties == NULL) in property_free_array() 123 osi_free(properties[i].val); in property_free_array() 126 osi_free(properties); in property_free_array()
|
/system/vold/ |
D | Ext4Crypt.cpp | 183 UnencryptedProperties key_props = GetProps(path).GetChild(properties::key); in e4crypt_enable() 217 if (!UnencryptedProperties(path).Remove(properties::ref)) { in e4crypt_enable() 229 auto key_props = GetProps(path).GetChild(properties::key); in e4crypt_change_password() 258 if (!UnencryptedProperties(path).Set(properties::is_default, in e4crypt_change_password() 270 auto key_props = GetPropsOrAltProps(path).GetChild(properties::key); in e4crypt_crypto_complete() 300 auto key_props = props.GetChild(properties::key); in e4crypt_check_passwd() 375 if (!props.Set(properties::ref, raw_ref)) { in e4crypt_check_passwd() 416 return GetPropsOrAltProps(path).GetChild(properties::key) in e4crypt_get_password_type() 455 auto v = GetPropsOrAltProps(path).GetChild(properties::props) in e4crypt_get_field() 473 return GetPropsOrAltProps(path).GetChild(properties::props) in e4crypt_set_field()
|
/system/bt/btif/src/ |
D | btif_core.c | 692 bt_property_t properties[6]; in btif_in_get_adapter_properties() local 704 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_BDADDR, in btif_in_get_adapter_properties() 706 btif_storage_get_adapter_property(&properties[num_props]); in btif_in_get_adapter_properties() 710 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_BDNAME, in btif_in_get_adapter_properties() 712 btif_storage_get_adapter_property(&properties[num_props]); in btif_in_get_adapter_properties() 716 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_SCAN_MODE, in btif_in_get_adapter_properties() 718 btif_storage_get_adapter_property(&properties[num_props]); in btif_in_get_adapter_properties() 722 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_DISCOVERY_TIMEOUT, in btif_in_get_adapter_properties() 724 btif_storage_get_adapter_property(&properties[num_props]); in btif_in_get_adapter_properties() 728 BTIF_STORAGE_FILL_PROPERTY(&properties[num_props], BT_PROPERTY_ADAPTER_BONDED_DEVICES, in btif_in_get_adapter_properties() [all …]
|
D | btif_dm.c | 555 bt_property_t properties[3]; in btif_update_remote_properties() local 561 memset(properties, 0, sizeof(properties)); in btif_update_remote_properties() 567 BTIF_STORAGE_FILL_PROPERTY(&properties[num_properties], in btif_update_remote_properties() 569 status = btif_storage_set_remote_device_property(&bdaddr, &properties[num_properties]); in btif_update_remote_properties() 580 BTIF_STORAGE_FILL_PROPERTY(&properties[num_properties], in btif_update_remote_properties() 582 status = btif_storage_get_remote_device_property(&bdaddr, &properties[num_properties]); in btif_update_remote_properties() 590 BTIF_STORAGE_FILL_PROPERTY(&properties[num_properties], in btif_update_remote_properties() 592 status = btif_storage_set_remote_device_property(&bdaddr, &properties[num_properties]); in btif_update_remote_properties() 606 BTIF_STORAGE_FILL_PROPERTY(&properties[num_properties], in btif_update_remote_properties() 608 status = btif_storage_set_remote_device_property(&bdaddr, &properties[num_properties]); in btif_update_remote_properties() [all …]
|
D | btif_gatt_server.c | 103 uint8_t properties; member 463 p_cb->permissions, p_cb->properties); in btgatts_handle_event() 587 bt_uuid_t *uuid, int properties, in btif_gatts_add_characteristic() argument 594 btif_cb.properties = (uint8_t) properties; in btif_gatts_add_characteristic()
|
D | btif_storage.c | 758 bt_property_t *properties) in btif_storage_add_remote_device() argument 766 if (properties[i].type == BT_PROPERTY_REMOTE_RSSI) in btif_storage_add_remote_device() 770 if (properties[i].type == BT_PROPERTY_BDADDR) in btif_storage_add_remote_device() 773 memcpy(&addr_prop, &properties[i], sizeof(bt_property_t)); in btif_storage_add_remote_device() 781 &properties[i]); in btif_storage_add_remote_device()
|
D | btif_gatt_client.c | 622 bt_property_t properties; in btif_gattc_upstreams_evt() local 643 BTIF_STORAGE_FILL_PROPERTY(&properties, in btif_gattc_upstreams_evt() 645 btif_storage_set_remote_device_property(&(p_btif_cb->bd_addr), &properties); in btif_gattc_upstreams_evt()
|
/system/bt/btcore/include/ |
D | property.h | 29 bt_property_t *property_copy_array(const bt_property_t *properties, size_t count); 54 void property_free_array(bt_property_t *properties, size_t count);
|
/system/media/camera/docs/ |
D | CameraMetadataEnums.mako | 50 ## Generate a list of only Static, Controls, or Dynamic properties. 82 ## Static properties only 85 ## Controls properties only 88 ## Dynamic properties only
|
D | CameraMetadataKeys.mako | 73 ## Generate a list of only Static, Controls, or Dynamic properties. 96 ## Static properties only 99 ## Controls properties only 102 ## Dynamic properties only
|
D | html.mako | 197 <table class="properties">
|
/system/bt/doc/ |
D | properties.md | 3 This document describes all of the Android properties used by bluedroid.
|
/system/extras/ext4_utils/ |
D | unencrypted_properties.h | 5 namespace properties {
|
D | unencrypted_properties.cpp | 6 namespace properties { namespace
|
D | ext4_crypt.cpp | 130 return props.Get<int>(properties::is_default, 1) != 1; in e4crypt_non_default_key()
|
D | ext4_crypt_init_extensions.cpp | 147 std::string policy = props.Get<std::string>(properties::ref); in e4crypt_set_directory_policy()
|
/system/media/audio/include/system/ |
D | sound_trigger.h | 89 struct sound_trigger_properties properties; member
|
/system/bt/btif/include/ |
D | btif_storage.h | 106 bt_property_t *properties);
|
/system/core/logd/ |
D | README.property | 1 The properties that logd responds to are:
|
/system/core/libcutils/ |
D | Android.mk | 104 properties.c \
|
/system/core/init/ |
D | readme.txt | 131 One can also test multiple properties to execute a group 207 Loads properties from /system, /vendor, et cetera. 211 Loads persistent properties when /data has been decrypted. 290 set the partition.<mount_point>.verified properties used by adb remount 306 Init updates some system properties to provide some insight into
|
/system/core/rootdir/ |
D | ueventd.rc | 91 # sysfs properties
|