Home | History | Annotate | Download | only in src

Lines Matching refs:uuid

119 	uuid_t			uuid;
244 search = sdp_list_append(NULL, &ctxt->uuid);
278 uuid_t *uuid)
299 (*ctxt)->uuid = *uuid;
311 uuid_t *uuid, bt_callback_t cb, void *user_data,
320 err = create_search_context(&ctxt, src, dst, uuid);
371 char *bt_uuid2string(uuid_t *uuid)
382 if (!uuid)
385 switch (uuid->type) {
387 sdp_uuid16_to_uuid128(&uuid128, uuid);
390 sdp_uuid32_to_uuid128(&uuid128, uuid);
393 memcpy(&uuid128, uuid, sizeof(uuid_t));
396 /* Type of UUID unknown */
460 static int string2uuid16(uuid_t *uuid, const char *string)
471 sdp_uuid16_create(uuid, u16);
480 uuid_t uuid;
484 /* UUID 128 string format */
503 sdp_uuid16_create(&uuid, uuid16);
505 return bt_uuid2string(&uuid);
508 int bt_string2uuid(uuid_t *uuid, const char *string)
532 sdp_uuid128_create(uuid, val);
538 sdp_uuid16_create(uuid, class);
542 return string2uuid16(uuid, string);