Lines Matching refs:client_if
140 p_data->open.status, p_data->open.client_if, in btif_gattc_upstreams_evt()
156 p_data->status, p_data->close.client_if, in btif_gattc_upstreams_evt()
244 void btif_gattc_unregister_app_impl(int client_if) { in btif_gattc_unregister_app_impl() argument
245 BTA_GATTC_AppDeregister(client_if); in btif_gattc_unregister_app_impl()
248 bt_status_t btif_gattc_unregister_app(int client_if) { in btif_gattc_unregister_app() argument
250 return do_in_jni_thread(Bind(&btif_gattc_unregister_app_impl, client_if)); in btif_gattc_unregister_app()
253 void btif_gattc_open_impl(int client_if, RawAddress address, bool is_direct, in btif_gattc_open_impl() argument
278 client_if, address); in btif_gattc_open_impl()
309 BTA_GATTC_Open(client_if, address, is_direct, transport, opportunistic, in btif_gattc_open_impl()
313 bt_status_t btif_gattc_open(int client_if, const RawAddress& bd_addr, in btif_gattc_open() argument
318 return do_in_jni_thread(Bind(&btif_gattc_open_impl, client_if, bd_addr, in btif_gattc_open()
323 void btif_gattc_close_impl(int client_if, RawAddress address, int conn_id) { in btif_gattc_close_impl() argument
328 BTA_GATTC_CancelOpen(client_if, address, true); in btif_gattc_close_impl()
331 BTA_GATTC_CancelOpen(client_if, address, false); in btif_gattc_close_impl()
334 bt_status_t btif_gattc_close(int client_if, const RawAddress& bd_addr, in btif_gattc_close() argument
338 Bind(&btif_gattc_close_impl, client_if, bd_addr, conn_id)); in btif_gattc_close()
341 bt_status_t btif_gattc_refresh(int client_if, const RawAddress& bd_addr) { in btif_gattc_refresh() argument
483 void btif_gattc_reg_for_notification_impl(tGATT_IF client_if, in btif_gattc_reg_for_notification_impl() argument
487 BTA_GATTC_RegisterForNotifications(client_if, bda, handle); in btif_gattc_reg_for_notification_impl()
494 bt_status_t btif_gattc_reg_for_notification(int client_if, in btif_gattc_reg_for_notification() argument
500 Bind(base::IgnoreResult(&btif_gattc_reg_for_notification_impl), client_if, in btif_gattc_reg_for_notification()
504 void btif_gattc_dereg_for_notification_impl(tGATT_IF client_if, in btif_gattc_dereg_for_notification_impl() argument
508 BTA_GATTC_DeregisterForNotifications(client_if, bda, handle); in btif_gattc_dereg_for_notification_impl()
515 bt_status_t btif_gattc_dereg_for_notification(int client_if, in btif_gattc_dereg_for_notification() argument
522 client_if, bd_addr, handle)); in btif_gattc_dereg_for_notification()
525 bt_status_t btif_gattc_read_remote_rssi(int client_if, in btif_gattc_read_remote_rssi() argument
528 rssi_request_client_if = client_if; in btif_gattc_read_remote_rssi()