Home | History | Annotate | Download | only in plugins

Lines Matching refs:uuid

667 static void uuid_to_uuid128(uuid_t *uuid128, const uuid_t *uuid)
669 if (uuid->type == SDP_UUID16)
670 sdp_uuid16_to_uuid128(uuid128, uuid);
671 else if (uuid->type == SDP_UUID32)
672 sdp_uuid32_to_uuid128(uuid128, uuid);
674 memcpy(uuid128, uuid, sizeof(*uuid));
677 static int mgmt_add_uuid(int index, uuid_t *uuid, uint8_t svc_hint)
687 uuid_to_uuid128(&uuid128, uuid);
695 htob128(&uint128, (uint128_t *) cp->uuid);
705 static int mgmt_remove_uuid(int index, uuid_t *uuid)
715 uuid_to_uuid128(&uuid128, uuid);
723 htob128(&uint128, (uint128_t *) cp->uuid);