Home
last modified time | relevance | path

Searched refs:attribute_value (Results 1 – 14 of 14) sorted by relevance

/external/python/bumble/bumble/
Dgatt_server.py198 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 …]
Dgatt_client.py254 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 …]
Datt.py429 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))
Dsdp.py421 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/
Dtracking.py103 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/
Drename_attribute.cc56 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/
Dhlo_parser.md55 : attribute_name attribute_value
57 attribute_value
/external/autotest/client/site_tests/policy_PowerManagementIdleSettings/
Dpolicy_PowerManagementIdleSettings.py159 attribute_value = utils.wait_for_value(
163 return attribute_value
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DXPathParts.java915 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/
Dx509.py1016 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/
Dabitidy.cc1021 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/
Dgpu_driver.h241 int* attribute_value);
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_driver.cc435 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/
Drocm_driver.cc372 hipDeviceAttribute_t attribute, hipFunction_t func, int* attribute_value) { in FuncGetAttribute() argument