Searched full:attributes (Results 1 – 25 of 1465) sorted by relevance
12345678910>>...59
/openbmc/u-boot/env/ |
H A D | attr.c | 24 * 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/ |
D | netlabel_mgmt.h |
|
D | netlabel_unlabeled.h |
|
D | netlabel_cipso_v4.h |
|
D | netlabel_calipso.h |
|
/openbmc/linux/drivers/platform/x86/hp/hp-bioscfg/ |
D | Makefile |
|
/openbmc/u-boot/lib/efi_loader/ |
H A D | efi_variable.c | 21 * 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/ |
D | device.rst |
|
/openbmc/u-boot/include/ |
H A D | env_attr.h | 15 * 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/ |
D | ncsi.h |
|
/openbmc/linux/include/scsi/fc/ |
D | fc_ms.h |
|
/openbmc/linux/Documentation/hwmon/ |
D | tps25990.rst |
|
D | mp2888.rst |
|
D | mp2975.rst |
|
D | mp5023.rst |
|
D | xdp710.rst |
|
D | mp5990.rst |
|
/openbmc/openpower-debug-collector/dump/tools/bmcdump/plugins/ |
H A D | phal_devtree | 13 #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/ |
D | lsm_interface.rst |
|
/openbmc/linux/Documentation/filesystems/ext4/ |
D | attributes.rst |
|
/openbmc/linux/Documentation/power/ |
D | power_supply_class.rst |
|
/openbmc/linux/drivers/platform/x86/dell/dell-wmi-sysman/ |
D | Makefile |
|
/openbmc/phosphor-mrw-tools/docs/ |
H A D | mrw-xml-requirements.md | 29 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/ |
D | rt_route.yaml |
|
/openbmc/qemu/hw/uefi/ |
H A D | var-service-vars.c | 46 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