Home
last modified time | relevance | path

Searched full:tag (Results 1 – 25 of 2910) sorted by relevance

12345678910>>...117

/openbmc/qemu/scripts/
H A Danalyse-9p-simpletrace.py84 def v9fs_rerror(self, tag, id, err): argument
85 … print("RERROR (tag =", tag, ", id =", symbol_9p[id], ", err = \"", os.strerror(err), "\")")
87 def v9fs_version(self, tag, id, msize, version): argument
88 print("TVERSION (tag =", tag, ", msize =", msize, ", version =", version, ")")
90 def v9fs_version_return(self, tag, id, msize, version): argument
91 print("RVERSION (tag =", tag, ", msize =", msize, ", version =", version, ")")
93 def v9fs_attach(self, tag, id, fid, afid, uname, aname): argument
94 …print("TATTACH (tag =", tag, ", fid =", fid, ", afid =", afid, ", uname =", uname, ", aname =", an…
96 def v9fs_attach_return(self, tag, id, type, version, path): argument
97 …print("RATTACH (tag =", tag, ", qid={type =", type, ", version =", version, ", path =", path, "})")
[all …]
/openbmc/qemu/hw/9pfs/
H A Dtrace-events4 v9fs_rcancel(uint16_t tag, uint8_t id) "tag %d id %d"
5 v9fs_rerror(uint16_t tag, uint8_t id, int err) "tag %d id %d err %d"
6 v9fs_version(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d version…
7 v9fs_version_return(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d …
8 v9fs_attach(uint16_t tag, uint8_t id, int32_t fid, int32_t afid, char* uname, char* aname) "tag %u …
9 v9fs_attach_return(uint16_t tag, uint8_t id, uint8_t type, uint32_t version, uint64_t path) "tag %u…
10 v9fs_stat(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
11 v9fs_stat_return(uint16_t tag, uint8_t id, int32_t mode, int32_t atime, int32_t mtime, int64_t leng…
12 v9fs_getattr(uint16_t tag, uint8_t id, int32_t fid, uint64_t request_mask) "tag %d id %d fid %d req…
13 v9fs_getattr_return(uint16_t tag, uint8_t id, uint64_t result_mask, uint32_t mode, uint32_t uid, ui…
[all …]
/openbmc/linux/arch/arm/kernel/
H A Datags_compat.c13 * to convert to the new struct tag way.
81 static struct tag * __init memtag(struct tag *tag, unsigned long start, unsigned long size) in memtag() argument
83 tag = tag_next(tag); in memtag()
84 tag->hdr.tag = ATAG_MEM; in memtag()
85 tag->hdr.size = tag_size(tag_mem32); in memtag()
86 tag->u.mem.size = size; in memtag()
87 tag->u.mem.start = start; in memtag()
89 return tag; in memtag()
94 struct tag *tag = taglist; in build_tag_list() local
119 tag->hdr.tag = ATAG_CORE; in build_tag_list()
[all …]
H A Datags_parse.c3 * Tag parsing.
11 * of variable-sized tags to the kernel. The first tag must be a ATAG_CORE
12 * tag for the list to be recognised (to distinguish the tagged list from
13 * a param_struct). The list is terminated with a zero-length tag (this tag
53 static int __init parse_tag_core(const struct tag *tag) in parse_tag_core() argument
55 if (tag->hdr.size > 2) { in parse_tag_core()
56 if ((tag->u.core.flags & 1) == 0) in parse_tag_core()
58 ROOT_DEV = old_decode_dev(tag->u.core.rootdev); in parse_tag_core()
65 static int __init parse_tag_mem32(const struct tag *tag) in parse_tag_mem32() argument
67 return arm_add_memory(tag->u.mem.start, tag->u.mem.size); in parse_tag_mem32()
[all …]
/openbmc/entity-manager/
H A DDoxyfile7 # front of the TAG it is preceding.
11 # TAG = value [value, ...]
13 # TAG += value [value, ...]
20 # This tag specifies the encoding used for all characters in the configuration
22 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
49 # With the PROJECT_LOGO tag one can specify a logo or an icon that is included
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
[all …]
/openbmc/qemu/target/hexagon/
H A Dhex_common.py25 behdict = {} # tag ->behavior
26 semdict = {} # tag -> semantics
27 attribdict = {} # tag -> attributes
78 def is_cond_jump(tag): argument
79 if tag == "J2_rte":
81 if "A_HWLOOP0_END" in attribdict[tag] or "A_HWLOOP1_END" in attribdict[tag]:
83 return re.compile(r"(if.*fBRANCH)|(if.*fJUMPR)").search(semdict[tag]) != None
86 def is_cond_call(tag): argument
87 return re.compile(r"(if.*fCALL)").search(semdict[tag]) != None
112 for tag in tags:
[all …]
H A Dgen_idef_parser_funcs.py41 ## A2_add represents the instruction tag. Then we have a list of TCGv
55 for tag in hex_common.tags:
57 if "A_PRIV" in hex_common.attribdict[tag]:
60 if "A_GUEST" in hex_common.attribdict[tag]:
63 if tag in {"S2_asr_r_r_sat", "S2_asl_r_r_sat"}:
66 if tag in {"S4_vrcrotate_acc", "S4_vrcrotate"}:
69 if tag in {"J2_trap0", "J2_trap1"}:
72 if tag in {"A7_croundd_ri", "A7_croundd_rr"}:
74 if tag in {
86 if tag in {"S2_interleave", "S2_deinterleave"}:
[all …]
H A Dgen_tcg_funcs.py41 ## where <GEN> depends on hex_common.skip_qemu_helper(tag)
42 ## if hex_common.skip_qemu_helper(tag) is True
44 ## if hex_common.skip_qemu_helper(tag) is False
47 def gen_tcg_func(f, tag, regs, imms): argument
48 f.write(f"static void generate_{tag}(DisasContext *ctx)\n")
53 if hex_common.need_ea(tag):
59 reg = hex_common.get_register(tag, regtype, regid)
60 reg.decl_tcg(f, tag, i)
66 if hex_common.is_idef_parser_enabled(tag):
70 reg = hex_common.get_register(tag, regtype, regid)
[all …]
H A Dgen_helper_funcs.py37 def gen_helper_function(f, tag, tagregs, tagimms): argument
38 regs = tagregs[tag]
39 imms = tagimms[tag]
41 ret_type = hex_common.helper_ret_type(tag, regs).func_arg
44 for arg in hex_common.helper_args(tag, regs, imms):
48 f.write(f"{ret_type} HELPER({tag})({arguments})\n")
50 if hex_common.need_ea(tag):
55 if not hex_common.is_predicated(tag):
57 reg = hex_common.get_register(tag, regtype, regid)
65 reg = hex_common.get_register(tag, regtype, regid)
[all …]
H A Dgen_helper_protos.py31 def gen_helper_prototype(f, tag, tagregs, tagimms): argument
32 regs = tagregs[tag]
33 imms = tagimms[tag]
36 ret_type = hex_common.helper_ret_type(tag, regs).proto_arg
39 for arg in hex_common.helper_args(tag, regs, imms):
47 if hex_common.need_env(tag) or hex_common.is_hvx_insn(tag):
48 f.write(f"DEF_HELPER_{len(declared) - 1}({tag}, {arguments})\n")
50 f.write(f"DEF_HELPER_FLAGS_{len(declared) - 1}({tag}, "
61 for tag in hex_common.tags:
63 if "A_PRIV" in hex_common.attribdict[tag]:
[all …]
/openbmc/linux/arch/mips/include/asm/octeon/
H A Dcvmx-pow.h38 * - Requesting a POW operation with an active tag switch in
40 * - Waiting for a tag switch to complete for an excessively
43 * - Illegal tag switches from NULL_NULL.
44 * - Illegal tag switches from NULL.
65 /* Tag ordering is maintained */
67 /* Tag ordering is maintained, and at most one PP has the tag */
70 * The work queue entry from the order - NEVER tag switch from
74 /* A tag switch to NULL, and there is no space reserved in POW
75 * - NEVER tag switch to NULL_NULL
76 * - NEVER tag switch from NULL_NULL
[all …]
/openbmc/linux/net/dsa/
H A DKconfig22 tristate "No-op tag driver"
24 Say Y or M if you want to enable support for switches which don't tag
28 tristate "Tag driver for Atheros AR9331 SoC with built-in switch"
38 tristate "Tag driver for Broadcom switches using in-frame headers"
42 Broadcom switches which place the tag after the MAC source address.
45 tristate "Tag driver for Broadcom legacy switches using in-frame headers"
49 Broadcom legacy switches which place the tag after the MAC source
53 tristate "Tag driver for Broadcom switches using prepended headers"
57 Broadcom switches which places the tag before the Ethernet header
61 tristate "Tag driver for Hirschmann Hellcreek TSN switches"
[all …]
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/vlc/vlc/
H A Dtaglib-2.patch18 @@ -465,7 +465,7 @@ static void ReadMetaFromASF( ASF::Tag* t
19 static void ReadMetaFromBasicTag(const Tag* tag, vlc_meta_t *dest)
22 - if( !tag->accessor().isNull() && !tag->accessor().isEmpty() ) \
23 + if( !tag->accessor().isEmpty() ) \
24 vlc_meta_Set##meta( dest, tag->accessor().toCString(true) )
26 if( tag->accessor() ) \
27 @@ -806,15 +806,15 @@ static void ReadMetaFromMP4( MP4::Tag* t
31 - if( tag->itemListMap().contains(keyName) ) \
32 + if( tag->itemMap().contains(keyName) ) \
34 - list = tag->itemListMap()[keyName]; \
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway/
H A Dmodbus.json18 "tag": "string_read", string
25 "tag": "bits_read", string
32 "tag": "8int_read", string
39 "tag": "16int_read", string
46 "tag": "32int_read_divider", string
54 "tag": "8int_read_multiplier", string
62 "tag": "32int_read", string
69 "tag": "64int_read", string
78 "tag": "8uint_read", string
85 "tag": "16uint_read", string
[all …]
/openbmc/qemu/tests/tcg/aarch64/gdbstub/
H A Dtest-mte.py3 # Test GDB memory-tag commands that exercise the stubs for the qIsAddressTagged,
8 # The test consists in breaking just after a tag is set in a specific memory
54 # Test if we can check correctly that the allocation tag for the address
55 # in {ta} matches the logical tag in {ta}.
56 co = gdb.execute(f"memory-tag check {ta}", False, True)
63 # Test allocation tag 'set and print' commands. Commands on logical
66 # Set the allocation tag for the first granule (16 bytes) of
68 gdb.execute(f"memory-tag set-allocation-tag {ta} 1 04", False, True)
70 # Then set the allocation tag for the second granule to a known
71 # value, i.e. 0x06. This tests that contiguous tag granules are
[all …]
/openbmc/sdbusplus/include/sdbusplus/async/
H A Dserver.hpp55 template <typename Tag, typename Instance>
57 requires(const Instance& i) { i.get_property(Tag{}); };
60 template <typename Tag, typename Instance>
63 i.get_property(Tag{}, m);
67 template <typename Tag, typename Instance>
68 concept has_get_property = has_get_property_nomsg<Tag, Instance> ||
69 has_get_property_msg<Tag, Instance>;
72 template <typename Tag, typename Instance>
74 !has_get_property<Tag, Instance> &&
76 requires(Instance& i) { i.get_property(Tag{}); } ||
[all …]
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/steering/
H A Ddr_ste_v0.c738 u8 *tag) in dr_ste_v0_build_eth_l2_src_dst_tag() argument
742 DR_STE_SET_TAG(eth_l2_src_dst, tag, dmac_47_16, spec, dmac_47_16); in dr_ste_v0_build_eth_l2_src_dst_tag()
743 DR_STE_SET_TAG(eth_l2_src_dst, tag, dmac_15_0, spec, dmac_15_0); in dr_ste_v0_build_eth_l2_src_dst_tag()
746 MLX5_SET(ste_eth_l2_src_dst, tag, smac_47_32, in dr_ste_v0_build_eth_l2_src_dst_tag()
748 MLX5_SET(ste_eth_l2_src_dst, tag, smac_31_0, in dr_ste_v0_build_eth_l2_src_dst_tag()
756 MLX5_SET(ste_eth_l2_src_dst, tag, l3_type, STE_IPV4); in dr_ste_v0_build_eth_l2_src_dst_tag()
759 MLX5_SET(ste_eth_l2_src_dst, tag, l3_type, STE_IPV6); in dr_ste_v0_build_eth_l2_src_dst_tag()
766 DR_STE_SET_TAG(eth_l2_src_dst, tag, first_vlan_id, spec, first_vid); in dr_ste_v0_build_eth_l2_src_dst_tag()
767 DR_STE_SET_TAG(eth_l2_src_dst, tag, first_cfi, spec, first_cfi); in dr_ste_v0_build_eth_l2_src_dst_tag()
768 DR_STE_SET_TAG(eth_l2_src_dst, tag, first_priority, spec, first_prio); in dr_ste_v0_build_eth_l2_src_dst_tag()
[all …]
H A Ddr_ste_v1.c353 u8 *tag = hw_ste_p + DR_STE_SIZE_CTRL; in dr_ste_v1_prepare_for_postsend() local
354 u8 *mask = tag + DR_STE_SIZE_TAG; in dr_ste_v1_prepare_for_postsend()
362 /* Backup tag */ in dr_ste_v1_prepare_for_postsend()
363 memcpy(tmp_tag, tag, DR_STE_SIZE_TAG); in dr_ste_v1_prepare_for_postsend()
365 /* Swap mask and tag both are the same size */ in dr_ste_v1_prepare_for_postsend()
366 memcpy(tag, mask, DR_STE_SIZE_MASK); in dr_ste_v1_prepare_for_postsend()
586 * which doesn't have mask, and shouldn't have mask/tag swapped. in dr_ste_v1_set_match_range_pkt_len()
592 * To allow mask/tag swapping, writing the min/max_2 to min/max_0. in dr_ste_v1_set_match_range_pkt_len()
1128 u8 *tag) in dr_ste_v1_build_eth_l2_src_dst_tag() argument
1132 DR_STE_SET_TAG(eth_l2_src_dst_v1, tag, dmac_47_16, spec, dmac_47_16); in dr_ste_v1_build_eth_l2_src_dst_tag()
[all …]
/openbmc/openbmc-test-automation/ipmi/dcmi/
H A Dtest_dcmi_asset_tag.robot3 Documentation Module to test dcmi asset tag functionality.
18 Set Asset Tag With Valid String Length
19 [Documentation] Set asset tag with valid string length and verify.
21 # Allowed MAX characters length for asset tag name is 63.
29 Set Asset Tag With Invalid String Length
30 [Documentation] Verify error while setting invalid asset tag via IPMI.
32 # Any string more than 63 character is invalid for asset tag.
40 Set Asset Tag With IPMI And Verify With Redfish
41 [Documentation] Set valid asset tag via IPMI and verify using Redfish.
51 Set Asset Tag With Valid String Length Via DCMI Command
[all …]
/openbmc/linux/tools/testing/selftests/arm64/mte/
H A Dmte_helper.S19 * mte_insert_random_tag: Insert random tag and might be same as the source tag if
22 * x0 - source pointer with a tag/no-tag
24 * x0 - pointer with random tag
32 * mte_insert_new_tag: Insert new tag and different from the source tag if
35 * x0 - source pointer with a tag/no-tag
37 * x0 - pointer with random tag
46 * mte_get_tag_address: Get the tag from given address.
50 * x0 - pointer with appended tag
58 * mte_set_tag_address_range: Set the tag range from the given address
60 * x0 - source pointer with tag data
[all …]
/openbmc/linux/drivers/net/ethernet/netronome/nfp/
H A Dccm.c38 static void nfp_ccm_free_tag(struct nfp_ccm *ccm, u16 tag) in nfp_ccm_free_tag() argument
40 WARN_ON(!__test_and_clear_bit(tag, ccm->tag_allocator)); in nfp_ccm_free_tag()
47 static struct sk_buff *__nfp_ccm_reply(struct nfp_ccm *ccm, u16 tag) in __nfp_ccm_reply() argument
54 if (msg_tag == tag) { in __nfp_ccm_reply()
55 nfp_ccm_free_tag(ccm, tag); in __nfp_ccm_reply()
65 nfp_ccm_reply(struct nfp_ccm *ccm, struct nfp_app *app, u16 tag) in nfp_ccm_reply() argument
70 skb = __nfp_ccm_reply(ccm, tag); in nfp_ccm_reply()
77 nfp_ccm_reply_drop_tag(struct nfp_ccm *ccm, struct nfp_app *app, u16 tag) in nfp_ccm_reply_drop_tag() argument
82 skb = __nfp_ccm_reply(ccm, tag); in nfp_ccm_reply_drop_tag()
84 nfp_ccm_free_tag(ccm, tag); in nfp_ccm_reply_drop_tag()
[all …]
/openbmc/linux/Documentation/netlabel/
H A Ddraft-ietf-cipso-ipsecurity-01.txt142 3.4 Tag Types
146 information relevant to the data in the IP packet. Each tag begins with
147 a tag type identifier followed by the length of the tag and ends with the
148 actual security information to be passed. All multi-octet fields in a tag
151 all tags, as well as fields within a tag, are not aligned on any particular
152 octet boundary. The tag types defined in this document contain alignment
156 CIPSO tag types 0 through 127 are reserved for defining standard tag
157 formats. Their definitions will be published in RFCs. Tag types whose
159 only be meaningful in certain Domains of Interpretation. For these tag
160 types, implementations will require the DOI identifier as well as the tag
[all …]
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A D__init__.py59 Tag,
76 class BeautifulSoup(Tag):
80 PageElement or Tag.
99 able to build a tree using 'start tag' events, 'end tag' events,
102 If you encounter an empty-element tag (aka a self-closing tag,
103 like HTML's <br> tag), call handle_starttag and then
107 # Since BeautifulSoup subclasses Tag, it's possible to treat it as
108 # a Tag with a .name. This name makes it clear the BeautifulSoup
109 # object isn't a real markup tag.
158 classes like Tag and NavigableString, to other classes you'd
[all …]
H A Delement.py47 # <meta> tag that mentions an encoding, the encoding will be given as
95 """A generic stand-in for the value of a meta tag's 'charset' attribute.
108 value of a meta tag's 'charset' is the name of the encoding.
116 """A generic stand-in for the value of a meta tag's 'content' attribute.
148 NavigableString, Tag, etc. are all subclasses of PageElement.
260 This is implemented differently in Tag and NavigableString.
311 raise ValueError("Cannot replace a Tag with its parent.")
398 while isinstance(last_child, Tag) and last_child.contents:
416 raise ValueError("Cannot insert None into a tag.")
418 raise ValueError("Cannot insert a tag into itself.")
[all …]
/openbmc/qemu/crypto/
H A Dder.c26 uint8_t tag; member
233 uint8_t tag; in qcrypto_der_decode_tlv() local
240 tag = qcrypto_der_cut_byte(data, dlen); in qcrypto_der_decode_tlv()
241 if (tag != expected_tag) { in qcrypto_der_decode_tlv()
242 error_setg(errp, "Unexpected tag: expected: %u, actual: %u", in qcrypto_der_decode_tlv()
243 expected_tag, tag); in qcrypto_der_decode_tlv()
262 const uint8_t tag = QCRYPTO_DER_TAG(QCRYPTO_DER_TAG_CLASS_UNIV, in qcrypto_der_decode_int() local
265 return qcrypto_der_decode_tlv(tag, data, dlen, cb, ctx, errp); in qcrypto_der_decode_int()
271 uint8_t tag = QCRYPTO_DER_TAG(QCRYPTO_DER_TAG_CLASS_UNIV, in qcrypto_der_decode_seq() local
274 return qcrypto_der_decode_tlv(tag, data, dlen, cb, ctx, errp); in qcrypto_der_decode_seq()
[all …]

12345678910>>...117