OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:uuid_string
(Results
1 - 6
of
6
) 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.c
48
void uuid_string_free(uuid_string_t *
uuid_string
) {
49
osi_free(
uuid_string
);
52
const char *uuid_string_data(const uuid_string_t *
uuid_string
) {
53
assert(
uuid_string
!= NULL);
54
return (const char *)
uuid_string
->string;
57
bt_uuid_t *uuid_new(const char *
uuid_string
) {
58
assert(
uuid_string
!= NULL);
60
if (strlen(
uuid_string
) < UUID_WELL_FORMED_STRING_LEN)
62
if (
uuid_string
[8] != '-' ||
uuid_string
[13] != '-' || uuid_string[18] != '-' || uuid_string[23] != '-'
[
all
...]
/system/bt/btcore/test/
uuid_test.cpp
144
uuid_string_t *
uuid_string
= uuid_string_new();
local
145
EXPECT_TRUE(
uuid_string
!= NULL);
149
uuid_to_string(uuid,
uuid_string
);
152
EXPECT_TRUE(!strcmp(UUID_BASE, uuid_string_data(
uuid_string
)));
157
uuid_to_string(uuid,
uuid_string
);
164
EXPECT_TRUE(!strcmp(lower_case_buf, uuid_string_data(
uuid_string
)));
165
uuid_string_free(
uuid_string
);
/external/wpa_supplicant_8/src/wps/
wps_upnp_ssdp.c
131
char
uuid_string
[80];
local
139
uuid_bin2str(iface->wps->uuid,
uuid_string
, sizeof(
uuid_string
));
191
uuid_string
);
194
wpabuf_printf(msg, "%s: uuid:%s\r\n", NTString,
uuid_string
);
195
wpabuf_printf(msg, "USN: uuid:%s\r\n",
uuid_string
);
201
"org:device:WFADevice:1\r\n",
uuid_string
);
207
"org:service:WFAWLANConfig:1\r\n",
uuid_string
);
583
char
uuid_string
[80];
local
592
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.cpp
160
std::string
uuid_string
= uuid.ToString();
local
161
EXPECT_EQ("0000180d-0000-1000-8000-00805f9b34fb",
uuid_string
);
Completed in 208 milliseconds