summaryrefslogtreecommitdiffstats
path: root/udrv/include
diff options
context:
space:
mode:
authorSen-Der Huang <sdhuang@broadcom.com>2012-04-26 10:34:24 -0700
committerMatthew Xie <mattx@google.com>2012-07-14 11:19:19 -0700
commitcff2b2b29bd9083f0b92e628b225a72a7ef52332 (patch)
tree7f7d627d5f92ca1c375b7bce000aadb16627db36 /udrv/include
parentaf7cc1ec86fc440de57a146a2bfa81e567a1303b (diff)
downloadexternal_bluetooth_bluedroid-cff2b2b29bd9083f0b92e628b225a72a7ef52332.zip
external_bluetooth_bluedroid-cff2b2b29bd9083f0b92e628b225a72a7ef52332.tar.gz
external_bluetooth_bluedroid-cff2b2b29bd9083f0b92e628b225a72a7ef52332.tar.bz2
Added reconnect and NV support; bug fixes: service mask setting for HDP during discovery and TX/RX ADPU size for echo test
Change-Id: Ic44fe0a852036c3e973b79f4ef6362a59c76a1c0 bta/dm/bta_dm_api.c btif/co/bta_hl_co.c btif/include/btif_hl.h btif/include/btif_storage.h btif/src/btif_hl.c btif/src/btif_storage.c stack/sdp/sdp_api.c udrv/include/unv.h udrv/ulinux/unv_linux.c
Diffstat (limited to 'udrv/include')
-rwxr-xr-x[-rw-r--r--]udrv/include/unv.h61
1 files changed, 60 insertions, 1 deletions
diff --git a/udrv/include/unv.h b/udrv/include/unv.h
index 87983da..ea1d817 100644..100755
--- a/udrv/include/unv.h
+++ b/udrv/include/unv.h
@@ -199,7 +199,66 @@ int unv_write_key( const char *path,
int unv_remove_key( const char *path,
const char *key );
-
+/*******************************************************************************
+**
+** Function unv_read_hl_apps_cb
+**
+** Description read HL applciation contorl block
+**
+** Parameters
+** path : path of file
+** value : pointer to value
+** value_size : size of value
+**
+** Returns 0 if successful, -1 if failure
+**
+******************************************************************************/
+int unv_read_hl_apps_cb(const char *path, char *value, int value_size);
+/*******************************************************************************
+**
+** Function unv_write_hl_apps_cb
+**
+** Description write HL applciation contorl block
+**
+** Parameters
+** path : path of file
+** value : pointer to value
+** value_size : size of value
+**
+** Returns 0 if successful, -1 if failure
+**
+******************************************************************************/
+int unv_write_hl_apps_cb(const char *path, char *value, int value_size);
+/*******************************************************************************
+**
+** Function unv_read_hl_data
+**
+** Description read HL applciation data
+**
+** Parameters
+** path : path of file
+** value : pointer to value
+** value_size : size of value
+**
+** Returns 0 if successful, -1 if failure
+**
+******************************************************************************/
+int unv_read_hl_data(const char *path, char *value, int value_size);
+/*******************************************************************************
+**
+** Function unv_write_hl_data
+**
+** Description write HL applciation data
+**
+** Parameters
+** path : path of file
+** value : pointer to value
+** value_size : size of value
+**
+** Returns 0 if successful, -1 if failure
+**
+******************************************************************************/
+int unv_write_hl_data(const char *path, char *value, int value_size);
#endif /* UNV_H */