HomeSort by relevance Sort by last modified time
    Searched full:uuid (Results 1 - 25 of 1218) 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
uuid-runtime.lintian-overrides 0 uuid-runtime: command-with-path-in-maintainer-script prerm:5 /usr/sbin/uuidd
  /libcore/harmony-tests/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'
  /external/chromium_org/device/bluetooth/
bluetooth_utils.cc 22 std::string CanonicalUuid(std::string uuid) {
23 if (uuid.empty())
26 if (uuid.size() < 11 && uuid.find("0x") == 0)
27 uuid = uuid.substr(2);
29 if (!(uuid.size() == 4 || uuid.size() == 8 || uuid.size() == 36))
32 if (uuid.size() == 4 || uuid.size() == 8)
    [all...]
  /external/e2fsprogs/lib/e2p/
uuid.c 2 * uuid.c -- utility routines for manipulating UUID's.
16 struct uuid { struct
24 /* Returns 1 if the uuid is the NULL uuid */
36 static void e2p_unpack_uuid(void *in, struct uuid *uu)
64 struct uuid uuid; local
66 e2p_unpack_uuid(uu, &uuid);
69 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ServiceDeclaration.java 22 import java.util.UUID;
36 UUID uuid = null; field in class:ServiceDeclaration.Entry
44 Entry(UUID uuid, int serviceType, int instance) {
46 this.uuid = uuid;
51 Entry(UUID uuid, int serviceType, int instance, boolean advertisePreferred) {
53 this.uuid = uuid
    [all...]
HandleMap.java 24 import java.util.UUID;
39 UUID uuid = null; field in class:HandleMap.Entry
47 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) {
51 this.uuid = uuid;
56 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance,
61 this.uuid = uuid
    [all...]
  /external/chromium_org/webkit/browser/blob/
blob_storage_host.cc 33 bool BlobStorageHost::StartBuildingBlob(const std::string& uuid) {
34 if (!context_.get() || uuid.empty() || context_->IsInUse(uuid))
36 context_->StartBuildingBlob(uuid);
37 blobs_inuse_map_[uuid] = 1;
42 const std::string& uuid, const BlobData::Item& data_item) {
43 if (!context_.get() || !IsBeingBuiltInHost(uuid))
45 context_->AppendBlobDataItem(uuid, data_item);
49 bool BlobStorageHost::CancelBuildingBlob(const std::string& uuid) {
50 if (!context_.get() || !IsBeingBuiltInHost(uuid))
    [all...]
  /system/extras/ext4_utils/
uuid.c 27 #include "uuid.h"
30 struct uuid { struct
53 struct uuid *uuid = (struct uuid *)result; local
56 memcpy(uuid, sha1, sizeof(struct uuid));
58 uuid->time_low = ntohl(uuid->time_low);
59 uuid->time_mid = ntohs(uuid->time_mid)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_uuid.py 3 import uuid namespace
28 'urn:uuid:00000000-0000-0000-0000-000000000000',
29 0, 0, uuid.RESERVED_NCS, None),
37 'urn:uuid:00010203-0405-0607-0809-0a0b0c0d0e0f',
38 0x607040500010203L, 0x809, uuid.RESERVED_NCS, None),
46 'urn:uuid:02d9e6d5-9467-382e-8f9b-9300a64ac3cd',
47 0x82e946702d9e6d5L, 0xf9b, uuid.RFC_4122, 3),
55 'urn:uuid:12345678-1234-5678-1234-567812345678',
56 0x678123412345678L, 0x1234, uuid.RESERVED_NCS, None),
64 'urn:uuid:6ba7b810-9dad-11d1-80b4-00c04fd430c8'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_uuid.py 3 import uuid namespace
28 'urn:uuid:00000000-0000-0000-0000-000000000000',
29 0, 0, uuid.RESERVED_NCS, None),
37 'urn:uuid:00010203-0405-0607-0809-0a0b0c0d0e0f',
38 0x607040500010203L, 0x809, uuid.RESERVED_NCS, None),
46 'urn:uuid:02d9e6d5-9467-382e-8f9b-9300a64ac3cd',
47 0x82e946702d9e6d5L, 0xf9b, uuid.RFC_4122, 3),
55 'urn:uuid:12345678-1234-5678-1234-567812345678',
56 0x678123412345678L, 0x1234, uuid.RESERVED_NCS, None),
64 'urn:uuid:6ba7b810-9dad-11d1-80b4-00c04fd430c8'
    [all...]
  /frameworks/base/media/java/android/media/
MediaCrypto.java 20 import java.util.UUID;
33 * Query if the given scheme identified by its UUID is supported on
35 * @param uuid The UUID of the crypto scheme.
37 public static final boolean isCryptoSchemeSupported(UUID uuid) {
38 return isCryptoSchemeSupportedNative(getByteArrayFromUUID(uuid));
41 private static final byte[] getByteArrayFromUUID(UUID uuid) {
42 long msb = uuid.getMostSignificantBits()
    [all...]
  /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/bluetooth/
BluetoothUuid.java 23 import java.util.UUID;
35 * uuid * 2^96 + BASE_UUID
84 public static boolean isAudioSource(ParcelUuid uuid) {
85 return uuid.equals(AudioSource);
88 public static boolean isAudioSink(ParcelUuid uuid) {
89 return uuid.equals(AudioSink);
92 public static boolean isAdvAudioDist(ParcelUuid uuid) {
93 return uuid.equals(AdvAudioDist);
96 public static boolean isHandsfree(ParcelUuid uuid) {
97 return uuid.equals(Handsfree)
213 UUID uuid = parcelUuid.getUuid(); local
224 UUID uuid = parcelUuid.getUuid(); local
    [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/chromium_org/device/test/data/bluetooth/
medium_uuid.xml 5 <uuid value="0x00001101" />
short_uuid.xml 5 <uuid value="0x1101" />

Completed in 277 milliseconds

1 2 3 4 5 6 7 8 91011>>