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

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/contrib/python-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"},
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])
  /external/e2fsprogs/lib/uuid/
parse.c 2 * parse.c --- UUID parsing
45 struct uuid uuid; local
66 uuid.time_low = strtoul(in, NULL, 16);
67 uuid.time_mid = strtoul(in+9, NULL, 16);
68 uuid.time_hi_and_version = strtoul(in+14, NULL, 16);
69 uuid.clock_seq = strtoul(in+19, NULL, 16);
75 uuid.node[i] = strtoul(buf, NULL, 16);
78 uuid_pack(&uuid, uu);
unparse.c 2 * unparse.c -- convert a UUID to string
54 struct uuid uuid; local
56 uuid_unpack(uu, &uuid);
58 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
59 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
60 uuid.node[0], uuid.node[1], uuid.node[2]
    [all...]
uuidP.h 2 * uuid.h -- private header file for uuids
38 #include <uuid/uuid_types.h>
42 #include <uuid/uuid.h>
50 struct uuid { struct
62 void uuid_pack(const struct uuid *uu, uuid_t ptr);
63 void uuid_unpack(const uuid_t in, struct uuid *uu);
uuid_time.c 2 * uuid_time.c --- Interpret the time field from a uuid. This program
3 * violates the UUID abstraction barrier by reaching into the guts
4 * of a UUID and interpreting it.
42 #define UUID MYUUID
61 struct uuid uuid; local
65 uuid_unpack(uu, &uuid);
67 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
68 clock_reg = uuid.time_low | ((uint64_t) high << 32)
82 struct uuid uuid; local
90 struct uuid uuid; local
    [all...]
  /system/bt/service/common/android/bluetooth/
bluetooth_gatt_descriptor.cc 18 #include "service/common/android/bluetooth/uuid.h"
31 status_t status = parcel->writeParcelable((UUID)uuid_);
42 UUID uuid; local
43 status_t status = parcel->readParcelable(&uuid);
45 uuid_ = (bluetooth::UUID)uuid;
bluetooth_gatt_included_service.cc 19 #include "service/common/android/bluetooth/uuid.h"
32 status_t status = parcel->writeParcelable((UUID)uuid_);
43 UUID uuid; local
44 status_t status = parcel->readParcelable(&uuid);
46 uuid_ = uuid;
bluetooth_gatt_characteristic.cc 19 #include "service/common/android/bluetooth/uuid.h"
35 status = parcel->writeParcelable((UUID)uuid_);
59 UUID uuid; local
60 status = parcel->readParcelable(&uuid);
62 uuid_ = uuid;
bluetooth_gatt_included_service.h 28 using ::bluetooth::UUID;
39 uuid_(service.uuid()),
59 UUID uuid() const { return uuid_; } function in class:android::bluetooth::BluetoothGattIncludedService
63 UUID uuid_;
scan_filter.cc 18 #include "service/common/android/bluetooth/uuid.h"
43 // uuid won't really keep ownership, it's just for type casting
44 std::unique_ptr<UUID> uuid;
45 UUID tmp;
49 uuid.reset(&tmp);
51 uuid.reset(nullptr);
53 status = parcel->writeNullableParcelable(uuid);
54 uuid.release();
59 uuid.reset(&tmp)
80 std::unique_ptr<UUID> uuid; local
    [all...]
  /system/bt/service/test/
uuid_unittest.cc 23 #include "service/common/bluetooth/uuid.h"
29 const std::array<uint8_t, UUID::kNumBytes128> kBtSigBaseUUID = {{
36 // Verify that an uninitialized UUID is equal
37 // To the BT SIG Base UUID.
39 UUID uuid; local
40 ASSERT_TRUE(uuid.is_valid());
41 ASSERT_TRUE(uuid.GetFullBigEndian() == kBtSigBaseUUID);
44 // Verify that we initialize a 16-bit UUID in a
50 UUID uuid(UUID::UUID16Bit({{0xde, 0xad}}))
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/
uuid.h 49 struct uuid { struct
59 typedef struct uuid uuid_t;
  /external/google-breakpad/src/common/mac/
macho_utilities.h 54 # define LC_UUID 0x1b /* the uuid */
62 uint8_t uuid[16]; /* the 128-bit uuid */ member in struct:breakpad_uuid_command
  /external/syslinux/gpxe/src/include/gpxe/
uuid.h 14 union uuid { union
31 extern char * uuid_ntoa ( union uuid *uuid );
  /external/toybox/toys/other/
mkswap.c 28 char *label = (char *)(swap+7), *uuid = (char *)(swap+3); local
36 create_uuid(uuid);
47 printf("Swapspace size: %luk%s, UUID=%s\n",
49 toybuf, show_uuid(uuid));
  /system/bt/btif/test/
btif_storage_test.cc 29 bt_uuid_t uuid; local
30 memset(&uuid, 0, sizeof(uuid));
31 EXPECT_FALSE(memcmp(&uuid, u1, sizeof(u1)) == 0);
33 bool rc = string_to_uuid(s1, &uuid);
35 EXPECT_TRUE(memcmp(&uuid, u1, sizeof(u1)) == 0);
39 bt_uuid_t uuid; local
40 bool rc = string_to_uuid("This is not a UUID", &uuid);
  /system/bt/service/common/bluetooth/
descriptor.h 19 #include <bluetooth/uuid.h>
27 Descriptor(uint16_t handle, const UUID& uuid, uint16_t permissions)
28 : handle_(handle), uuid_(uuid), permissions_(permissions){};
38 const UUID& uuid() const { return uuid_; } function in class:bluetooth::Descriptor
42 UUID uuid_;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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...]
  /development/ndk/platforms/android-21/include/media/
NdkMediaExtractor.h 129 * mapping of crypto scheme uuid to the scheme specific data for that scheme
132 AMediaUUID uuid; member in struct:PsshEntry
  /external/e2fsprogs/lib/e2p/
uuid.c 2 * uuid.c -- utility routines for manipulating UUID's.
17 struct uuid { struct
25 /* Returns 1 if the uuid is the NULL uuid */
37 static void e2p_unpack_uuid(void *in, struct uuid *uu)
65 struct uuid uuid; local
67 e2p_unpack_uuid(uu, &uuid);
70 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version
    [all...]
  /external/strace/mpers-m32/
struct_btrfs_ioctl_received_subvol_args.h 5 char uuid[16]; member in struct:__anon30255
  /external/strace/mpers-mx32/
struct_btrfs_ioctl_received_subvol_args.h 5 char uuid[16]; member in struct:__anon30404
  /external/vboot_reference/firmware/2lib/include/
2guid.h 24 } uuid; member in union:vb2_guid::__anon36443
  /frameworks/av/include/ndk/
NdkMediaExtractor.h 134 * mapping of crypto scheme uuid to the scheme specific data for that scheme
137 AMediaUUID uuid; member in struct:PsshEntry

Completed in 1747 milliseconds

1 2 3 4 5 6 7 8 91011>>