Home | History | Annotate | Download | only in jni

Lines Matching refs:server_if

643 void btgatts_register_app_cb(int status, int server_if, bt_uuid_t *uuid)
647 , status, server_if, UUID_PARAMS(uuid));
651 void btgatts_connection_cb(int conn_id, int server_if, int connected, bt_bdaddr_t *bda)
662 address, connected, conn_id, server_if);
667 void btgatts_service_added_cb(int status, int server_if,
672 server_if, SRVC_ID_PARAMS(srvc_id),
677 void btgatts_included_service_added_cb(int status, int server_if,
683 status, server_if, srvc_handle, incl_srvc_handle);
687 void btgatts_characteristic_added_cb(int status, int server_if, bt_uuid_t *char_id,
692 status, server_if, UUID_PARAMS(char_id),
697 void btgatts_descriptor_added_cb(int status, int server_if,
703 status, server_if, UUID_PARAMS(descr_id),
708 void btgatts_service_started_cb(int status, int server_if, int srvc_handle)
712 server_if, srvc_handle);
716 void btgatts_service_stopped_cb(int status, int server_if, int srvc_handle)
720 server_if, srvc_handle);
724 void btgatts_service_deleted_cb(int status, int server_if, int srvc_handle)
728 server_if, srvc_handle);
1641 jint server_if, jstring address, jboolean is_direct, jint transport)
1649 sGattIf->server->connect(server_if, &bd_addr, is_direct, transport);
1662 jint server_if, jint service_type, jint service_id_inst_id,
1673 sGattIf->server->add_service(server_if, &srvc_id, num_handles);
1677 jint server_if, jint svc_handle, jint included_svc_handle)
1680 sGattIf->server->add_included_service(server_if, svc_handle,
1685 jint server_if, jint svc_handle,
1694 sGattIf->server->add_characteristic(server_if, svc_handle,
1699 jint server_if, jint svc_handle,
1708 sGattIf->server->add_descriptor(server_if, svc_handle, &uuid, permissions);
1712 jint server_if, jint svc_handle, jint transport )
1715 sGattIf->server->start_service(server_if, svc_handle, transport);
1719 jint server_if, jint svc_handle)
1722 sGattIf->server->stop_service(server_if, svc_handle);
1726 jint server_if, jint svc_handle)
1729 sGattIf->server->delete_service(server_if, svc_handle);
1733 jint server_if, jint attr_handle, jint conn_id, jbyteArray val)
1740 sGattIf->server->send_indication(server_if, attr_handle, conn_id, val_len,
1746 jint server_if, jint attr_handle, jint conn_id, jbyteArray val)
1753 sGattIf->server->send_indication(server_if, attr_handle, conn_id, val_len,
1759 jint server_if, jint conn_id, jint trans_id, jint status,