HomeSort by relevance Sort by last modified time
    Searched full:uuid_string (Results 1 - 9 of 9) sorted by null

  /system/bt/btcore/include/
uuid.h 32 // |uuid_string| may be NULL.
33 void uuid_string_free(uuid_string_t* uuid_string);
36 // entry. |uuid_string| must not be NULL.
37 const char* uuid_string_data(const uuid_string_t* uuid_string);
40 // |uuid_string|. The caller takes ownership of the uuid
42 // |uuid_string| must not be NULL.
44 // Returns NULL if |uuid_string| is malformed or no memory.
48 bt_uuid_t* uuid_new(const char* uuid_string);
67 // |uuid_string| using numbers and lower case letter. |uuid|
68 // and |uuid_string| must not be NULL
    [all...]
  /system/bt/btcore/src/
uuid.cc 48 void uuid_string_free(uuid_string_t* uuid_string) { osi_free(uuid_string); }
50 const char* uuid_string_data(const uuid_string_t* uuid_string) {
51 CHECK(uuid_string != NULL);
52 return (const char*)uuid_string->string;
55 bt_uuid_t* uuid_new(const char* uuid_string) {
56 CHECK(uuid_string != NULL);
58 if (strlen(uuid_string) < UUID_WELL_FORMED_STRING_LEN) return NULL;
59 if (uuid_string[8] != '-' || uuid_string[13] != '-' |
    [all...]
  /system/bt/btcore/test/
uuid_test.cc 140 uuid_string_t* uuid_string = uuid_string_new(); local
141 EXPECT_TRUE(uuid_string != NULL);
145 uuid_to_string(uuid, uuid_string);
148 EXPECT_TRUE(!strcmp(UUID_BASE, uuid_string_data(uuid_string)));
153 uuid_to_string(uuid, uuid_string);
160 EXPECT_TRUE(!strcmp(lower_case_buf, uuid_string_data(uuid_string)));
161 uuid_string_free(uuid_string);
  /external/wpa_supplicant_8/src/wps/
wps_upnp_ssdp.c 125 char uuid_string[80]; local
133 uuid_bin2str(iface->wps->uuid, uuid_string, sizeof(uuid_string));
185 uuid_string);
188 wpabuf_printf(msg, "%s: uuid:%s\r\n", NTString, uuid_string);
189 wpabuf_printf(msg, "USN: uuid:%s\r\n", uuid_string);
195 "org:device:WFADevice:1\r\n", uuid_string);
201 "org:service:WFAWLANConfig:1\r\n", uuid_string);
577 char uuid_string[80]; local
586 uuid_bin2str(iface->wps->uuid, uuid_string,
    [all...]
wps_upnp_web.c 187 char uuid_string[80]; local
226 uuid_bin2str(iface->wps->uuid, uuid_string, sizeof(uuid_string));
227 s = uuid_string;
    [all...]
  /system/bt/service/test/
uuid_unittest.cc 158 std::string uuid_string = uuid.ToString(); local
159 EXPECT_EQ("0000180d-0000-1000-8000-00805f9b34fb", uuid_string);
  /external/libusb/examples/
xusb.c 176 static char uuid_string[40]; local
178 sprintf(uuid_string, "{%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
181 return uuid_string;
    [all...]
  /system/extras/simpleperf/testdata/
perf_with_kernel_symbol.data     [all...]
perf_with_kmem_slab_callgraph.data     [all...]

Completed in 689 milliseconds