Home
last modified time | relevance | path

Searched refs:codes (Results 1 – 25 of 169) sorted by relevance

1234567

/openbmc/qemu/chardev/
H A Dwctablet.c124 uint8_t codes[8] = { 0xe0, 0, 0, 0, 0, 0, 0 }; in wctablet_queue_event() local
133 codes[0] = codes[0] | WC_H2(newX); in wctablet_queue_event()
134 codes[1] = codes[1] | WC_M7(newX); in wctablet_queue_event()
135 codes[2] = codes[2] | WC_L7(newX); in wctablet_queue_event()
137 codes[3] = codes[3] | WC_H2(nexY); in wctablet_queue_event()
138 codes[4] = codes[4] | WC_M7(nexY); in wctablet_queue_event()
139 codes[5] = codes[5] | WC_L7(nexY); in wctablet_queue_event()
142 codes[0] = 0xa0; in wctablet_queue_event()
145 wctablet_queue_output(tablet, codes, 7); in wctablet_queue_event()
275 uint8_t codes[7] = { in wctablet_chr_write() local
[all …]
/openbmc/openbmc/poky/meta/recipes-support/iso-codes/
H A Diso-codes_4.18.0.bb1 SUMMARY = "ISO language, territory, currency, script codes and their translations"
5 HOMEPAGE = "https://salsa.debian.org/iso-codes-team/iso-codes"
6 BUGTRACKER = "https://salsa.debian.org/iso-codes-team/iso-codes/issues"
11 SRC_URI = "git://salsa.debian.org/iso-codes-team/iso-codes.git;protocol=https;branch=main;tag=v${PV…
/openbmc/qemu/ui/
H A Dinput-keymap.c65 int *codes) in qemu_input_key_value_to_scancode() argument
74 codes[count++] = 0xe1; in qemu_input_key_value_to_scancode()
75 codes[count++] = 0x1d | v; in qemu_input_key_value_to_scancode()
76 codes[count++] = 0x45 | v; in qemu_input_key_value_to_scancode()
80 codes[count++] = SCANCODE_EMUL0; in qemu_input_key_value_to_scancode()
86 codes[count++] = keycode; in qemu_input_key_value_to_scancode()
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gimp/gimp/gimp/
H A D0001-meson.build-require-iso-codes-native.patch4 Subject: [PATCH] meson.build: require iso-codes-native
10 ERROR: parse_iso_codes: error parsing '/usr/share/xml/iso-codes/iso_639_3.xml': No such file or dir…
13 Upstream argues that iso-codes locale (.mo files) are required on the target
26 # ISO codes
28 -isocodes = dependency('iso-codes', required: false)
29 +isocodes = dependency('iso-codes', required: false, native: true)
32 isocodes_location = isocodes_prefix / 'share' / 'xml' / 'iso-codes'
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc/
H A Dlircd.conf24 begin codes
66 end codes
88 begin codes
137 end codes
156 begin codes
205 end codes
238 begin codes
313 end codes
/openbmc/u-boot/fs/jffs2/
H A Dmini_inflate.c37 stream->codes.bits = 8; in init_stream()
38 stream->codes.num_symbols = 19; in init_stream()
39 stream->codes.lengths = stream->code_lengths; in init_stream()
40 stream->codes.symbols = stream->code_symbols; in init_stream()
41 stream->codes.count = stream->code_count; in init_stream()
42 stream->codes.first = stream->code_first; in init_stream()
43 stream->codes.pos = stream->code_pos; in init_stream()
224 struct huffman_set *codes = &(stream->codes); in decompress_dynamic() local
235 init_code_tables(codes); in decompress_dynamic()
243 codes->lengths[huffman_order[i]] = length; in decompress_dynamic()
[all …]
/openbmc/bmcweb/test/redfish-core/include/utils/
H A Derror_code_test.cpp22 constexpr std::array<unsigned, 7> codes = {100, 200, 300, 400, variable
24 for (auto code : codes)
33 constexpr std::array<unsigned, 7> codes = {100, 200, 300, 400, variable
35 for (auto code : codes)
47 constexpr std::array<unsigned, 7> codes = {100, 200, 300, 400, 401}; variable
48 for (auto code : codes)
57 constexpr std::array<unsigned, 7> codes = {100, 200, 300, 400, 402}; variable
58 for (auto code : codes)
/openbmc/docs/designs/
H A Dredfish-postcodes.md11 BIOS Power-On Self-Test (POST) codes are exposed on DBUS but not currently over
12 Redfish. This describes a method to expose the BIOS POST codes over the Redfish
18 POST codes. An additional log service (PostCodes) will be added to the
117 The Redfish interface shall expose POST codes tracked on DBUS since the last BMC
122 Currently, OpenBMC exposes BIOS POST codes on DBus using the
124 POST codes for the past 100 host boot events and the current boot cycle index.
134 codes for the boot cycle.
188 cycle exposing a string with all POST codes associated with that boot cycle.
191 Consideration was also given to expose the POST codes through a OEM extension
193 discouraged. It can be revisited if DMTF adds a schema for POST codes.
H A Dboot-progress.md81 PLDM boot progress codes
95 Different OpenBMC systems could support different boot progress codes, and
117 A lot of system BIOS's provided some form of a detailed boot progress codes.
118 UEFI has POST codes, POWER has istep progress codes. If more fine grained
120 is just high level boot progress. Note that these POST/istep codes could be
126 Each system will need to document which `BootProgress` codes they support and
/openbmc/phosphor-post-code-manager/src/
H A Dpost_code.cpp177 decltype(postCodes) codes; in getPostCodes() local
178 deserializePostCodes(postCodeListPath / std::to_string(bootNum), codes); in getPostCodes()
179 std::transform(codes.begin(), codes.end(), std::back_inserter(codesVec), in getPostCodes()
194 decltype(postCodes) codes; in getPostCodesWithTimeStamp() local
195 deserializePostCodes(postCodeListPath / std::to_string(bootNum), codes); in getPostCodesWithTimeStamp()
196 return codes; in getPostCodesWithTimeStamp()
346 std::map<uint64_t, postcode_t>& codes) in deserializePostCodes() argument
354 iarchive(codes); in deserializePostCodes()
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/
H A Dxcb-util-errors_1.0.1.bb3 SUMMARY = "xcb-util-errors gives human readable names to error codes and event codes"
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-connectivity/geary/
H A Dgeary_46.0.bb20 iso-codes \
52 -Diso_639_xml=${datadir}/xml/iso-codes/iso_639.xml \
53 -Diso_3166_xml=${datadir}/xml/iso-codes/iso_3166.xml \
/openbmc/google-misc/subprojects/nemora-postd/
H A Devent_message.proto34 // Zero or more POST codes. Some codes may be missed because the host can
35 // send out codes faster than the EC handles them. While standard values are
H A DREADME.md3 Nemora-postd is a daemon running on the BMC to stream host POST codes.
33 3. On BMC, start a new nemora session which sends POST codes to the testing
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/
H A D0001-Fix-build-with-musl.patch13 __delete_old_previous_sample_data return codes and FTW_STOP,
14 FTW_CONTINUE for such return codes. Musl supports only POSIX ftw, so
19 by standard return codes {1,0} (more precisely standard defines
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-support/ibus/
H A Dibus-native.bb8 iso-codes \
13 # for allarch iso-codes
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/libxklavier/
H A Dlibxklavier_5.4.bb5 DEPENDS = "xkbcomp gtk+ iso-codes libxi libxml2"
11 RDEPENDS:${PN} += "iso-codes xkbcomp"
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-connectivity/libnma/
H A Dlibnma_1.10.6.bb16 PACKAGECONFIG[iso_codes] = "-Diso_codes=true,-Diso_codes=false,iso-codes,iso-codes"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/deqp-runner/deqp-runner/
H A D0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch4 Subject: [PATCH] Define more ioctl codes on riscv32gc-unknown-linux-gnu
6 Define ioctl codes including `FICLONE` and `FS_IOC32_GETVERSION` on
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-software/
H A Dgnome-software_48.0.bb18 iso-codes \
27 RDEPENDS:${PN} = "iso-codes"
/openbmc/u-boot/lib/zlib/
H A Dinftrees.c32 int inflate_table(codetype type, unsigned short FAR *lens, unsigned codes, in inflate_table() argument
105 for (sym = 0; sym < codes; sym++) in inflate_table()
142 for (sym = 0; sym < codes; sym++) in inflate_table()
H A Dinftrees.h54 unsigned codes, code FAR * FAR *table,
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/clang-layer/recipes-support/thin-provisioning-tools/thin-provisioning-tools/
H A D0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch4 Subject: [PATCH] Define more ioctl codes on riscv32gc-unknown-linux-gnu
6 Define ioctl codes including `FICLONE` and `FS_IOC32_GETVERSION` on
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/cbindgen/cbindgen/
H A D0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch4 Subject: [PATCH] Define more ioctl codes on riscv32gc-unknown-linux-gnu
6 Define ioctl codes including `FICLONE` and `FS_IOC32_GETVERSION` on
/openbmc/openbmc/poky/meta/recipes-devtools/rust/cargo-c/
H A D0001-Define-more-ioctl-codes-on-riscv32gc-unknown-linux-g.patch4 Subject: [PATCH] Define more ioctl codes on riscv32gc-unknown-linux-gnu
6 Define ioctl codes including `FICLONE` and `FS_IOC32_GETVERSION` on

1234567