Searched refs:uuid_str (Results 1 – 7 of 7) sorted by relevance
| /rk3399_rockchip-uboot/lib/ |
| H A D | uuid.c | 145 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 …]
|
| /rk3399_rockchip-uboot/include/ |
| H A D | uuid.h | 37 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 D | ext4fs.h | 156 int ext4fs_uuid(char *uuid_str);
|
| /rk3399_rockchip-uboot/fs/ext4/ |
| H A D | ext4fs.c | 241 int ext4fs_uuid(char *uuid_str) in ext4fs_uuid() argument 248 uuid_str, UUID_STR_FORMAT_STD); in ext4fs_uuid()
|
| /rk3399_rockchip-uboot/fs/ |
| H A D | fs.c | 97 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()
|
| /rk3399_rockchip-uboot/cmd/ |
| H A D | pxe.c | 299 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 D | gpt.c | 42 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()
|