Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 25 of 27) sorted by relevance

12

/system/bt/test/suite/support/
Dadapter.c27 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
Dcallbacks.c24 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/
Dadapter.c27 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/
Dproperty.c29 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/
DExt4Crypt.cpp183 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/
Dbtif_core.c692 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 …]
Dbtif_dm.c555 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 …]
Dbtif_gatt_server.c103 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()
Dbtif_storage.c758 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()
Dbtif_gatt_client.c622 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/
Dproperty.h29 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/
DCameraMetadataEnums.mako50 ## Generate a list of only Static, Controls, or Dynamic properties.
82 ## Static properties only
85 ## Controls properties only
88 ## Dynamic properties only
DCameraMetadataKeys.mako73 ## Generate a list of only Static, Controls, or Dynamic properties.
96 ## Static properties only
99 ## Controls properties only
102 ## Dynamic properties only
Dhtml.mako197 <table class="properties">
/system/bt/doc/
Dproperties.md3 This document describes all of the Android properties used by bluedroid.
/system/extras/ext4_utils/
Dunencrypted_properties.h5 namespace properties {
Dunencrypted_properties.cpp6 namespace properties { namespace
Dext4_crypt.cpp130 return props.Get<int>(properties::is_default, 1) != 1; in e4crypt_non_default_key()
Dext4_crypt_init_extensions.cpp147 std::string policy = props.Get<std::string>(properties::ref); in e4crypt_set_directory_policy()
/system/media/audio/include/system/
Dsound_trigger.h89 struct sound_trigger_properties properties; member
/system/bt/btif/include/
Dbtif_storage.h106 bt_property_t *properties);
/system/core/logd/
DREADME.property1 The properties that logd responds to are:
/system/core/libcutils/
DAndroid.mk104 properties.c \
/system/core/init/
Dreadme.txt131 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/
Dueventd.rc91 # sysfs properties

12