Searched defs:prop (Results 1 - 10 of 10) sorted by relevance

/system/bt/service/
H A Dlogging_helpers.cpp104 const char *BtPropertyText(const bt_property_type_t prop) { argument
105 switch (prop) {
/system/bt/stack/srvc/
H A Dsrvc_battery.c204 tGATT_CHAR_PROP prop = GATT_CHAR_PROP_BIT_READ; local
236 prop |= GATT_CHAR_PROP_BIT_NOTIFY;
241 prop)) == 0)
/system/core/logd/
H A Dmain.cpp146 static bool check_flag(const char *prop, const char *flag) { argument
147 const char *cp = strcasestr(prop, flag);
153 if ((cp != prop) && !strchr(sep, cp[-1])) {
/system/weaved/buffet/
H A Dmanager.cc155 std::string Manager::* prop,
159 if (manager->*prop != new_value) {
160 manager->*prop = new_value;
154 UpdateValue(Manager* manager, std::string Manager::* prop, const std::string& new_value, int notification, std::vector<int>* notification_ids) argument
/system/bt/bta/gatt/
H A Dbta_gattc_cache.c87 APPL_TRACE_ERROR("\t Attr handle[%d] uuid[0x%04x] type[%s] prop[0x%1x]",
1130 UINT16 id, tBT_UUID uuid, UINT8 prop)
1137 p_attr->properties = prop;
1235 0 /* prop */);
1373 p_attr->prop);
1381 p_attr->prop,
1401 UINT16 e_handle, tBT_UUID uuid, UINT8 prop, UINT16 incl_srvc_handle,
1409 p_attr->prop = prop;
1126 bta_gattc_fill_gatt_db_el(btgatt_db_element_t *p_attr, bt_gatt_db_attribute_type_t type, UINT16 att_handle, UINT16 s_handle, UINT16 e_handle, UINT16 id, tBT_UUID uuid, UINT8 prop) argument
1400 bta_gattc_fill_nv_attr(tBTA_GATTC_NV_ATTR *p_attr, UINT8 type, UINT16 s_handle, UINT16 e_handle, tBT_UUID uuid, UINT8 prop, UINT16 incl_srvc_handle, BOOLEAN is_primary) argument
/system/bt/btif/src/
H A Dbtif_core.c93 bt_property_t prop; member in struct:__anon634
399 BTIF_TRACE_DEBUG("No preset BDA. Generating BDA: %s for prop %s",
403 BTIF_TRACE_ERROR("Failed to set random BDA in prop %s",PERSIST_BDADDR_PROPERTY);
480 bt_property_t prop; local
502 prop.type = BT_PROPERTY_BDADDR;
503 prop.val = (void*)&btif_local_bd_addr;
504 prop.len = sizeof(bt_bdaddr_t);
505 HAL_CBACK(bt_hal_cbacks, adapter_properties_cb, BT_STATUS_SUCCESS, 1, &prop);
824 bt_property_t *p_prop = &(p_req->write_req.prop);
836 bt_property_t prop; local
895 bt_property_t prop; local
[all...]
H A Dbtif_storage.c174 static int prop2cfg(bt_bdaddr_t *remote_bd_addr, bt_property_t *prop) argument
179 BTIF_TRACE_DEBUG("in, bd addr:%s, prop type:%d, len:%d", bdstr, prop->type, prop->len);
181 if(prop->len <= 0 || prop->len > (int)sizeof(value) - 1)
183 BTIF_TRACE_ERROR("property type:%d, len:%d is invalid", prop->type, prop->len);
186 switch(prop->type)
193 strncpy(value, (char*)prop
267 cfg2prop(bt_bdaddr_t *remote_bd_addr, bt_property_t *prop) argument
[all...]
H A Dbtif_dm.c1172 bt_property_t prop; local
1179 prop.type = BT_PROPERTY_UUIDS;
1180 prop.val = uuid.uu;
1181 prop.len = MAX_UUID_SIZE;
1185 BT_STATUS_SUCCESS, &bd_addr, 1, &prop);
1489 bt_property_t prop; local
1507 prop.type = BT_PROPERTY_UUIDS;
1508 prop.len = 0;
1511 prop.val = p_data->disc_res.p_uuid_list;
1512 prop
1571 bt_property_t prop; local
1634 bt_property_t prop; local
1690 bt_property_t prop; local
1959 bt_property_t prop; local
2608 btif_dm_get_adapter_property(bt_property_t *prop) argument
[all...]
/system/connectivity/shill/
H A Dproperty_store.cc48 bool PropertyStore::Contains(const string& prop) const {
49 return (ContainsKey(bool_properties_, prop) ||
50 ContainsKey(int16_properties_, prop) ||
51 ContainsKey(int32_properties_, prop) ||
52 ContainsKey(key_value_store_properties_, prop) ||
53 ContainsKey(string_properties_, prop) ||
54 ContainsKey(stringmap_properties_, prop) ||
55 ContainsKey(stringmaps_properties_, prop) ||
56 ContainsKey(strings_properties_, prop) ||
57 ContainsKey(uint8_properties_, prop) ||
559 RegisterBool(const string& name, bool* prop) argument
565 RegisterConstBool(const string& name, const bool* prop) argument
571 RegisterWriteOnlyBool(const string& name, bool* prop) argument
578 RegisterInt16(const string& name, int16_t* prop) argument
584 RegisterConstInt16(const string& name, const int16_t* prop) argument
592 RegisterWriteOnlyInt16(const string& name, int16_t* prop) argument
598 RegisterInt32(const string& name, int32_t* prop) argument
604 RegisterConstInt32(const string& name, const int32_t* prop) argument
612 RegisterWriteOnlyInt32(const string& name, int32_t* prop) argument
619 RegisterString(const string& name, string* prop) argument
625 RegisterConstString(const string& name, const string* prop) argument
633 RegisterWriteOnlyString(const string& name, string* prop) argument
640 RegisterStringmap(const string& name, Stringmap* prop) argument
647 RegisterConstStringmap(const string& name, const Stringmap* prop) argument
655 RegisterWriteOnlyStringmap(const string& name, Stringmap* prop) argument
663 RegisterStringmaps(const string& name, Stringmaps* prop) argument
670 RegisterConstStringmaps(const string& name, const Stringmaps* prop) argument
678 RegisterWriteOnlyStringmaps(const string& name, Stringmaps* prop) argument
686 RegisterStrings(const string& name, Strings* prop) argument
693 RegisterConstStrings(const string& name, const Strings* prop) argument
701 RegisterWriteOnlyStrings(const string& name, Strings* prop) argument
709 RegisterUint8(const string& name, uint8_t* prop) argument
715 RegisterConstUint8(const string& name, const uint8_t* prop) argument
723 RegisterWriteOnlyUint8(const string& name, uint8_t* prop) argument
730 RegisterByteArray(const string& name, ByteArray* prop) argument
737 RegisterConstByteArray(const string& name, const ByteArray* prop) argument
745 RegisterWriteOnlyByteArray(const string& name, ByteArray* prop) argument
753 RegisterUint16(const string& name, uint16_t* prop) argument
760 RegisterUint16s(const string& name, Uint16s* prop) argument
767 RegisterUint32(const std::string& name, uint32_t* prop) argument
774 RegisterConstUint32(const string& name, const uint32_t* prop) argument
782 RegisterConstUint16(const string& name, const uint16_t* prop) argument
790 RegisterConstUint16s(const string& name, const Uint16s* prop) argument
798 RegisterWriteOnlyUint16(const string& name, uint16_t* prop) argument
[all...]
/system/bt/bta/include/
H A Dbta_gatt_api.h240 UINT8 prop; /* used when attribute type is characteristic */ member in struct:__anon352

Completed in 309 milliseconds