Searched defs:uuid (Results 1 - 25 of 246) sorted by relevance

12345678910

/external/e2fsprogs/contrib/python-uuid/
H A Duuid.c3 #include <uuid/uuid.h>
8 char uuid[37]; local
11 uuid_unparse(u, uuid);
12 return Py_BuildValue("s", uuid);
H A Dsetup.py4 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/
H A Dparse.c44 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);
H A DuuidP.h2 * 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);
H A Dunparse.c53 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
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_sock_sdp.h30 static inline BOOLEAN is_uuid_empty(const uint8_t* uuid) argument
33 return uuid == NULL || memcmp(uuid, empty_uuid, sizeof(empty_uuid)) == 0;
36 int add_rfc_sdp_rec(const char* name, const uint8_t* uuid, int scn);
39 int get_reserved_rfc_channel(const uint8_t* uuid);
/external/chromium_org/chromeos/dbus/
H A Dfake_bluetooth_gatt_service_service_provider.cc16 const std::string& uuid,
19 uuid_(uuid),
14 FakeBluetoothGattServiceServiceProvider( const dbus::ObjectPath& object_path, const std::string& uuid, const std::vector<dbus::ObjectPath>& includes) argument
H A Dfake_bluetooth_gatt_service_service_provider.h25 const std::string& uuid,
30 const std::string& uuid() const { return uuid_; } function in class:chromeos::FakeBluetoothGattServiceServiceProvider
H A Dfake_bluetooth_gatt_characteristic_service_provider.h26 const std::string& uuid,
45 const std::string& uuid() const { return uuid_; } function in class:chromeos::FakeBluetoothGattCharacteristicServiceProvider
H A Dfake_bluetooth_gatt_descriptor_service_provider.h26 const std::string& uuid,
44 const std::string& uuid() const { return uuid_; } function in class:chromeos::FakeBluetoothGattDescriptorServiceProvider
/external/chromium_org/device/bluetooth/
H A Dbluetooth_gatt_characteristic.cc19 const BluetoothUUID& uuid,
18 Create( const BluetoothUUID& uuid, const std::vector<uint8>& value, Properties properties, Permissions permissions) argument
H A Dbluetooth_gatt_service.cc19 const BluetoothUUID& uuid,
18 Create( const BluetoothUUID& uuid, bool is_primary, Delegate* delegate) argument
H A Dbluetooth_service_record_win.h37 const BluetoothUUID& uuid() const { return uuid_; } function in class:device::BluetoothServiceRecordWin
/external/chromium_org/device/bluetooth/test/
H A Dmock_bluetooth_gatt_characteristic.cc18 const BluetoothUUID& uuid,
23 ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid));
15 MockBluetoothGattCharacteristic( MockBluetoothGattService* service, const std::string& identifier, const BluetoothUUID& uuid, bool is_local, Properties properties, Permissions permissions) argument
H A Dmock_bluetooth_gatt_descriptor.cc17 const BluetoothUUID& uuid,
21 ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid));
14 MockBluetoothGattDescriptor( MockBluetoothGattCharacteristic* characteristic, const std::string& identifier, const BluetoothUUID& uuid, bool is_local, BluetoothGattCharacteristic::Permissions permissions) argument
H A Dmock_bluetooth_gatt_service.cc17 const BluetoothUUID& uuid,
21 ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid));
14 MockBluetoothGattService( MockBluetoothDevice* device, const std::string& identifier, const BluetoothUUID& uuid, bool is_primary, bool is_local) argument
/external/chromium_org/extensions/common/api/bluetooth/
H A Dbluetooth_manifest_data.h53 explicit BluetoothPermissionRequest(const std::string& uuid);
56 std::string uuid; member in struct:extensions::BluetoothPermissionRequest
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DUUIDConverter.java26 public static byte[] convert(UUID uuid) { argument
28 long msb = uuid.getMostSignificantBits();
29 long lsb = uuid.getLeastSignificantBits();
/external/chromium_org/components/proximity_auth/
H A Dbluetooth_util.cc28 const device::BluetoothUUID& uuid,
26 ConnectToServiceInsecurely( BluetoothDevice* device, const device::BluetoothUUID& uuid, const BluetoothDevice::ConnectToServiceCallback& callback, const BluetoothDevice::ConnectToServiceErrorCallback& error_callback) argument
/external/chromium_org/content/common/
H A Dresource_request_body.cc29 void ResourceRequestBody::AppendBlob(const std::string& uuid) { argument
31 elements_.back().SetToBlob(uuid);
/external/chromium_org/extensions/browser/
H A Dblob_holder.cc47 std::string uuid = blob->GetUUID(); local
48 held_blobs_.insert(make_pair(uuid, make_linked_ptr(blob.release())));
/external/chromium_org/storage/browser/blob/
H A Dblob_data_handle.cc22 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();
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DPublicURLManager.cpp51 void PublicURLManager::registerURL(SecurityOrigin* origin, const KURL& url, URLRegistrable* registrable, const String& uuid) argument
58 found->value.add(url.string(), uuid);
72 void PublicURLManager::revoke(const String& uuid) argument
80 if (uuid == j->value) {
/external/chromium_org/tools/usb_gadget/
H A Decho_gadget.py12 import uuid namespace
188 self.AddStringDescriptor(3, '{:06X}'.format(uuid.getnode()))
/external/lldb/include/lldb/Interpreter/
H A DOptionValueUUID.h31 OptionValueUUID (const UUID &uuid) : argument
33 m_uuid (uuid)

Completed in 584 milliseconds

12345678910