Home
last modified time | relevance | path

Searched refs:attr_value (Results 1 – 11 of 11) sorted by relevance

/openbmc/linux/drivers/platform/x86/hp/hp-bioscfg/
H A Dbioscfg.h320 char *attr_value = NULL; \
324 attr_value = kstrdup(buf, GFP_KERNEL); \
325 if (!attr_value) \
328 ret = hp_enforce_single_line_input(attr_value, count); \
332 ret = validate_##type##_input(i, attr_value); \
335 ret = hp_set_attribute(kobj->name, attr_value); \
337 update_##type##_value(i, attr_value); \
342 kfree(attr_value); \
H A Dint-attributes.c52 static void update_integer_value(int instance_id, char *attr_value) in update_integer_value() argument
58 ret = kstrtoint(attr_value, 10, &in_val); in update_integer_value()
62 pr_warn("Invalid integer value found: %s\n", attr_value); in update_integer_value()
H A Dstring-attributes.c48 static void update_string_value(int instance_id, char *attr_value) in update_string_value() argument
53 strscpy(string_data->current_value, attr_value, sizeof(string_data->current_value)); in update_string_value()
H A Denum-attributes.c51 static void update_enumeration_value(int instance_id, char *attr_value) in update_enumeration_value() argument
56 attr_value, in update_enumeration_value()
H A Dorder-list-attributes.c56 static void update_ordered_list_value(int instance, char *attr_value) in update_ordered_list_value() argument
61 attr_value, in update_ordered_list_value()
/openbmc/linux/fs/xfs/
H A Dxfs_attr_item.c718 const void *attr_value = NULL; in xlog_recover_attri_commit_pass2() local
762 attr_value = item->ri_buf[2].i_addr; in xlog_recover_attri_commit_pass2()
771 attri_formatp->alfi_name_len, attr_value, in xlog_recover_attri_commit_pass2()
/openbmc/linux/fs/smb/server/
H A Dvfs.h112 void *attr_value, size_t attr_size, int flags,
H A Dvfs.c259 int attr_name_len, char **attr_value) in ksmbd_vfs_getcasexattr() argument
277 attr_value); in ksmbd_vfs_getcasexattr()
932 void *attr_value, size_t attr_size, int flags, in ksmbd_vfs_setxattr() argument
946 attr_value, in ksmbd_vfs_setxattr()
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Delement.py1624 attr_value = markup_attr_map.get(attr)
1625 if not self._matches(attr_value, match_against):
/openbmc/linux/include/linux/greybus/
H A Dgreybus_protocols.h1036 __le32 attr_value; member
/openbmc/linux/drivers/greybus/
H A Dsvc.c444 *value = le32_to_cpu(response.attr_value); in gb_svc_dme_peer_get()