HomeSort by relevance Sort by last modified time
    Searched full:uuid (Results 1 - 25 of 635) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/contrib/python-uuid/
setup.py 4 uuid = Extension('e2fsprogs_uuid', variable
5 sources = ['uuid.c'],
6 libraries = ['uuid'])
10 description = 'This is python uuid interface',
11 ext_modules = [uuid])
uuid.c 3 #include <uuid/uuid.h>
8 char uuid[37]; local
11 uuid_unparse(u, uuid);
12 return Py_BuildValue("s", uuid);
16 {"generate", _uuid_generate, METH_VARARGS, "Generate UUID"},
  /external/e2fsprogs/debian/
uuid-dev.files 3 usr/include/uuid/*
4 usr/share/man/man3/uuid*
5 usr/lib/pkgconfig/uuid.pc
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
UUIDTest.java 20 import java.util.UUID;
29 * @see UUID#UUID(long, long)
32 UUID uuid = new UUID(0xf81d4fae7dec11d0L, 0xa76500a0c91e6bf6L); local
33 assertEquals(2, uuid.variant());
34 assertEquals(1, uuid.version());
35 assertEquals(0x1d07decf81d4faeL, uuid.timestamp());
36 assertEquals(130742845922168750L, uuid.timestamp())
45 UUID uuid = new UUID(0, 0); local
57 UUID uuid = new UUID(0, 0); local
69 UUID uuid = new UUID(0, 0); local
87 UUID uuid = new UUID(0, 0x0000000000000000L); local
120 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
143 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
169 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
207 UUID uuid = new UUID(0, 0); local
240 UUID uuid = new UUID(0xf81d4fae7dec11d0L, 0xa76500a0c91e6bf6L); local
269 UUID uuid = UUID.randomUUID(); local
283 UUID uuid = UUID.nameUUIDFromBytes(name); local
364 UUID uuid = UUID.fromString("0-0-0-0-0"); local
    [all...]
  /external/e2fsprogs/lib/blkid/tests/
fat.results 3 UUID='DEAD-BEEF'
fat32_label_64MB.results 3 UUID='8CB5-BA49'
small-fat32.results 3 UUID='1423-AAE1'
jbd.results 2 UUID='0d7a07df-7b06-4829-bce7-3b9c3ece570c'
reiser3.results 3 UUID='9efe7863-b124-46dc-ad68-8ecd04230a7b'
reiser4.results 3 UUID='9722633c-d69a-4881-b1c8-bedecbbf39d2'
ext2.results 3 UUID='22f0eac3-5c89-4ec1-9076-60799119aaea'
ext3.results 3 UUID='35f66dab-477e-4090-a872-95ee0e493ad6'
jfs.results 3 UUID='9bf7b82e-7583-4c74-99a4-189a691f27b5'
ocfs2.results 3 UUID='6b6bfbea-3a79-4f0c-b166-a20776102445'
swap1.results 3 UUID='8ff8e77f-8553-485e-8656-58be67a81666'
xfs.results 3 UUID='8c8a0a5a-9f57-492e-9610-45a61f38f58a'
  /external/e2fsprogs/lib/e2p/
uuid.c 2 * uuid.c -- utility routines for manipulating UUID's.
11 struct uuid { struct
19 /* Returns 1 if the uuid is the NULL uuid */
31 static void e2p_unpack_uuid(void *in, struct uuid *uu)
59 struct uuid uuid; local
61 e2p_unpack_uuid(uu, &uuid);
64 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version
    [all...]
  /system/extras/ext4_utils/
uuid.c 22 #include "uuid.h"
24 struct uuid { struct
47 struct uuid *uuid = (struct uuid *)result; local
50 memcpy(uuid, sha1, sizeof(struct uuid));
52 uuid->time_low = ntohl(uuid->time_low);
53 uuid->time_mid = ntohs(uuid->time_mid)
    [all...]
  /external/bluetooth/bluez/test/
service-ftp.xml 6 <uuid value="0x1106"/>
13 <uuid value="0x0100"/>
16 <uuid value="0x0003"/>
20 <uuid value="0x0008"/>
28 <uuid value="0x1106"/>
service-spp.xml 6 <uuid value="0x1101"/>
13 <uuid value="0x0100"/>
16 <uuid value="0x0003"/>
service-opp.xml 6 <uuid value="0x1105"/>
13 <uuid value="0x0100"/>
16 <uuid value="0x0003"/>
20 <uuid value="0x0008"/>
28 <uuid value="0x1105"/>
  /external/e2fsprogs/misc/
uuidgen.1.in 10 uuidgen \- command\-line utility to create a new UUID value
22 a new universally unique identifier (UUID) using the
24 library. The new UUID can reasonably be considered unique among
29 There are two types of UUID's which
31 can generate: time-based UUID's and random-based UUID's. By
34 will generate a random-based UUID if a high-quality random number
35 generator is present. Otherwise, it will chose a time-based UUID. It
37 UUID types by using the
45 Generate a random-based UUID. This method creates a UUID consisting mostl
    [all...]
  /frameworks/base/core/java/android/os/
ParcelUuid.java 19 import java.util.UUID;
22 * This class is a Parcelable wrapper around {@link UUID} which is an
28 private final UUID mUuid;
32 * given {@link UUID}.
34 * @param uuid UUID
36 public ParcelUuid(UUID uuid) {
37 mUuid = uuid;
41 * Creates a new ParcelUuid from a string representation of {@link UUID}
    [all...]
  /external/e2fsprogs/lib/uuid/
unparse.c 2 * unparse.c -- convert a UUID to string
53 struct uuid uuid; local
55 uuid_unpack(uu, &uuid);
57 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
58 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
59 uuid.node[0], uuid.node[1], uuid.node[2]
    [all...]
  /external/bluetooth/bluez/serial/
serial.conf 6 # UUID for DUN proxy service
7 #UUID=00001103-0000-1000-8000-00805F9B34FB

Completed in 251 milliseconds

1 2 3 4 5 6 7 8 91011>>