OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GATT_MAX_ATTR_LEN
(Results
1 - 6
of
6
) sorted by null
/external/bluetooth/bluedroid/stack/include/
gatt_api.h
120
#ifndef
GATT_MAX_ATTR_LEN
121
#define
GATT_MAX_ATTR_LEN
600
308
UINT8 value[
GATT_MAX_ATTR_LEN
]; /* the actual attribute value */
349
UINT8 value[
GATT_MAX_ATTR_LEN
]; /* the actual attribute value */
[
all
...]
/external/bluetooth/bluedroid/stack/gatt/
gatt_cl.c
808
p_clcb->p_attr_buf = (UINT8 *)GKI_getbuf(
GATT_MAX_ATTR_LEN
);
809
if (p_clcb->p_attr_buf && p_clcb->counter <=
GATT_MAX_ATTR_LEN
)
907
p_clcb->p_attr_buf = (UINT8 *)GKI_getbuf(
GATT_MAX_ATTR_LEN
);
910
if (p_clcb->p_attr_buf && offset <
GATT_MAX_ATTR_LEN
)
912
if ((len + offset) >
GATT_MAX_ATTR_LEN
)
913
len =
GATT_MAX_ATTR_LEN
- offset;
922
len + offset <
GATT_MAX_ATTR_LEN
)
[
all
...]
gatt_sr.c
485
GATT_MAX_ATTR_LEN
,
[
all
...]
/external/bluetooth/bluedroid/stack/gap/
gap_ble.c
297
if (strlen ((char *)p_dev_name) >
GATT_MAX_ATTR_LEN
)
298
p_value->len =
GATT_MAX_ATTR_LEN
;
/external/bluetooth/bluedroid/btif/src/
btif_gatt_util.c
139
memcpy(p_dest->attr_value.value, p_src->attr_value.value,
GATT_MAX_ATTR_LEN
);
/external/bluetooth/bluedroid/bta/include/
bta_gatt_api.h
158
#define BTA_GATT_MAX_ATTR_LEN
GATT_MAX_ATTR_LEN
[
all
...]
Completed in 28 milliseconds