Lines Matching refs:client_if

139                 p_data->open.status, p_data->open.client_if,
155 p_data->status, p_data->close.client_if,
243 void btif_gattc_unregister_app_impl(int client_if) {
244 BTA_GATTC_AppDeregister(client_if);
247 bt_status_t btif_gattc_unregister_app(int client_if) {
249 return do_in_jni_thread(Bind(&btif_gattc_unregister_app_impl, client_if));
252 void btif_gattc_open_impl(int client_if, RawAddress address, bool is_direct,
277 client_if, address);
309 BTA_GATTC_Open(client_if, address, is_direct, transport, opportunistic,
313 bt_status_t btif_gattc_open(int client_if, const RawAddress& bd_addr,
318 return do_in_jni_thread(Bind(&btif_gattc_open_impl, client_if, bd_addr,
323 void btif_gattc_close_impl(int client_if, RawAddress address, int conn_id) {
328 BTA_GATTC_CancelOpen(client_if, address, true);
331 BTA_GATTC_CancelOpen(client_if, address, false);
334 bt_status_t btif_gattc_close(int client_if, const RawAddress& bd_addr,
338 Bind(&btif_gattc_close_impl, client_if, bd_addr, conn_id));
341 bt_status_t btif_gattc_refresh(int client_if, const RawAddress& bd_addr) {
490 void btif_gattc_reg_for_notification_impl(tBTA_GATTC_IF client_if,
494 BTA_GATTC_RegisterForNotifications(client_if, bda, handle);
501 bt_status_t btif_gattc_reg_for_notification(int client_if,
507 Bind(base::IgnoreResult(&btif_gattc_reg_for_notification_impl), client_if,
511 void btif_gattc_dereg_for_notification_impl(tBTA_GATTC_IF client_if,
515 BTA_GATTC_DeregisterForNotifications(client_if, bda, handle);
522 bt_status_t btif_gattc_dereg_for_notification(int client_if,
529 client_if, bd_addr, handle));
532 bt_status_t btif_gattc_read_remote_rssi(int client_if,
535 rssi_request_client_if = client_if;