Home
last modified time | relevance | path

Searched full:attributes (Results 1 – 25 of 1465) sorted by relevance

12345678910>>...59

/openbmc/u-boot/env/
H A Dattr.c24 * attributes = [^,:\s]*
25 * entry = name[:attributes]
29 int (*callback)(const char *name, const char *attributes, void *priv), in env_attr_walk() argument
33 char *name, *attributes; in env_attr_walk() local
82 attributes = strchr(entry_cpy, ENV_ATTR_SEP); in env_attr_walk()
84 if (attributes != NULL) { in env_attr_walk()
86 *attributes++ = '\0'; in env_attr_walk()
87 /* remove white-space from attributes */ in env_attr_walk()
88 attributes = strim(attributes); in env_attr_walk()
97 retval = callback(name, attributes, priv); in env_attr_walk()
[all …]
/openbmc/linux/net/netlabel/
Dnetlabel_mgmt.h
Dnetlabel_unlabeled.h
Dnetlabel_cipso_v4.h
Dnetlabel_calipso.h
/openbmc/linux/drivers/platform/x86/hp/hp-bioscfg/
DMakefile
/openbmc/u-boot/lib/efi_loader/
H A Defi_variable.c21 * efi_$guid_$varname = {attributes}(type)value
30 * The attributes are a comma separated list of these possible
31 * attributes:
40 * If not specified, the attributes default to "{boot}".
102 * parse_attr() - decode attributes part of variable value
104 * Convert the string encoded attributes of a UEFI variable to a bit mask.
105 * TODO: Several attributes are not supported.
108 * @attrp: pointer to UEFI attributes
158 * @attributes: attributes of the variable
164 const efi_guid_t *vendor, u32 *attributes, in efi_get_variable() argument
[all …]
/openbmc/linux/Documentation/driver-api/driver-model/
Ddevice.rst
/openbmc/u-boot/include/
H A Denv_attr.h15 * attributes = [^,:\s]*
16 * entry = name[:attributes]
18 * It will call the "callback" function with the "name" and "attributes"
24 int (*callback)(const char *name, const char *attributes, void *priv),
30 * If the name is found in the list, it's value is copied into "attributes".
31 * There is no protection on attributes being too small for the value.
32 * It returns -1 if attributes is NULL, 1 if "name" is not found, 2 if
36 int env_attr_lookup(const char *attr_list, const char *name, char *attributes);
/openbmc/linux/include/uapi/linux/
Dncsi.h
/openbmc/linux/include/scsi/fc/
Dfc_ms.h
/openbmc/linux/Documentation/hwmon/
Dtps25990.rst
Dmp2888.rst
Dmp2975.rst
Dmp5023.rst
Dxdp710.rst
Dmp5990.rst
/openbmc/openpower-debug-collector/dump/tools/bmcdump/plugins/
H A Dphal_devtree13 #export attributes list to attribute_list.txt
14 attributes="/usr/bin/attributes"
16 attr_cmd="$attributes export"
18 if [ -x $attributes ]; then
35 #copy attributes info db to dump
/openbmc/linux/Documentation/netlabel/
Dlsm_interface.rst
/openbmc/linux/Documentation/filesystems/ext4/
Dattributes.rst
/openbmc/linux/Documentation/power/
Dpower_supply_class.rst
/openbmc/linux/drivers/platform/x86/dell/dell-wmi-sysman/
DMakefile
/openbmc/phosphor-mrw-tools/docs/
H A Dmrw-xml-requirements.md29 XML representations, there are only a few attributes that need to be set. If a
30 new part is being modeled, initial values for some attributes may need to be
38 ### System Level Attributes
50 All of the BMC chip attributes that are needed for the device tree are pre-built
55 > necessary device tree attributes.
68 connected to an ethernet slave unit. Additionally, the following attributes may
84 part to their corresponding uart slave units. No additional attributes are
117 an I2C device. It specifies which other attributes of the device should be
/openbmc/linux/Documentation/netlink/specs/
Drt_route.yaml
/openbmc/qemu/hw/uefi/
H A Dvar-service-vars.c46 VMSTATE_UINT32(attributes, uefi_variable),
78 uint32_t attributes) in add_variable() argument
87 var->attributes = attributes; in add_variable()
89 var->attributes &= ~EFI_VARIABLE_APPEND_WRITE; in add_variable()
121 uint32_t attributes, in uefi_vars_set_variable() argument
134 new_var = add_variable(uv, guid, name, name_size, attributes); in uefi_vars_set_variable()
146 if (var->attributes & EFI_VARIABLE_NON_VOLATILE) { in uefi_vars_clear_volatile()
177 if (!(var->attributes & EFI_VARIABLE_BOOTSERVICE_ACCESS)) { in check_access()
181 if (!(var->attributes & EFI_VARIABLE_RUNTIME_ACCESS)) { in check_access()
200 if (new_var->attributes & ~EFI_VARIABLE_ATTRIBUTE_SUPPORTED) { in check_update()
[all …]

12345678910>>...59