/system/media/camera/docs/ |
D | metadata_template.mako | 70 <%def name="insert_entry(prop)"> 71 % if prop.is_clone(): 72 <clone entry="${prop.name}" kind="${prop.target_kind}"> 74 % if prop.details is not None: 75 <details>${prop.details}</details> 78 % if prop.hal_details is not None: 79 <hal_details>${prop.hal_details}</hal_details> 82 % for tag in prop.tags: 88 <entry name="${prop.name_short}" type="${prop.type}" 89 % if prop.visibility: [all …]
|
D | html.mako | 150 def entry_cols(prop): 152 if prop.details: cols = cols + 2 153 if prop.hal_details: cols = cols + 2 249 <%def name="insert_entry(prop)"> 250 <tr class="entry" id="${prop.kind}_${prop.name}"> 252 % if prop.deprecated: 255 " rowspan="${entry_cols(prop)}"> 256 ${prop.name | wbr} 259 % if prop.enum: 260 <span class="entry_type_name entry_type_name_enum">${prop.type}</span> [all …]
|
D | metadata_parser_xml.py | 277 prop = find_child_tag(entry, i) 279 if prop is not None: 280 d[i] = prop.string
|
/system/connectivity/shill/ |
D | property_store.cc | 48 bool PropertyStore::Contains(const string& prop) const { in Contains() 49 return (ContainsKey(bool_properties_, prop) || in Contains() 50 ContainsKey(int16_properties_, prop) || in Contains() 51 ContainsKey(int32_properties_, prop) || in Contains() 52 ContainsKey(key_value_store_properties_, prop) || in Contains() 53 ContainsKey(string_properties_, prop) || in Contains() 54 ContainsKey(stringmap_properties_, prop) || in Contains() 55 ContainsKey(stringmaps_properties_, prop) || in Contains() 56 ContainsKey(strings_properties_, prop) || in Contains() 57 ContainsKey(uint8_properties_, prop) || in Contains() [all …]
|
D | property_store.h | 210 void RegisterBool(const std::string& name, bool* prop); 211 void RegisterConstBool(const std::string& name, const bool* prop); 212 void RegisterWriteOnlyBool(const std::string& name, bool* prop); 213 void RegisterInt16(const std::string& name, int16_t* prop); 214 void RegisterConstInt16(const std::string& name, const int16_t* prop); 215 void RegisterWriteOnlyInt16(const std::string& name, int16_t* prop); 216 void RegisterInt32(const std::string& name, int32_t* prop); 217 void RegisterConstInt32(const std::string& name, const int32_t* prop); 218 void RegisterWriteOnlyInt32(const std::string& name, int32_t* prop); 219 void RegisterUint32(const std::string& name, uint32_t* prop); [all …]
|
/system/bt/btif/src/ |
D | btif_storage.c | 174 static int prop2cfg(bt_bdaddr_t *remote_bd_addr, bt_property_t *prop) in prop2cfg() argument 179 BTIF_TRACE_DEBUG("in, bd addr:%s, prop type:%d, len:%d", bdstr, prop->type, prop->len); in prop2cfg() 181 if(prop->len <= 0 || prop->len > (int)sizeof(value) - 1) in prop2cfg() 183 BTIF_TRACE_ERROR("property type:%d, len:%d is invalid", prop->type, prop->len); in prop2cfg() 186 switch(prop->type) in prop2cfg() 193 strncpy(value, (char*)prop->val, prop->len); in prop2cfg() 194 value[prop->len]='\0'; in prop2cfg() 202 strncpy(value, (char*)prop->val, prop->len); in prop2cfg() 203 value[prop->len]='\0'; in prop2cfg() 208 BTIF_STORAGE_KEY_ADAPTER_SCANMODE, *(int*)prop->val); in prop2cfg() [all …]
|
D | btif_core.c | 93 bt_property_t prop; member 480 bt_property_t prop; in btif_enable_bluetooth_evt() local 502 prop.type = BT_PROPERTY_BDADDR; in btif_enable_bluetooth_evt() 503 prop.val = (void*)&btif_local_bd_addr; in btif_enable_bluetooth_evt() 504 prop.len = sizeof(bt_bdaddr_t); in btif_enable_bluetooth_evt() 505 HAL_CBACK(bt_hal_cbacks, adapter_properties_cb, BT_STATUS_SUCCESS, 1, &prop); in btif_enable_bluetooth_evt() 824 bt_property_t *p_prop = &(p_req->write_req.prop); in execute_storage_request() 836 bt_property_t prop; in execute_storage_request() local 837 prop.type = p_req->read_req.type; in execute_storage_request() 838 prop.val = (void*)buf; in execute_storage_request() [all …]
|
D | btif_dm.c | 1173 bt_property_t prop; in btif_dm_auth_cmpl_evt() local 1180 prop.type = BT_PROPERTY_UUIDS; in btif_dm_auth_cmpl_evt() 1181 prop.val = uuid.uu; in btif_dm_auth_cmpl_evt() 1182 prop.len = MAX_UUID_SIZE; in btif_dm_auth_cmpl_evt() 1186 BT_STATUS_SUCCESS, &bd_addr, 1, &prop); in btif_dm_auth_cmpl_evt() 1490 bt_property_t prop; in btif_dm_search_services_evt() local 1508 prop.type = BT_PROPERTY_UUIDS; in btif_dm_search_services_evt() 1509 prop.len = 0; in btif_dm_search_services_evt() 1512 prop.val = p_data->disc_res.p_uuid_list; in btif_dm_search_services_evt() 1513 prop.len = p_data->disc_res.num_uuids * MAX_UUID_SIZE; in btif_dm_search_services_evt() [all …]
|
/system/connectivity/shill/vpn/ |
D | vpn_driver.cc | 244 string prop = properties_[i].property; in GetProvider() local 248 if (base::StartsWith(prop, provider_prefix, in GetProvider() 250 chopped_prop = prop.substr(provider_prefix.length()); in GetProvider() 252 chopped_prop = prop; in GetProvider() 256 if (!args_.ContainsStrings(prop)) { in GetProvider() 259 Strings value = args_.GetStrings(prop); in GetProvider() 262 if (!args_.ContainsString(prop)) { in GetProvider() 265 string value = args_.GetString(prop); in GetProvider()
|
/system/core/ |
D | CleanSpec.mk | 54 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/root/default.prop) 55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/recovery/root/default.prop)
|
/system/bt/service/ |
D | logging_helpers.cpp | 104 const char *BtPropertyText(const bt_property_type_t prop) { in BtPropertyText() argument 105 switch (prop) { in BtPropertyText()
|
D | logging_helpers.h | 40 const char *BtPropertyText(const bt_property_type_t prop);
|
/system/bt/stack/srvc/ |
D | srvc_battery.c | 204 tGATT_CHAR_PROP prop = GATT_CHAR_PROP_BIT_READ; in Battery_Instantiate() local 236 prop |= GATT_CHAR_PROP_BIT_NOTIFY; in Battery_Instantiate() 241 prop)) == 0) in Battery_Instantiate()
|
/system/core/logd/ |
D | main.cpp | 146 static bool check_flag(const char *prop, const char *flag) { in check_flag() argument 147 const char *cp = strcasestr(prop, flag); in check_flag() 153 if ((cp != prop) && !strchr(sep, cp[-1])) { in check_flag()
|
/system/bt/btif/include/ |
D | btif_api.h | 320 bt_status_t btif_dm_get_adapter_property(bt_property_t *prop);
|
/system/connectivity/shill/test-scripts/ |
D | flimflam.py | 324 def FindElementByPropertySubstring(self, kind, prop, substring): argument 337 if (prop in obj_properties and 338 obj_properties[prop].find(substring) >= 0):
|
/system/bt/bta/gatt/ |
D | bta_gattc_cache.c | 1130 UINT16 id, tBT_UUID uuid, UINT8 prop) in bta_gattc_fill_gatt_db_el() argument 1137 p_attr->properties = prop; in bta_gattc_fill_gatt_db_el() 1373 p_attr->prop); in bta_gattc_rebuild_cache() 1381 p_attr->prop, in bta_gattc_rebuild_cache() 1401 UINT16 e_handle, tBT_UUID uuid, UINT8 prop, UINT16 incl_srvc_handle, in bta_gattc_fill_nv_attr() argument 1409 p_attr->prop = prop; in bta_gattc_fill_nv_attr()
|
/system/weaved/buffet/ |
D | manager.cc | 155 std::string Manager::* prop, in UpdateValue() argument 159 if (manager->*prop != new_value) { in UpdateValue() 160 manager->*prop = new_value; in UpdateValue()
|
/system/sepolicy/ |
D | property_contexts | 71 # ro.build.fingerprint is either set in /system/build.prop, or is
|
D | file_contexts | 7 /build\.prop u:object_r:rootfs:s0 8 /default\.prop u:object_r:rootfs:s0
|
/system/core/adb/ |
D | adb.cpp | 250 for (const auto& prop : android::base::Split(props, ";")) { in parse_banner() local 252 if (prop.empty()) continue; in parse_banner() 254 std::vector<std::string> key_value = android::base::Split(prop, "="); in parse_banner()
|
/system/bt/bta/include/ |
D | bta_gatt_api.h | 240 UINT8 prop; /* used when attribute type is characteristic */ member
|
/system/core/rootdir/ |
D | init.rc | 36 copy /default.prop /dev/urandom
|