* Function SDP_FindAttributeInRec * Description This function searches an SDP discovery record for a specific * attribute. * Returns Pointer to matching attribute entry, or NULL
* Function SDP_FindServiceInDb * Description This function queries an SDP database for a specific service. * If the p_start_rec pointer is NULL, it looks from the beginning * of the database, else it continues from the next record after * p_start_rec. * Returns Pointer to record containing service class, or NULL
* Function SDP_FindProtocolListElemInRec * Description This function looks at a specific discovery record for a protocol * list element. * Returns TRUE if found, FALSE if not * If found, the passed protocol list element is filled in.
* Function SDP_FindProfileVersionInRec * Description This function looks at a specific discovery record for the * Profile list descriptor, and pulls out the version number. * The version number consists of an 8-bit major version and * an 8-bit minor version. * Returns TRUE if found, FALSE if not * If found, the major and minor version numbers that were passed * in are filled in.
* Function SDP_FindServiceUUIDInDb * Description This function queries an SDP database for a specific service. * If the p_start_rec pointer is NULL, it looks from the beginning * of the database, else it continues from the next record after * p_start_rec. * NOTE the only difference between this function and the previous function * "SDP_FindServiceInDb()" is that this function takes a tBT_UUID input * Returns Pointer to record containing service class, or NULL
* Function add_attr * Description This function allocates space for an attribute from the DB * and copies the data into it. * Returns pointer to next byte in data stream
* Function SDP_FindServiceUUIDInRec * Description This function is called to read the service UUID within a record * if there is any. * Parameters: p_rec - pointer to a SDP record. * p_uuid - output parameter to save the UUID found. * Returns TRUE if found, otherwise FALSE.
* Function SDP_FindServiceInDb_128bit * Description This function queries an SDP database for a specific service. * If the p_start_rec pointer is NULL, it looks from the beginning * of the database, else it continues from the next record after * p_start_rec. * This function is kept separate from SDP_FindServiceInDb since * that API is expected to return only 16-bit UUIDs * Returns Pointer to record containing service class, or NULL
* Function SDP_FindAddProtoListsElemInRec * Description This function looks at a specific discovery record for a protocol * list element. * Returns TRUE if found, FALSE if not * If found, the passed protocol list element is filled in.
* Function SDP_FindAttributeInDb * Description This function queries an SDP database for a specific attribute. * If the p_start_rec pointer is NULL, it looks from the beginning * of the database, else it continues from the next record after * p_start_rec. * Returns Pointer to matching record, or NULL
* Function BTM_FindAttribute * Description This function is called by an application (or profile) * when it wants to see if an attribute exists in the BTM * discovery database. * Returns Pointer to matching record, or NULL
* Function BTM_FindService * Description This function is called by an application (or profile) * when it wants to see if a service exists in the BTM * discovery database. * Returns Pointer to matching record, or NULL