Home | History | Annotate | Download | only in src

Lines Matching refs:uuid

350 static int add_rfc_sdp_by_uuid(const char* name, const uint8_t* uuid, int scn)
362 To do this we will check the UUID for the requested service and mimic the SDP records of bluez
368 int final_scn = get_reserved_rfc_channel(uuid);
373 if (IS_UUID(UUID_OBEX_OBJECT_PUSH,uuid))
377 else if (IS_UUID(UUID_PBAP_PSE,uuid))
381 else if (IS_UUID(UUID_SPP, uuid))
387 handle = add_sdp_by_uuid(name, uuid, final_scn);
404 int get_reserved_rfc_channel (const uint8_t* uuid)
406 if (IS_UUID(UUID_PBAP_PSE,uuid))
410 else if (IS_UUID(UUID_OBEX_OBJECT_PUSH,uuid))
417 int add_rfc_sdp_rec(const char* name, const uint8_t* uuid, int scn)
420 if(is_uuid_empty(uuid))
425 uuid = UUID_PBAP_PSE;
428 uuid = UUID_OBEX_OBJECT_PUSH;
431 uuid = UUID_SPP;
435 sdp_handle = add_rfc_sdp_by_uuid(name, uuid, scn);