Searched refs:attribute_value (Results 1 – 14 of 14) sorted by relevance
/external/python/bumble/bumble/ |
D | gatt_server.py | 198 attribute_value = value 247 attribute_value = value 430 attribute.read_value(connection) == request.attribute_value and 484 attribute_value = attribute.read_value(connection) 486 if len(attribute_value) > max_attribute_size: 488 attribute_value = attribute_value[:max_attribute_size] 489 if attributes and len(attributes[0][1]) != len(attribute_value): 494 entry_size = 2 + len(attribute_value) 499 attributes.append((attribute.handle, attribute_value)) 527 attribute_value = value[:value_size] [all …]
|
D | gatt_client.py | 254 for attribute_handle, end_group_handle, attribute_value in response.attributes: 265 UUID.from_bytes(attribute_value), 302 attribute_value = uuid.to_pdu_bytes() 395 for attribute_handle, attribute_value in response.attributes: 401 properties, handle = struct.unpack_from('<BH', attribute_value) 402 characteristic_uuid = UUID.from_bytes(attribute_value[3:]) 573 attribute_value = response.attribute_value 574 if not no_long_read and len(attribute_value) == self.mtu - 1: 576 offset = len(attribute_value) 594 attribute_value += part [all …]
|
D | att.py | 429 attribute_value = self.attribute_data_list[offset + 2:offset + self.length] 430 self.attributes.append((attribute_handle, attribute_value)) 538 attribute_value = self.attribute_data_list[offset + 4:offset + self.length] 539 self.attributes.append((attribute_handle, end_group_handle, attribute_value))
|
D | sdp.py | 421 attribute_id, attribute_value = elements[2 * i:2 * (i + 1)] 425 attribute_list.append(ServiceAttribute(attribute_id.value, attribute_value))
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | tracking.py | 103 attribute_value = getattr(self, attribute_name, None) 107 attribute_value = None 113 if isinstance(attribute_value, (def_function.Function, 115 functions[attribute_name] = attribute_value
|
/external/tensorflow/tensorflow/tools/graph_transforms/ |
D | rename_attribute.cc | 56 AttrValue attribute_value = node.attr().at(old_attribute_name); in RenameAttribute() local 58 new_node->mutable_attr()->insert({new_attribute_name, attribute_value}); in RenameAttribute()
|
/external/tensorflow/tensorflow/compiler/xla/service/g3doc/ |
D | hlo_parser.md | 55 : attribute_name attribute_value 57 attribute_value
|
/external/autotest/client/site_tests/policy_PowerManagementIdleSettings/ |
D | policy_PowerManagementIdleSettings.py | 159 attribute_value = utils.wait_for_value( 163 return attribute_value
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
D | XPathParts.java | 915 Map<String, String> attribute_value = suppressionMap.get(element); in skipAttribute() local 917 if (attribute_value != null) { in skipAttribute() 918 Object suppressValue = attribute_value.get(attribute); in skipAttribute() 920 suppressValue = attribute_value.get("*"); in skipAttribute()
|
/external/python/asn1crypto/asn1crypto/ |
D | x509.py | 1016 for attribute_name, attribute_value in name_dict.items(): 1019 value = EmailAddress(attribute_value) 1021 value = DNSName(attribute_value) 1025 value=PrintableString(attribute_value) 1030 value=encoding_class(attribute_value)
|
/external/libabigail/tools/ |
D | abitidy.cc | 1021 const auto attribute_value = get_attribute(instr, attribute_name); in sort_namespaces_types_and_declarations() local 1022 assert(attribute_value); in sort_namespaces_types_and_declarations() 1023 attributes[attribute_name].insert(attribute_value.value()); in sort_namespaces_types_and_declarations()
|
/external/tensorflow/tensorflow/stream_executor/gpu/ |
D | gpu_driver.h | 241 int* attribute_value);
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_driver.cc | 435 CUfunction_attribute attribute, CUfunction func, int* attribute_value) { in FuncGetAttribute() argument 436 RETURN_IF_CUDA_RES_ERROR(cuFuncGetAttribute(attribute_value, attribute, func), in FuncGetAttribute()
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
D | rocm_driver.cc | 372 hipDeviceAttribute_t attribute, hipFunction_t func, int* attribute_value) { in FuncGetAttribute() argument
|