/external/dbus/dbus/ |
dbus-misc.c | 38 * Obtains the machine UUID of the machine this process is running on. 42 * This UUID is guaranteed to remain the same until the next reboot 67 * The UUID is not a UUID in the sense of RFC4122; the details 70 * @returns a 32-byte-long hex-encoded UUID string, or #NULL if insufficient memory 75 DBusString uuid; local 79 _dbus_string_init (&uuid); 80 if (!_dbus_get_local_machine_uuid_encoded (&uuid) || 81 !_dbus_string_steal_data (&uuid, &s)) 83 _dbus_string_free (&uuid); [all...] |
dbus-uuidgen.c | 44 return_uuid (DBusGUID *uuid, 52 if (!_dbus_uuid_encode (uuid, &encoded) || 70 * @param uuid_p out param to return the uuid 81 DBusGUID uuid; local 87 if (!_dbus_read_uuid_file (&filename_str, &uuid, create_if_not_found, error)) 92 if (!_dbus_read_local_machine_uuid (&uuid, create_if_not_found, error)) 96 if (!return_uuid(&uuid, uuid_p, error)) 111 * @param uuid_p out param to return the uuid 117 DBusGUID uuid; local 119 _dbus_generate_uuid (&uuid); [all...] |
/external/e2fsprogs/lib/uuid/ |
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...] |
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);
|
uuidP.h | 2 * uuid.h -- private header file for uuids 38 #include <uuid/uuid_types.h> 42 #include "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. 48 struct uuid uuid; local 53 uuid_unpack(uu, &uuid); 55 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16); 56 clock_reg = uuid.time_low | ((unsigned long long) high << 32); 70 struct uuid uuid local 78 struct uuid uuid; local [all...] |
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/ |
UUIDTest.java | 27 import java.util.UUID; 31 @TestTargetClass(UUID.class) 35 * @see UUID#UUID(long, long) 40 method = "UUID", 44 UUID uuid = new UUID(0xf81d4fae7dec11d0L, 0xa76500a0c91e6bf6L); local 45 assertEquals(2, uuid.variant()); 46 assertEquals(1, uuid.version()) 63 UUID uuid = new UUID(0, 0); local 81 UUID uuid = new UUID(0, 0); local 99 UUID uuid = new UUID(0, 0); local 123 UUID uuid = new UUID(0, 0x0000000000000000L); local 162 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local 191 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local 223 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local 273 UUID uuid = new UUID(0, 0); local 318 UUID uuid = new UUID(0xf81d4fae7dec11d0L, 0xa76500a0c91e6bf6L); local 365 UUID uuid = UUID.randomUUID(); local 385 UUID uuid = UUID.nameUUIDFromBytes(name); local 478 UUID uuid = UUID.fromString("0-0-0-0-0"); local [all...] |
/external/e2fsprogs/lib/e2p/ |
uuid.c | 2 * uuid.c -- utility routines for manipulating UUID's. 11 struct uuid { struct 19 /* Returns 1 if the uuid is the NULL uuid */ 31 static void e2p_unpack_uuid(void *in, struct uuid *uu) 59 struct uuid uuid; local 61 e2p_unpack_uuid(uu, &uuid); 64 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version [all...] |
/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])
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothUuid.java | 34 * uuid * 2^96 + BASE_UUID 57 public static boolean isAudioSource(ParcelUuid uuid) { 58 return uuid.equals(AudioSource); 61 public static boolean isAudioSink(ParcelUuid uuid) { 62 return uuid.equals(AudioSink); 65 public static boolean isAdvAudioDist(ParcelUuid uuid) { 66 return uuid.equals(AdvAudioDist); 69 public static boolean isHandsfree(ParcelUuid uuid) { 70 return uuid.equals(Handsfree); 73 public static boolean isHeadset(ParcelUuid uuid) { [all...] |
/packages/apps/Email/src/com/android/email/activity/ |
FolderMessageList.java | 59 String uuid = uri.getPath(); local 60 if (uuid.length() > 0) { 61 uuid = uuid.substring(1); // remove the beginning '/'. 63 if (TextUtils.isEmpty(uuid)) { 66 MessageList.actionOpenAccountInboxUuid(this, uuid);
|
/external/bluetooth/bluez/compat/ |
pand.h | 28 int bnep_str2svc(char *svc, uint16_t *uuid); 29 char *bnep_svc2str(uint16_t uuid);
|
/external/opencore/pvmi/pvmf/include/ |
pv_interface.h | 40 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
|
/external/webkit/WebKit/win/Interfaces/ |
IGEN_DOMObject.idl | 37 uuid(19DD35E3-BFEC-40f5-A69F-02C5D76791E4),
|
WebKit.idl | 146 uuid(2a748656-625d-4207-b29f-40c95bfeb3a9), 155 [uuid(d6bca079-f61c-4e1e-b453-32a0477d02e3)] 167 [uuid(66827ec1-3aef-4241-bac5-f776b44f030f)] 172 [uuid(a062ecc3-bb1b-4694-a569-f59e0ad6be0c)] 177 [uuid(ba590766-0a6f-46c7-b96e-743490d94cb7)] 182 [uuid(a4b9b45d-949f-4c8c-9b92-6fbfcc1caaa2)] 187 [uuid(dd653964-4d37-4fb2-9cb6-6a9a97719332)] 192 [uuid(6be190e9-1725-4e4a-88db-6a9fe242c9e5)] 197 [uuid(f71071fd-a51b-4b69-9eb6-44374405e80c)] 202 [uuid(1820D883-42FE-4b78-88C8-5456BB19D224) [all...] |
IWebIconFetcher.idl | 39 uuid(9d27e503-1e0e-458e-bc66-ffa9fa64600e), 50 uuid(54f50460-8ffa-442c-b5Ab-5422e1fcc973),
|
IWebBackForwardListPrivate.idl | 37 uuid(0296A841-F6B1-4334-B146-7F9542CF24C3),
|
IWebGeolocationPolicyListener.idl | 33 uuid(1300A76E-26DF-4BED-B79F-3930D7A4202F),
|
IWebPolicyDelegatePrivate.idl | 39 uuid(BA053E15-559F-46ee-A1D4-F8003EFFB658),
|
IWebTextRenderer.idl | 37 uuid(5b26abbb-c27a-4527-a313-cb733e2cd257),
|
IWebURLResponsePrivate.idl | 37 uuid(18730CD8-864E-4898-B775-88905CC8E9DD),
|
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
uuid.h | 2 * Universally Unique IDentifier (UUID) 22 int is_nil_uuid(const u8 *uuid); 23 void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid);
|
uuid.c | 2 * Universally Unique IDentifier (UUID) 20 #include "uuid.h" 72 int is_nil_uuid(const u8 *uuid) 76 if (uuid[i]) 82 void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid) 100 os_memcpy(uuid, hash, 16); 103 uuid[6] = (5 << 4) | (uuid[6] & 0x0f); 106 uuid[8] = 0x80 | (uuid[8] & 0x3f) [all...] |
/external/dbus/tools/ |
dbus-uuidgen.c | 43 printf ("D-Bus UUID Generator %s\n" 129 char *uuid; local 130 if (dbus_internal_do_not_use_get_uuid (filename, &uuid, ensure_uuid, &error)) 133 printf ("%s\n", uuid); 134 dbus_free (uuid); 139 char *uuid; local 140 if (dbus_internal_do_not_use_create_uuid (&uuid)) 142 printf ("%s\n", uuid); 143 dbus_free (uuid);
|