Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/lib/
H A Duuid.c145 int uuid_str_to_bin(char *uuid_str, unsigned char *uuid_bin, int str_format) in uuid_str_to_bin() argument
151 if (!uuid_str_valid(uuid_str)) { in uuid_str_to_bin()
153 if (!uuid_guid_get_bin(uuid_str, uuid_bin)) in uuid_str_to_bin()
160 tmp32 = cpu_to_be32(simple_strtoul(uuid_str, NULL, 16)); in uuid_str_to_bin()
163 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 9, NULL, 16)); in uuid_str_to_bin()
166 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 14, NULL, 16)); in uuid_str_to_bin()
169 tmp32 = cpu_to_le32(simple_strtoul(uuid_str, NULL, 16)); in uuid_str_to_bin()
172 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 9, NULL, 16)); in uuid_str_to_bin()
175 tmp16 = cpu_to_le16(simple_strtoul(uuid_str + 14, NULL, 16)); in uuid_str_to_bin()
179 tmp16 = cpu_to_be16(simple_strtoul(uuid_str + 19, NULL, 16)); in uuid_str_to_bin()
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Duuid.h37 int uuid_str_to_bin(char *uuid_str, unsigned char *uuid_bin, int str_format);
38 void uuid_bin_to_str(unsigned char *uuid_bin, char *uuid_str, int str_format);
44 void gen_rand_uuid_str(char *uuid_str, int str_format);
H A Dext4fs.h156 int ext4fs_uuid(char *uuid_str);
/OK3568_Linux_fs/kernel/drivers/net/ethernet/cisco/enic/
H A Denic_pp.c76 char uuid_str[38]; in enic_set_port_profile() local
118 sprintf(uuid_str, "%pUB", pp->instance_uuid); in enic_set_port_profile()
121 sizeof(uuid_str), uuid_str); in enic_set_port_profile()
125 sprintf(uuid_str, "%pUB", pp->host_uuid); in enic_set_port_profile()
128 sizeof(uuid_str), uuid_str); in enic_set_port_profile()
/OK3568_Linux_fs/kernel/init/
H A Ddo_mounts.c107 static dev_t devt_from_partuuid(const char *uuid_str) in devt_from_partuuid() argument
118 cmp.uuid = uuid_str; in devt_from_partuuid()
120 slash = strchr(uuid_str, '/'); in devt_from_partuuid()
130 cmp.len = slash - uuid_str; in devt_from_partuuid()
132 cmp.len = strlen(uuid_str); in devt_from_partuuid()
/OK3568_Linux_fs/u-boot/fs/
H A Dfs.c97 static inline int fs_uuid_unsupported(char *uuid_str) in fs_uuid_unsupported() argument
130 int (*uuid)(char *uuid_str);
348 int fs_uuid(char *uuid_str) in fs_uuid() argument
352 return info->uuid(uuid_str); in fs_uuid()
/OK3568_Linux_fs/u-boot/fs/ext4/
H A Dext4fs.c241 int ext4fs_uuid(char *uuid_str) in ext4fs_uuid() argument
248 uuid_str, UUID_STR_FORMAT_STD); in ext4fs_uuid()
/OK3568_Linux_fs/kernel/fs/ocfs2/
H A Dsuper.c226 "Device", osb->dev_str, osb->uuid_str, in ocfs2_osb_dump()
1081 osb->osb_debug_root = debugfs_create_dir(osb->uuid_str, in ocfs2_fill_super()
1661 buf->f_fsid.val[0] = crc32_le(0, osb->uuid_str, OCFS2_VOL_UUID_LEN) in ocfs2_statfs()
1663 buf->f_fsid.val[1] = crc32_le(0, osb->uuid_str + OCFS2_VOL_UUID_LEN, in ocfs2_statfs()
1911 if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str && in ocfs2_dismount_volume()
1922 ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str)); in ocfs2_dismount_volume()
1948 osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL); in ocfs2_setup_osb_uuid()
1949 if (osb->uuid_str == NULL) in ocfs2_setup_osb_uuid()
1952 for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) { in ocfs2_setup_osb_uuid()
2254 trace_ocfs2_initialize_super(osb->vol_label, osb->uuid_str, in ocfs2_initialize_super()
[all …]
H A Docfs2_trace.h1711 TP_PROTO(char *label, char *uuid_str, unsigned long long root_dir,
1713 TP_ARGS(label, uuid_str, root_dir, system_dir, cluster_bits),
1716 __string(uuid_str, uuid_str)
1723 __assign_str(uuid_str, uuid_str);
1728 TP_printk("%s %s %llu %llu %d", __get_str(label), __get_str(uuid_str),
H A Docfs2.h313 char *uuid_str; member
H A Djournal.c1090 "ocfs2cmt-%s", osb->uuid_str); in ocfs2_journal_load()
1524 "ocfs2rec-%s", osb->uuid_str); in ocfs2_recovery_thread()
H A Dioctl.c223 memcpy(oiu.iu_uuid_str, osb->uuid_str, OCFS2_TEXT_UUID_LEN + 1); in ocfs2_info_handle_uuid()
H A Ddlmglue.c3331 osb->uuid_str); in ocfs2_dlm_init()
3343 osb->uuid_str, in ocfs2_dlm_init()
3344 strlen(osb->uuid_str), in ocfs2_dlm_init()
H A Dnamei.c720 mlog(ML_ERROR, "%s: no old_dir_bh!\n", osb->uuid_str); in ocfs2_link()
/OK3568_Linux_fs/kernel/drivers/thunderbolt/
H A Ddomain.c169 char *str, *s, *uuid_str; in boot_acl_store() local
194 uuid_str = strim(str); in boot_acl_store()
195 while ((s = strsep(&uuid_str, ",")) != NULL && i < tb->nboot_acl) { in boot_acl_store()
/OK3568_Linux_fs/u-boot/cmd/
H A Dpxe.c299 char *uuid_str; in pxe_uuid_path() local
301 uuid_str = from_env("pxeuuid"); in pxe_uuid_path()
303 if (!uuid_str) in pxe_uuid_path()
306 return get_pxelinux_path(cmdtp, uuid_str, pxefile_addr_r); in pxe_uuid_path()
H A Dgpt.c42 char uuid_str[UUID_STR_LEN + 1]; in extract_env() local
62 gen_rand_uuid_str(uuid_str, UUID_STR_FORMAT_GUID); in extract_env()
63 env_set(s, uuid_str); in extract_env()
/OK3568_Linux_fs/kernel/drivers/acpi/
H A Dbus.c180 acpi_handle_debug(handle, "(%s): %s\n", context->uuid_str, error); in acpi_print_osc_error()
201 if (guid_parse(context->uuid_str, &guid)) in acpi_run_osc()
289 .uuid_str = sb_uuid_str, in acpi_bus_osc_support()
H A Dacpi_processor.c501 .uuid_str = sb_uuid_str, in acpi_hwp_native_thermal_lvt_osc()
H A Dpci_root.c180 .uuid_str = pci_osc_uuid_str, in acpi_pci_run_osc()
/OK3568_Linux_fs/kernel/drivers/thermal/intel/int340x_thermal/
H A Dint3400_thermal.c244 .uuid_str = NULL, in int3400_thermal_run_osc()
252 context.uuid_str = int3400_thermal_uuids[uuid]; in int3400_thermal_run_osc()
/OK3568_Linux_fs/kernel/arch/powerpc/platforms/pseries/
H A Dpapr_scm.c1056 const char *uuid_str; in papr_scm_probe() local
1077 if (of_property_read_string(dn, "ibm,unit-guid", &uuid_str)) { in papr_scm_probe()
1100 uuid_parse(uuid_str, &uuid); in papr_scm_probe()
/OK3568_Linux_fs/yocto/poky/scripts/lib/wic/
H A Dengine.py548 uuid_str = "-U {}".format(uuid) if uuid else ''
551 exec_cmd("{} {} {} {}".format(self.mkswap, label_str, uuid_str, partfname))
/OK3568_Linux_fs/kernel/drivers/acpi/apei/
H A Dapei-base.c785 .uuid_str = whea_uuid_str, in apei_osc_setup()
/OK3568_Linux_fs/kernel/include/linux/
H A Dacpi.h521 char *uuid_str; /* UUID string */ member