Home
last modified time | relevance | path

Searched refs:uuid1 (Results 1 – 7 of 7) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dsysroot.py23 uuid1 = uuid.uuid4()
31 """ % (uuid1, uuid2))
38 """ % (uuid1, uuid2))
H A Dbbtests.py91 test_data = "Microsoft Made No Profit From Anyone's Zunes Yo %s" % uuid.uuid1()
/openbmc/qemu/docs/system/s390x/
H A Dvfio-ap.rst782 echo $uuid1 > create
787 after the UUID used to create the mediated device. We'll call them $uuid1,
794 ............ [$uuid1]
822 devices $uuid1 (for Guest1), $uuid2 (for Guest2) and $uuid3 (for Guest3).
865 ….. -cpu host,ap=on,apqci=on,apft=on -device vfio-ap,sysfsdev=/sys/devices/vfio_ap/matrix/$uuid1 ...
877 Using our example again, to remove the mediated matrix device $uuid1::
883 ............ [$uuid1]
/openbmc/linux/drivers/firmware/arm_ffa/
H A Ddriver.c190 __ffa_partition_info_get(u32 uuid0, u32 uuid1, u32 uuid2, u32 uuid3, in __ffa_partition_info_get() argument
203 .a1 = uuid0, .a2 = uuid1, .a3 = uuid2, .a4 = uuid3, in __ffa_partition_info_get()
/openbmc/linux/Documentation/arch/s390/
H A Dvfio-ap.rst762 echo $uuid1 > create
767 after the UUID written to the create attribute file. We call them $uuid1,
774 ------------ [$uuid1]
805 devices $uuid1 (for Guest1), $uuid2 (for Guest2) and $uuid3 (for Guest3).
903 -device vfio-ap,sysfsdev=/sys/devices/vfio_ap/matrix/$uuid1 ...
917 Using our example again, to remove the vfio_ap mediated device $uuid1::
923 ------------ [$uuid1]
/openbmc/openbmc/meta-arm/meta-arm-bsp/recipes-bsp/u-boot/u-boot/corstone1000/
H A D0004-FF-A-v15-arm_ffa-introduce-Arm-FF-A-support.patch953 + * @uuid1: first UUID
962 +static bool ffa_uuid_are_identical(const struct ffa_partition_uuid *uuid1,
965 + if (!uuid1 || !uuid2)
968 + return !memcmp(uuid1, uuid2, sizeof(struct ffa_partition_uuid));
/openbmc/linux/drivers/nvdimm/
H A Dnamespace_devs.c41 uuid_t *uuid1 = data, *uuid2 = NULL; in is_uuid_busy() local
57 if (uuid2 && uuid_equal(uuid1, uuid2)) in is_uuid_busy()