Home
last modified time | relevance | path

Searched refs:attr_id (Results 1 – 12 of 12) sorted by relevance

/external/autotest/server/cros/bluetooth/
Dbluetooth_sdp_tests.py91 for attr_id in self.FAKE_GENERAL_ATTRIBUTE_IDS:
92 attr = ET.Element('attribute', {'id': str(attr_id)})
97 attr_id = self.FAKE_ATTRIBUTE_VALUE + offset
98 attr = ET.Element('attribute', {'id': str(attr_id)})
185 def get_attribute(self, class_id, attr_id): argument
195 record_handle, self.MAX_ATTR_BYTE_CNT, [attr_id], {}))
196 if isinstance(res, list) and len(res) == 2 and res[0] == attr_id:
203 def assert_attribute_equals(self, class_id, attr_id, expected_value): argument
211 self.assert_equal(self.get_attribute(class_id, attr_id),
353 for attr_id in self.FAKE_GENERAL_ATTRIBUTE_IDS:
[all …]
/external/wpa_supplicant_8/src/eap_common/
Deap_sake_common.c19 u8 attr_id, u8 len, const u8 *data) in eap_sake_parse_add_attr() argument
23 switch (attr_id) { in eap_sake_parse_add_attr()
133 if (attr_id < 128) { in eap_sake_parse_add_attr()
135 " attribute %d", attr_id); in eap_sake_parse_add_attr()
139 "attribute %d", attr_id); in eap_sake_parse_add_attr()
/external/autotest/client/common_lib/cros/bluetooth/
Dbluetooth_sdp_socket.py356 for attr_id in attr_ids:
359 if isinstance(attr_id, list):
361 attr_id[0], attr_id[1])
363 packed_attr_id = struct.pack('>BH', SDP_UINT16, attr_id)
/external/wpa_supplicant_8/src/common/
Ddpp_pkex.c316 static int dpp_pkex_identifier_match(const u8 *attr_id, u16 attr_id_len, in dpp_pkex_identifier_match() argument
319 if (!attr_id && identifier) { in dpp_pkex_identifier_match()
325 if (attr_id && !identifier) { in dpp_pkex_identifier_match()
331 if (attr_id && identifier && in dpp_pkex_identifier_match()
333 os_memcmp(identifier, attr_id, attr_id_len) != 0)) { in dpp_pkex_identifier_match()
350 const u8 *attr_group, *attr_id, *attr_key; in dpp_pkex_rx_exchange_req() local
387 attr_id = dpp_get_attr(buf, len, DPP_ATTR_CODE_IDENTIFIER, in dpp_pkex_rx_exchange_req()
389 if (!dpp_pkex_identifier_match(attr_id, attr_id_len, identifier)) in dpp_pkex_rx_exchange_req()
689 const u8 *attr_status, *attr_id, *attr_key, *attr_group; in dpp_pkex_rx_exchange_resp() local
751 attr_id = dpp_get_attr(buf, buflen, DPP_ATTR_CODE_IDENTIFIER, in dpp_pkex_rx_exchange_resp()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Deapol_test.sgml159 attr_id:syntax:value, or attr_id alone. attr_id should be the numeric
162 to send. When attr_id is given alone, NULL is used as the attribute
/external/kernel-headers/original/uapi/rdma/
Drdma_user_ioctl_cmds.h55 __u16 attr_id; /* command specific type attribute */ member
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
Dtf_mlir_translate.cc240 auto attr_id = mlir::Identifier::get("value", context); in GraphdefToSplattedMlirTranslateFunction() local
241 if (auto attr = inst.getAttrOfType<mlir::ElementsAttr>(attr_id)) { in GraphdefToSplattedMlirTranslateFunction()
259 inst.setAttr(attr_id, new_attr); in GraphdefToSplattedMlirTranslateFunction()
/external/libxml2/fuzz/
Dhtml.dict94 attr_id=" id=\"\""
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/
Dexport_utils.cc299 auto attr_id = mlir::Identifier::get("f", inst->getContext()); in GetOperationNodeDef() local
300 inst->removeAttr(attr_id); in GetOperationNodeDef()
/external/python/cpython3/Python/
D_warnings.c190 get_warnings_attr(_Py_Identifier *attr_id, int try_import) in get_warnings_attr() argument
226 (void)_PyObject_LookupAttrId(warnings_module, attr_id, &obj); in get_warnings_attr()
Dast.c2595 PyObject *attr_id = NEW_IDENTIFIER(CHILD(n, 1)); in ast_for_trailer() local
2596 if (!attr_id) in ast_for_trailer()
2598 return Attribute(left_expr, attr_id, Load, in ast_for_trailer()
/external/python/cpython2/Python/
Dast.c1666 PyObject *attr_id = NEW_IDENTIFIER(CHILD(n, 1)); in ast_for_trailer() local
1667 if (!attr_id) in ast_for_trailer()
1669 return Attribute(left_expr, attr_id, Load, in ast_for_trailer()