Searched refs:uuid (Results 1 - 25 of 94) sorted by relevance

1234

/u-boot/include/tee/
H A Doptee_service.h13 * @uuid - UUID of the OP-TEE service related to the driver
20 const struct tee_optee_ta_uuid uuid; member in struct:optee_service
26 .uuid = __uuid, \
/u-boot/include/
H A Duuid.h61 struct uuid { struct
77 #define UUID_BIN_LEN sizeof(struct uuid)
87 int uuid_str_valid(const char *uuid);
142 * @param - uuid output type: UUID - 0, GUID - 1
H A Dpart.h11 #include <uuid.h>
73 char uuid[UUID_STR_LEN + 1]; /* filesystem UUID as string, if exists */ member in struct:disk_partition
83 /* Accessors for struct disk_partition field ->uuid */
89 return info->uuid;
99 strlcpy(info->uuid, val, UUID_STR_LEN + 1);
106 *info->uuid = '\0';
/u-boot/common/
H A Dscp03.c14 const struct tee_optee_ta_uuid uuid = PTA_SCP03_UUID; local
25 tee_optee_ta_uuid_to_octets(session.uuid, &uuid);
/u-boot/tools/
H A Dmkfwumdata.c15 #include <uuid/uuid.h>
58 "\t <location uuid>,<image type uuid>,<images uuid list>\n"
59 "\t images uuid list syntax:\n"
133 * formats are different due to the endianness. See lib/uuid.c.
159 static int uuid_guid_parse(char *uuidstr, unsigned char *uuid) argument
163 ret = uuid_parse(uuidstr, uuid);
168 convert_uuid_to_guid(uuid);
179 char *p = uuids, *uuid; local
[all...]
/u-boot/lib/
H A Duuid.c17 #include <uuid.h>
26 int uuid_str_valid(const char *uuid) argument
30 if (uuid == NULL)
33 for (i = 0, valid = 1; uuid[i] && valid; i++) {
36 valid = (uuid[i] == '-');
39 valid = isxdigit(uuid[i]);
376 struct uuid *uuid = (struct uuid *)ptr; local
398 clrsetbits_be16(&uuid
423 char uuid[UUID_STR_LEN + 1]; local
[all...]
/u-boot/cmd/
H A Defi_common.c12 #include <uuid.h>
/u-boot/fs/btrfs/
H A Dcompat.h8 #include <uuid.h>
72 static inline void uuid_unparse(const u8 *uuid, char *out) argument
74 return uuid_bin_to_str((unsigned char *)uuid, out, 0);
/u-boot/tools/binman/
H A Dfip_util.py30 from uuid import UUID
61 'uuid',
84 self.uuid = bytes(uuid_bytes)
191 """get_type_uuid() - Convert a type or uuid into both
203 bytes(16): uuid
213 uuid = lookup.uuid
216 uuid = fip_type_or_uuid
217 return fip_type, uuid
244 def __init__(self, uuid, offse
[all...]
/u-boot/drivers/xen/
H A Dxenbus.c483 int xenbus_read_uuid(const char *path, unsigned char uuid[16]) argument
500 uuid, uuid + 1, uuid + 2, uuid + 3,
501 uuid + 4, uuid + 5, uuid + 6, uuid + 7,
502 uuid
[all...]
/u-boot/boot/
H A Dbootmeth_cros.c99 static int copy_cmdline(const char *from, const char *uuid, char **bufp) argument
111 log_debug("uuid %d %s\n", uuid ? (int)strlen(uuid) : 0, uuid);
115 if (from[0] == '%' && from[1] == 'U' && uuid &&
116 strlen(uuid) == UUID_STR_LEN) {
117 strcpy(to, uuid);
151 struct uuid type;
202 * @uuid
205 cros_read_buf(struct bootflow *bflow, void *buf, ulong size, loff_t start, ulong before_base, const char *uuid) argument
260 cros_read_info(struct bootflow *bflow, const char *uuid, const struct vb2_kernel_preamble *preamble) argument
357 const char *uuid = NULL; local
[all...]
/u-boot/cmd/x86/
H A Dhob.c9 #include <uuid.h>
99 char uuid[UUID_STR_LEN + 1]; local
144 uuid_bin_to_str(guid->b, uuid,
146 name = uuid;
/u-boot/test/lib/
H A Duuid.c12 #include <uuid.h>
H A DMakefile25 obj-$(CONFIG_LIB_UUID) += uuid.o
/u-boot/fs/erofs/
H A Dsuper.c106 memcpy(&sbi.uuid, dsb->uuid, sizeof(dsb->uuid));
/u-boot/test/dm/
H A Dpart.c50 gen_rand_uuid_str(parts[0].uuid, UUID_STR_FORMAT_STD);
51 gen_rand_uuid_str(parts[1].uuid, UUID_STR_FORMAT_STD);
169 gen_rand_uuid_str(gpt_parts[0].uuid, UUID_STR_FORMAT_STD);
170 gen_rand_uuid_str(gpt_parts[1].uuid, UUID_STR_FORMAT_STD);
H A Dfastboot.c45 gen_rand_uuid_str(parts[0].uuid, UUID_STR_FORMAT_STD);
46 gen_rand_uuid_str(parts[1].uuid, UUID_STR_FORMAT_STD);
/u-boot/test/cmd/
H A Drw.c31 gen_rand_uuid_str(parts[0].uuid, UUID_STR_FORMAT_STD);
32 gen_rand_uuid_str(parts[1].uuid, UUID_STR_FORMAT_STD);
/u-boot/drivers/rng/
H A Doptee_rng.c49 const struct tee_optee_ta_uuid uuid = TA_HWRNG_UUID; local
54 tee_optee_ta_uuid_to_octets(sess_arg.uuid, &uuid);
/u-boot/drivers/tee/broadcom/
H A Dchimp_optee.c29 const struct tee_optee_ta_uuid uuid = CHMIP_BOOT_UUID; local
39 tee_optee_ta_uuid_to_octets(arg.uuid, &uuid);
/u-boot/test/py/tests/
H A Dtest_saveenv.py28 import uuid namespace
109 # Set env for uuid
110 uuid_str = uuid.uuid4().hex.lower()
/u-boot/board/xilinx/common/
H A Dboard.c35 #include <uuid.h>
80 char uuid[EEPROM_HDR_UUID_LEN + 1]; member in struct:xilinx_board_description
236 strlcpy(desc->uuid, (char *)fru_data.brd.uuid,
237 sizeof(desc->uuid));
486 if (desc->uuid[0]) {
487 unsigned char uuid[UUID_STR_LEN + 1]; local
488 unsigned char *t = desc->uuid;
490 memset(uuid, 0, UUID_STR_LEN + 1);
492 sprintf(uuid, "
[all...]
/u-boot/fs/
H A Dfs.c167 int (*uuid)(char *uuid_str); member in struct:fstype_info
208 .uuid = fat_uuid,
234 .uuid = ext4fs_uuid,
252 .uuid = fs_uuid_unsupported,
271 .uuid = fs_uuid_unsupported,
291 .uuid = fs_uuid_unsupported,
312 .uuid = btrfs_uuid,
334 .uuid = fs_uuid_unsupported,
355 .uuid = fs_uuid_unsupported,
373 .uuid
884 char uuid[37]; local
[all...]
/u-boot/include/xen/
H A Dxenbus.h97 * xenbus_read_uuid() - Read path and parse it as 16 byte uuid.
101 int xenbus_read_uuid(const char *path, unsigned char uuid[16]);
/u-boot/drivers/fwu-mdata/
H A Draw_mtd.c218 const char *uuid; local
226 uuid = ofnode_read_string(image, "uuid");
235 strcpy(fwu_mtd_images[off_img].uuidbuf, uuid);
237 image_num, uuid, bank_offset + image_offset);

Completed in 162 milliseconds

1234