Lines Matching full:service
380 ** service class fields
411 /* BTM service definitions
541 /* MACRO to set the service bit mask in a bit stream */
542 #define BTM_EIR_SET_SERVICE(p, service) (((UINT32 *)(p))[(((UINT32)(service)) / BTM_EIR_ARRAY_BITS)] |= \
543 ((UINT32)1 << (((UINT32)(service)) % BTM_EIR_ARRAY_BITS)))
546 /* MACRO to clear the service bit mask in a bit stream */
547 #define BTM_EIR_CLR_SERVICE(p, service) (((UINT32 *)(p))[(((UINT32)(service)) / BTM_EIR_ARRAY_BITS)] &= \
548 ~((UINT32)1 << (((UINT32)(service)) % BTM_EIR_ARRAY_BITS)))
550 /* MACRO to check the service bit mask in a bit stream */
551 #define BTM_EIR_HAS_SERVICE(p, service) ((((UINT32 *)(p))[(((UINT32)(service)) / BTM_EIR_ARRAY_BITS)] & \
552 ((UINT32)1 << (((UINT32)(service)) % BTM_EIR_ARRAY_BITS))) >> (((UINT32)(service)) % BTM_EIR_ARRAY_BITS))
1109 /* Security Service Levels [bit mask] (BTM_SetSecurityLevel)
1169 /* Security service definitions (BTM_SetSecurityLevel)
1235 /* MACRO to set the security service bit mask in a bit stream */
1236 #define BTM_SEC_SET_SERVICE(p, service) (((UINT32 *)(p))[(((UINT32)(service)) / BTM_SEC_ARRAY_BITS)] |= \
1237 ((UINT32)1 << (((UINT32)(service)) % BTM_SEC_ARRAY_BITS)))
1240 /* MACRO to clear the security service bit mask in a bit stream */
1241 #define BTM_SEC_CLR_SERVICE(p, service) (((UINT32 *)(p))[(((UINT32)(service)) / BTM_SEC_ARRAY_BITS)] &= \
1242 ~((UINT32)1 << (((UINT32)(service)) % BTM_SEC_ARRAY_BITS)))
1244 /* MACRO to check the security service bit mask in a bit stream (Returns TRUE or FALSE) */
1245 #define BTM_SEC_IS_SERVICE_TRUSTED(p, service) (((((UINT32 *)(p))[(((UINT32)(service)) / BTM_SEC_ARRAY_BITS)]) & \
1246 (UINT32)(((UINT32)1 << (((UINT32)(service)) % BTM_SEC_ARRAY_BITS)))) ? TRUE : FALSE)
1316 /* Authorize device for service. Parameters are
1320 ** Service name
1321 ** Service Id (NULL - unknown service or unused
2901 ** when it wants to trigger an service discovery using the
2935 ** when it wants to see if a service exists in the BTM
3767 ** Description Register service security level with Security Manager. Each
3768 ** service must register its requirements regardless of the
3784 ** Description Register UCD service security level with Security Manager. Each
3785 ** service must register its requirements regardless of the
3800 ** Description This function is called to set the service for
3812 ** Description Removes specified service record(s) from the security database.
3813 ** All service records with the specified name are removed.
3815 ** reuse an old security service record.
3829 ** Parameters Service ID - Id of the service to remove. ('0' removes all service
4356 ** Description This function is called to add a service in bit map of UUID list.
4370 ** Description This function is called to remove a service in bit map of UUID list.