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

12345678

/external/chromium_org/chrome/common/extensions/permissions/
H A Dbluetooth_permission.h22 // A Bluetooth profile uuid that should be checked for permission to access.
24 explicit CheckParam(std::string uuid) argument
25 : uuid(uuid) {}
26 const std::string uuid; member in struct:extensions::BluetoothPermission::CheckParam
H A Dbluetooth_permission_data.h26 explicit BluetoothPermissionData(const std::string& uuid);
29 // matches the uuid of this object.
41 // The uuid |this| matches against.
42 const std::string& uuid() const { return uuid_; } function in class:extensions::BluetoothPermissionData
46 std::string& uuid() { return uuid_; } function in class:extensions::BluetoothPermissionData
H A Dbluetooth_permission_data.cc16 const char* kUuidKey = "uuid";
25 const std::string& uuid) : uuid_(uuid) {
37 specific_param.uuid);
24 BluetoothPermissionData( const std::string& uuid) argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_utils.cc22 std::string CanonicalUuid(std::string uuid) { argument
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
[all...]
H A Dbluetooth_profile.cc45 void BluetoothProfile::Register(const std::string& uuid, argument
51 profile->Init(uuid, options, callback);
56 profile = new BluetoothProfileMac(uuid, options.name);
60 profile = new BluetoothProfileWin(uuid, options.name);
H A Dbluetooth_profile_chromeos.h45 const std::string& uuid() const { return uuid_; } function in class:chromeos::BluetoothProfileChromeOS
54 // asynchronously. |uuid|, |options| and |callback| are the arguments to
56 void Init(const std::string& uuid,
H A Dbluetooth_profile_win.cc14 BluetoothProfileWin::BluetoothProfileWin(const std::string& uuid, argument
16 : BluetoothProfile(), uuid_(uuid), name_(name) {
H A Dbluetooth_device.cc17 bool BluetoothDevice::IsUUIDValid(const std::string& uuid) { argument
18 return !bluetooth_utils::CanonicalUuid(uuid).empty();
178 const std::string& uuid) const {
179 std::string canonical_uuid = bluetooth_utils::CanonicalUuid(uuid);
H A Dbluetooth_service_record.h30 const std::string& uuid() const { return uuid_; } function in class:device::BluetoothServiceRecord
/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/chrome/test/functional/tracing/
H A Dtab_tracker.py5 import uuid namespace
41 """Create a tracked tab and return its uuid.
47 a uuid uniquely identifying that tab within this TabTracker
52 tab_uuid = uuid.uuid4()
60 tab_uuid: the uuid of the tab to close
70 tab_uuid: the uuid of the tab to close
/external/chromium_org/content/public/renderer/
H A Dkey_system_info.h59 std::vector<uint8> uuid; member in struct:content::KeySystemInfo
/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/bluetooth/bluedroid/stack/srvc/
H A Dsrvc_dis_int.h31 UINT16 uuid; member in struct:__anon1584
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DBlob.h60 String uuid() const { return m_blobDataHandle->uuid(); } function in class:WebCore::Blob
/external/chromium_org/webkit/common/
H A Dresource_request_body.cc29 void ResourceRequestBody::AppendBlob(const std::string& uuid) { argument
31 elements_.back().SetToBlob(uuid);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Duuid.c12 #include "uuid.h"
64 int is_nil_uuid(const u8 *uuid) argument
68 if (uuid[i])
/external/wpa_supplicant_8/src/utils/
H A Duuid.c12 #include "uuid.h"
64 int is_nil_uuid(const u8 *uuid) argument
68 if (uuid[i])
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Duuid.c12 #include "uuid.h"
64 int is_nil_uuid(const u8 *uuid) argument
68 if (uuid[i])
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/identity/
H A DUuidBasedUniqueIdentificationGeneratorTest.java16 private static final String FLAG_UUID = "uuid";
76 TestGenerator(AdvancedMockContext context, String preferenceKey, String uuid) { argument
79 mUuid = uuid;

Completed in 3206 milliseconds

12345678