OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BTM_EIR_ARRAY_BITS
(Results
1 - 2
of
2
) sorted by null
/external/bluetooth/bluedroid/stack/include/
btm_api.h
523
#define
BTM_EIR_ARRAY_BITS
32 /* Number of bits in each array element */
524
#define BTM_EIR_SERVICE_ARRAY_SIZE (((UINT32)BTM_EIR_MAX_SERVICES /
BTM_EIR_ARRAY_BITS
) + \
525
(((UINT32)BTM_EIR_MAX_SERVICES %
BTM_EIR_ARRAY_BITS
) ? 1 : 0))
528
#define BTM_EIR_SET_SERVICE(p, service) (((UINT32 *)(p))[(((UINT32)(service)) /
BTM_EIR_ARRAY_BITS
)] |= \
529
((UINT32)1 << (((UINT32)(service)) %
BTM_EIR_ARRAY_BITS
)))
533
#define BTM_EIR_CLR_SERVICE(p, service) (((UINT32 *)(p))[(((UINT32)(service)) /
BTM_EIR_ARRAY_BITS
)] &= \
534
~((UINT32)1 << (((UINT32)(service)) %
BTM_EIR_ARRAY_BITS
)))
537
#define BTM_EIR_HAS_SERVICE(p, service) ((((UINT32 *)(p))[(((UINT32)(service)) /
BTM_EIR_ARRAY_BITS
)] & \
538
((UINT32)1 << (((UINT32)(service)) %
BTM_EIR_ARRAY_BITS
))) >> (((UINT32)(service)) %
BTM_EIR_ARRAY_BITS
))
[
all
...]
/external/bluetooth/bluedroid/stack/btm/
btm_inq.c
[
all
...]
Completed in 215 milliseconds