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

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/fxjs/xfa/
cjx_xfa.cpp 35 void CJX_Xfa::uuid(CFXJSE_Value* pValue, function in class:CJX_Xfa
  /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/binder/android/os/
parcel_uuid.h 21 #include <bluetooth/uuid.h>
45 ::bluetooth::Uuid uuid; member in class:android::os::ParcelUuid
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
tbbr_config.h 12 #include <uuid.h>
19 uuid_t uuid; member in struct:toc_entry
  /system/bt/service/common/android/bluetooth/
bluetooth_gatt_descriptor.cc 18 #include "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_ = uuid.uuid;
bluetooth_gatt_included_service.cc 19 #include "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.uuid;
uuid.h 19 #include "bluetooth/uuid.h"
31 class UUID : public Parcelable {
33 UUID() = default;
35 UUID(const ::bluetooth::Uuid& uuid) : uuid(uuid){}; // NOLINT
36 ~UUID() = default;
52 bool operator==(::bluetooth::Uuid rhs) const { return uuid == rhs;
54 ::bluetooth::Uuid uuid; member in class:android::bluetooth::UUID
    [all...]
bluetooth_gatt_characteristic.cc 19 #include "android/bluetooth/uuid.h"
35 status = parcel->writeParcelable((UUID)uuid_);
59 UUID uuid; local
60 status = parcel->readParcelable(&uuid);
62 uuid_ = 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 "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 UUID uuid; local
    [all...]
  /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));
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2Drm.h 32 memset(this->uuid, 0, sizeof(uuid));
35 // to allow defining Vector/KeyedVector of UUID type
37 memcpy(this->uuid, a.uuid, sizeof(uuid));
40 // to allow defining Vector/KeyedVector of UUID type
42 memcpy(this->uuid, uuid_in, sizeof(uuid));
46 return uuid;
67 uint8_t uuid[UUID_SIZE]; member in struct:android::DrmUUID
    [all...]
  /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...]
  /device/linaro/bootloader/arm-trusted-firmware/include/tools_share/
uuid.h 40 /* Length of UUID string including dashes. */
50 struct uuid { struct
60 typedef struct uuid uuid_t;
  /external/adhd/cras/src/server/
cras_bt_endpoint.h 18 const char *uuid; member in struct:cras_bt_endpoint
cras_bt_profile.h 22 const char *uuid; member in struct:cras_bt_profile
  /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...]

Completed in 318 milliseconds

1 2 3 4 5 6 7 8 91011>>