Home
last modified time | relevance | path

Searched full:be (Results 1 – 25 of 9493) sorted by relevance

12345678910>>...380

/openbmc/linux/fs/nfs/blocklayout/
Dextent_tree.c
/openbmc/linux/arch/arm64/lib/
Dcrc32.S
/openbmc/linux/tools/perf/util/
Dgenelf_debug.c
/openbmc/qemu/backends/
H A Diommufd.c26 static const char *iommufd_fd_name(IOMMUFDBackend *be) in iommufd_fd_name() argument
28 return object_get_canonical_path_component(OBJECT(be)); in iommufd_fd_name()
33 IOMMUFDBackend *be = IOMMUFD_BACKEND(obj); in iommufd_backend_init() local
35 be->fd = -1; in iommufd_backend_init()
36 be->users = 0; in iommufd_backend_init()
37 be->owned = true; in iommufd_backend_init()
42 IOMMUFDBackend *be = IOMMUFD_BACKEND(obj); in iommufd_backend_finalize() local
44 if (be->owned) { in iommufd_backend_finalize()
45 close(be->fd); in iommufd_backend_finalize()
46 be->fd = -1; in iommufd_backend_finalize()
[all …]
/openbmc/u-boot/doc/
H A DREADME.POST17 Also, standalone POST tests shall be supported.
28 2) The results of tests shall be saved so that it will be possible to
31 3) The following POST tests shall be developed for MPC823E-based
45 4) The LWMON board shall be used for reference.
50 The whole project can be divided into two independent tasks:
56 A new optional module will be added to U-Boot, which will run POST
61 The list of available POST tests will be configured at U-Boot build
63 tests. All POST tests will be divided into the following groups:
73 time and can be run on the regular basis (e.g. CPU test)
78 and cannot be run regularly (e.g. strong memory test, I2C test)
[all …]
/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/
H A Dendian-ness_handling.patch18 +int be;
19 +static uint16_t read16(uint16_t x, int be)
21 + if (be)
26 +static uint32_t read32(uint32_t x, int be)
28 + if (be)
33 +static uint64_t read64(uint64_t x, int be)
35 + if (be)
48 + be = (elf_header->e_ident[EI_DATA] == ELFDATA2MSB);
50 + if (read16(elf_header->e_type, be) != ET_DYN)
54 + read16(elf_header->e_type, be));
[all …]
/openbmc/qemu/tests/functional/
H A Dtest_x86_cpu_model_versions.py15 # This library is distributed in the hope that it will be useful,
42 # aliases must not be static
49 "Haswell-noTSX shouldn't be versioned")
51 "Broadwell-noTSX shouldn't be versioned")
53 "Nehalem-IBRS shouldn't be versioned")
55 "Westmere-IBRS shouldn't be versioned")
57 "SandyBridge-IBRS shouldn't be versioned")
59 "IvyBridge-IBRS shouldn't be versioned")
61 "Haswell-noTSX-IBRS shouldn't be versioned")
63 "Haswell-IBRS shouldn't be versioned")
[all …]
/openbmc/linux/Documentation/security/keys/
Dcore.rst
/openbmc/bmcweb/
H A DDEVELOPING.md7 As OpenBMC is intended to be deployed on an embedded system, care should be
13 - Application startup time should be less than 1 second on target hardware
18 Care should be taken to ensure that all code is written to be asynchronous in
21 should be avoided if possible, and instead use async tasks within boost::asio.
25 Secure coding practices should be followed in all places in the webserver
29 - All buffer boundaries must be checked before indexing or using values
30 - All pointers and iterators must be checked for null before dereferencing
31 - All input from outside the application is considered untrusted, and should be
35 - Where applicable, noexcept methods should be preferred to methods that use
37 - Explicitly bounded types should be preferred over implicitly bounded types
[all …]
/openbmc/qemu/chardev/
H A Dchar-fe.c13 * The above copyright notice and this permission notice shall be included in
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33 int qemu_chr_fe_write(CharBackend *be, const uint8_t *buf, int len) in qemu_chr_fe_write() argument
35 Chardev *s = be->chr; in qemu_chr_fe_write()
44 int qemu_chr_fe_write_all(CharBackend *be, const uint8_t *buf, int len) in qemu_chr_fe_write_all() argument
46 Chardev *s = be->chr; in qemu_chr_fe_write_all()
55 int qemu_chr_fe_read_all(CharBackend *be, uint8_t *buf, int len) in qemu_chr_fe_read_all() argument
57 Chardev *s = be->chr; in qemu_chr_fe_read_all()
98 int qemu_chr_fe_ioctl(CharBackend *be, int cmd, void *arg) in qemu_chr_fe_ioctl() argument
100 Chardev *s = be->chr; in qemu_chr_fe_ioctl()
[all …]
/openbmc/qemu/host/include/ppc/host/crypto/
H A Daes-round.h24 /* Bytes in memory are host-endian; bytes in register are @be. */
25 static inline AESStateVec aes_accel_ld(const AESState *p, bool be) in aes_accel_ld() argument
29 if (be) { in aes_accel_ld()
50 static void aes_accel_st(AESState *p, AESStateVec r, bool be) in aes_accel_st() argument
52 if (be) { in aes_accel_st()
97 aesenc_MC_accel(AESState *ret, const AESState *st, bool be) in aesenc_MC_accel() argument
101 t = aes_accel_ld(st, be); in aesenc_MC_accel()
104 aes_accel_st(ret, t, be); in aesenc_MC_accel()
109 const AESState *rk, bool be) in aesenc_SB_SR_AK_accel() argument
113 t = aes_accel_ld(st, be); in aesenc_SB_SR_AK_accel()
[all …]
/openbmc/linux/Documentation/admin-guide/
Dmd.rst
/openbmc/linux/Documentation/networking/
Drxrpc.rst
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/
H A Dbbcontroller.py23 def __init__(self, be): argument
25 self.connection = bb.server.xmlrpcclient._create_server(be.bbaddress,
26 int(be.bbport))[0]
60 This is used to retrieve, for example, the currently running BE from inside
61 the toaster UI, or find a new BE to start a new build in it.
63 The return object MUST always be a BuildEnvironmentController.
68 be = BuildEnvironment.objects.filter(Q(**kwargs))[0]
69 if be.betype == BuildEnvironment.TYPE_LOCAL:
70 return LocalhostBEController(be)
72 raise Exception("FIXME: Implement BEC for type %s" % str(be.betype))
[all …]
/openbmc/linux/drivers/net/xen-netback/
Dxenbus.c
/openbmc/qemu/docs/system/
H A Dgeneric-loader.rst15 The loader device allows memory values to be set from the command line. This
16 can be done by following the syntax below::
19 [,data-be=<data-be>][,cpu-num=<cpu-num>]
25 The value to be written to the address. The maximum size of the data
29 The length of the data in bytes. This argument must be included if
32 ``<data-be>``
33 Set to true if the data to be stored on the guest should be written
37 The number of the CPU's address space where the data should be
42 will be parsed as decimal. To use hex values the user should prefix the number
52 The loader device allows the CPU's PC to be set from the command line. This
[all …]
/openbmc/linux/Documentation/driver-api/
Dvme.rst
/openbmc/docs/designs/
H A Dguard-on-bmc.md6 the system downtime can be prevented by isolating the faulty components. This
8 The defective components can be kept isolated until a replacement. Most of the
9 actions required to isolate the parts will be dependant on the architecture and
31 them out of service. The list of faulty but guarded components can be stored in
33 record or manage the record will be decided by the respective component. Some of
35 the fans can be managed by the fan control application, or the guard on the
36 power components can be managed by the power management application.
38 These records will be created when an error is encountered on an element that
39 can be isolated. The decision to create a record is based on the type of error,
42 is named as Guard Record. The guard record will be deleted after a repair action
[all …]
/openbmc/linux/drivers/media/usb/gspca/
DKconfig
/openbmc/pldm/tools/fw-update/
H A DREADME.md25 - Provide name for the PLDM FW update package, output will be written to a file
28 - The file path of at least one image file must be provided
29 - In case there are more than one images, they should be specified in the _same
35 Some fields corresponding to the PLDM firmware update package must be specified
38 PLDM firmware update package has to be generated - one or more platform specific
39 metadata JSON files can be reused. The key names used in the metadata JSON
50 - whether those fields need to be specified in the JSON, or are generated by the
58 - PackageHeaderIdentifier: Supported, must be specified in metadata file
59 - PackageHeaderFormatRevision: Supported, must be specified in metadata file
70 - PackageVersionString: Supported, must be specified in metadata file
[all …]
/openbmc/linux/tools/testing/selftests/tc-testing/creating-testcases/
DAddingTestCases.txt
/openbmc/linux/drivers/net/ieee802154/
DKconfig
/openbmc/linux/Documentation/devicetree/bindings/edac/
Dsocfpga-eccmgr.txt
/openbmc/openbmc/poky/meta/recipes-connectivity/wpa-supplicant/wpa-supplicant/
H A Dwpa_supplicant.conf9 # NOTE! This file may contain password information and should probably be made
14 # to be changed. This can happen if wpa_supplicant is run in the background.
18 # This option can be used to allow wpa_supplicant to overwrite configuration
21 # wpa_cli/wpa_gui to be able to store the configuration changes permanently.
36 # will be created for UNIX domain sockets for listening to requests from
38 # The socket file will be named based on the interface name, so multiple
39 # wpa_supplicant processes can be run at the same time if more than one
44 # Access control for the control interface can be configured by setting the
47 # configuration and open raw sockets) and still allow GUI/CLI components to be
48 # run as non-root users. However, since the control interface can be used to
[all …]
/openbmc/linux/Documentation/crypto/
Dasymmetric-keys.rst

12345678910>>...380