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

1 2 3 4 5

  /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
44 struct uuid uuid; local
65 uuid.time_low = strtoul(in, NULL, 16);
66 uuid.time_mid = strtoul(in+9, NULL, 16);
67 uuid.time_hi_and_version = strtoul(in+14, NULL, 16);
68 uuid.clock_seq = strtoul(in+19, NULL, 16);
74 uuid.node[i] = strtoul(buf, NULL, 16);
77 uuid_pack(&uuid, uu);
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...]
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.
40 #define UUID MYUUID
59 struct uuid uuid; local
63 uuid_unpack(uu, &uuid);
65 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
66 clock_reg = uuid.time_low | ((uint64_t) high << 32)
80 struct uuid uuid; local
88 struct uuid uuid; local
    [all...]
  /external/chromium_org/extensions/common/api/bluetooth/
bluetooth_manifest_data.h 53 explicit BluetoothPermissionRequest(const std::string& uuid);
56 std::string uuid; member in struct:extensions::BluetoothPermissionRequest
  /external/chromium_org/chromeos/dbus/
fake_bluetooth_gatt_service_service_provider.h 25 const std::string& uuid,
30 const std::string& uuid() const { return uuid_; } function in class:chromeos::FakeBluetoothGattServiceServiceProvider
36 // 128-bit GATT service UUID.
bluetooth_gatt_descriptor_client.h 25 // The 128-bit characteristic descriptor UUID. [read-only]
26 dbus::Property<std::string> uuid; member in struct:chromeos::BluetoothGattDescriptorClient::Properties
bluetooth_gatt_service_client.h 24 // The 128-bit service UUID. [read-only]
25 dbus::Property<std::string> uuid; member in struct:chromeos::BluetoothGattServiceClient::Properties
fake_bluetooth_gatt_characteristic_service_provider.h 26 const std::string& uuid,
45 const std::string& uuid() const { return uuid_; } function in class:chromeos::FakeBluetoothGattCharacteristicServiceProvider
52 // 128-bit GATT characteristic UUID.
fake_bluetooth_gatt_descriptor_service_provider.h 26 const std::string& uuid,
44 const std::string& uuid() const { return uuid_; } function in class:chromeos::FakeBluetoothGattDescriptorServiceProvider
53 // 128-bit GATT descriptor UUID.
bluetooth_gatt_characteristic_client.h 25 // The 128-bit characteristic UUID. [read-only]
26 dbus::Property<std::string> uuid; member in struct:chromeos::BluetoothGattCharacteristicClient::Properties
  /external/chromium_org/storage/browser/blob/
blob_data_handle.cc 22 context_->IncrementBlobRefCount(blob_data->uuid());
29 const std::string& BlobDataHandle::BlobDataHandleShared::uuid() const { function in class:storage::BlobDataHandle::BlobDataHandleShared
30 return blob_data_->uuid();
35 context_->DecrementBlobRefCount(blob_data_->uuid());
64 std::string BlobDataHandle::uuid() const { function in class:storage::BlobDataHandle
65 return shared_->uuid();
  /cts/tests/tests/security/jni/
android_security_cts_LoadEffectLibraryTest.cpp 67 // Effect UUID defined in cts/tests/tests/security/testeffect/CTSTestEffect.cpp
68 effect_uuid_t uuid = local
72 status = AudioEffect::getEffectDescriptor(&uuid, &desc);
  /external/chromium_org/device/bluetooth/
bluetooth_service_record_win.h 35 // The UUID of the service. This field may be empty if no UUID was
37 const BluetoothUUID& uuid() const { return uuid_; } function in class:device::BluetoothServiceRecordWin
bluetooth_low_energy_win.h 79 BTH_LE_UUID uuid; member in struct:device::win::BluetoothLowEnergyServiceInfo
  /external/chromium_org/extensions/browser/
blob_holder.cc 47 std::string uuid = blob->GetUUID(); local
48 held_blobs_.insert(make_pair(uuid, make_linked_ptr(blob.release())));
79 << "UUID: " << *uuid_it;
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Blob.h 83 String uuid() const { return m_blobDataHandle->uuid(); } function in class:blink::Blob
  /external/chromium_org/third_party/WebKit/Source/web/
WebBlob.cpp 42 WebBlob WebBlob::createFromUUID(const WebString& uuid, const WebString& type, long long size)
44 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(uuid, type, size));
77 WebString WebBlob::uuid() function in class:blink::WebBlob
81 return m_private->uuid();
  /external/chromium_org/tools/usb_gadget/
echo_gadget.py 12 import uuid namespace
188 self.AddStringDescriptor(3, '{:06X}'.format(uuid.getnode()))
  /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...]
  /external/lldb/source/Interpreter/
Property.cpp 149 // "definition.default_cstr_value" can contain a default UUID value
151 UUID uuid; local
153 uuid.SetFromCString (definition.default_cstr_value);
154 m_value_sp.reset (new OptionValueUUID(uuid));
  /external/bluetooth/bluedroid/btif/src/
btif_profile_queue.c 46 uint16_t uuid; member in struct:__anon5711
92 return p_head->connect_cb(&p_head->bda, p_head->uuid);
119 bt_status_t btif_queue_connect(uint16_t uuid, const bt_bdaddr_t *bda, btif_connect_cb_t connect_cb) {
123 node.uuid = uuid;
  /external/bluetooth/bluedroid/stack/srvc/
srvc_dis_int.h 31 UINT16 uuid; member in struct:__anon6349

Completed in 458 milliseconds

1 2 3 4 5