Home
last modified time | relevance | path

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

12345678910>>...43

/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/qemu/target/hexagon/
H A Dgen_idef_parser_funcs.py42 ## A2_add represents the instruction tag. Then we have a list of TCGv
62 for tag in hex_common.tags:
64 if "A_PRIV" in hex_common.attribdict[tag]:
67 if "A_GUEST" in hex_common.attribdict[tag]:
70 if tag in {"S2_asr_r_r_sat", "S2_asl_r_r_sat"}:
73 if tag in {"S4_vrcrotate_acc", "S4_vrcrotate"}:
76 if tag in {"J2_trap0", "J2_trap1"}:
79 if tag in {"A7_croundd_ri", "A7_croundd_rr"}:
81 if tag in {
93 if tag in {"S2_interleave", "S2_deinterleave"}:
[all …]
H A Dhex_common.py26 behdict = {} # tag ->behavior
27 semdict = {} # tag -> semantics
28 attribdict = {} # tag -> attributes
79 def is_cond_jump(tag): argument
80 if tag == "J2_rte":
82 if "A_HWLOOP0_END" in attribdict[tag] or "A_HWLOOP1_END" in attribdict[tag]:
84 return re.compile(r"(if.*fBRANCH)|(if.*fJUMPR)").search(semdict[tag]) != None
87 def is_cond_call(tag): argument
88 return re.compile(r"(if.*fCALL)").search(semdict[tag]) != None
113 for tag in tags:
[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}, "
62 for tag in hex_common.tags:
64 if "A_PRIV" in hex_common.attribdict[tag]:
[all …]
H A Dgen_decodetree.py30 tag: "".join(reversed(iset.iset[tag]["enc"].replace(" ", "")))
31 for tag in iset.tags
32 if iset.iset[tag]["enc"] != "MISSING ENCODING"
84 def skip_tag(tag, class_to_decode): argument
85 enc_class = iset.iset[tag]["enc_class"]
104 for tag in sorted(encs.keys(), key=iset.tags.index):
105 if skip_tag(tag, class_to_decode):
108 enc = encs[tag]
109 enc_str = "".join(reversed(encs[tag]))
111 f"## {tag}:\t{enc_str}\n"
[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/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.hpp62 template <typename Tag, typename Instance>
64 requires(const Instance& i) { i.get_property(Tag{}); };
67 template <typename Tag, typename Instance>
70 i.get_property(Tag{}, m);
74 template <typename Tag, typename Instance>
75 concept has_get_property = has_get_property_nomsg<Tag, Instance> ||
76 has_get_property_msg<Tag, Instance>;
79 template <typename Tag, typename Instance>
81 !has_get_property<Tag, Instance> &&
83 requires(Instance& i) { i.get_property(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.
22 # Allowed MAX characters length for asset tag name is 63.
30 Set Asset Tag With Invalid String Length
31 [Documentation] Verify error while setting invalid asset tag via IPMI.
34 # Any string more than 63 character is invalid for asset tag.
42 Set Asset Tag With IPMI And Verify With Redfish
43 [Documentation] Set valid asset tag via IPMI and verify using Redfish.
53 Set Asset Tag With Valid String Length Via DCMI Command
[all …]
/openbmc/slpd-lite/test/
H A Dtest-suite.py14 print("Invalid Lang Tag Length, large payload")
23 + b"\xff" * 2 # Language Tag Length
24 + b"A" * 65000 # Language Tag
30 print("Large Lang Tag Length, large payload")
39 + b"\xfd\xe8" # Language Tag Length
40 + b"A" * 65000 # Language Tag
46 print("Invalid Lang Tag Length, small payload")
55 + b"\xff" * 2 # Language Tag Length
56 + b"A" * 200 # Language Tag
62 print("Large Lang Tag Length, small payload")
[all …]
/openbmc/qemu/target/arm/tcg/
H A Dmte_helper.h18 * @ptr: the virtual address for which to look up tag memory
21 * @tag_access: the access to use for the tag memory
25 * Our tag memory is formatted as a sequence of little-endian nibbles.
27 * tags, with the tag at [3:0] for the lower addr and the tag at [7:4]
31 * a pointer to the corresponding tag byte.
33 * If there is no tag storage corresponding to @ptr, return NULL.
52 * load_tag1 - Load 1 tag (nibble) from byte
54 * @mem: The tag address (packed, 2 tags in byte)
59 * store_tag1 - Store 1 tag (nibble) into byte
61 * @mem: The tag address (packed, 2 tags in byte)
[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 …]
/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 Dcss.py12 BeautifulSoup object, or on the Tag you want to use as the
15 The main advantage of doing this is that the tag to be selected
17 calls, since it's already scoped to a tag.
20 def __init__(self, tag, api=soupsieve): argument
25 the Tag you want to use as the starting point for your CSS
28 :param tag: All CSS selectors will use this as their starting
39 self.tag = tag
59 ns = self.tag._namespaces
98 """Perform a CSS selection operation on the current Tag and return the
118 :return: A Tag, or None if the selector has no match.
[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/hw/misc/
H A Dmips_itu.c78 MIPSITUState *tag = (MIPSITUState *)opaque; in itc_tag_read() local
86 return tag->ITCAddressMap[index]; in itc_tag_read()
89 static void itc_reconfigure(MIPSITUState *tag) in itc_reconfigure() argument
91 uint64_t *am = &tag->ITCAddressMap[0]; in itc_reconfigure()
92 MemoryRegion *mr = &tag->storage_io; in itc_reconfigure()
109 MIPSITUState *tag = (MIPSITUState *)opaque; in itc_tag_write() local
110 uint64_t *am = &tag->ITCAddressMap[0]; in itc_tag_write()
129 itc_reconfigure(tag); in itc_tag_write()
195 if (c->tag.FIFO) { in view_bypass_read()
204 if (c->tag.FIFO && (c->tag.FIFOPtr > 0)) { in view_bypass_write()
[all …]
/openbmc/qemu/hw/scsi/
H A Dtrace-events4 scsi_req_alloc(int target, int lun, int tag) "target %d lun %d tag %d"
5 scsi_req_cancel(int target, int lun, int tag) "target %d lun %d tag %d"
6 scsi_req_data(int target, int lun, int tag, int len) "target %d lun %d tag %d len %d"
7 scsi_req_data_canceled(int target, int lun, int tag, int len) "target %d lun %d tag %d len %d"
8 scsi_req_dequeue(int target, int lun, int tag) "target %d lun %d tag %d"
11 scsi_req_continue(int target, int lun, int tag) "target %d lun %d tag %d"
12 scsi_req_continue_canceled(int target, int lun, int tag) "target %d lun %d tag %d"
13 scsi_req_parsed(int target, int lun, int tag, int cmd, int mode, int xfer) "target %d lun %d tag %d…
14 scsi_req_parsed_lba(int target, int lun, int tag, int cmd, uint64_t lba) "target %d lun %d tag %d c…
15 scsi_req_parse_bad(int target, int lun, int tag, int cmd) "target %d lun %d tag %d command %d"
[all …]
/openbmc/openbmc/poky/bitbake/lib/bs4/builder/
H A D_htmlparser.py50 tag includes the same attribute more than once. Accepted
64 # without an explicit closing tag. If we encounter a closing tag
91 """Handle an incoming empty-element tag.
93 This is only called when the markup looks like <tag/>.
95 :param name: Name of the tag.
96 :param attrs: Dictionary of the tag's attributes.
98 # is_startend() tells handle_starttag not to close the tag
99 # just because its name matches a known empty-element tag. We
100 # know that this is an empty-element tag and we want to call
102 tag = self.handle_starttag(name, attrs, handle_empty_element=False)
[all …]
/openbmc/qemu/tests/tcg/aarch64/system/
H A Dmte.S12 #define tagged_addr x1 /* 'addr' ptr with a random-generated tag added. */
52 * case of a tag mismatch, i.e., when the logical tag in 'tagged_addr'
53 * is different from the allocation tag related to 'addr' address.
56 * TCF[41:40] = 0b01 => Tag Check Faults cause a synchronous exception
77 * Set GCR for random tag generation. 0xA5 is just a random value to set
78 * GCR != 0 so the tag generated by 'irg' insn. is not zero, which is
79 * more interesting for the tests than when tag is zero.
85 * Generate a logical tag, add it to 'addr' address and put it into
91 * Store the generated tag to memory region pointed to by 'addr', i.e.
92 * set the allocation tag for granule at 'addr'. The tag is extracted
[all …]
/openbmc/openbmc/meta-facebook/meta-harma/recipes-phosphor/console/obmc-console/
H A Dplat-80-obmc-console-uart.rules1 SUBSYSTEM=="tty", ATTRS{iomem_base}=="0x1E78F000", ENV{SYSTEMD_WANTS}="obmc-console@ttyS2", TAG+="s…
2 SUBSYSTEM=="tty", KERNEL=="ttyUSB0", ENV{SYSTEMD_WANTS}="obmc-console@ttyUSB0", TAG+="systemd"
3 SUBSYSTEM=="tty", KERNEL=="ttyUSB1", ENV{SYSTEMD_WANTS}="obmc-console@ttyUSB1", TAG+="systemd"
4 SUBSYSTEM=="tty", KERNEL=="ttyUSB2", ENV{SYSTEMD_WANTS}="obmc-console@ttyUSB2", TAG+="systemd"
5 SUBSYSTEM=="tty", KERNEL=="ttyUSB3", ENV{SYSTEMD_WANTS}="obmc-console@ttyUSB3", TAG+="systemd"
6 SUBSYSTEM=="tty", KERNEL=="ttyUSB4", ENV{SYSTEMD_WANTS}="obmc-console@ttyUSB4", TAG+="systemd"
7 SUBSYSTEM=="tty", KERNEL=="ttyUSB5", ENV{SYSTEMD_WANTS}="obmc-console@ttyUSB5", TAG+="systemd"
8 SUBSYSTEM=="tty", KERNEL=="ttyUSB6", ENV{SYSTEMD_WANTS}="obmc-console@ttyUSB6", TAG+="systemd"

12345678910>>...43