Lines Matching full:clientif
217 void btgattc_register_app_cb(int status, int clientIf, bt_uuid_t *app_uuid)
221 clientIf, UUID_PARAMS(app_uuid));
246 void btgattc_open_cb(int conn_id, int status, int clientIf, bt_bdaddr_t* bda)
257 clientIf, conn_id, status, address);
262 void btgattc_close_cb(int conn_id, int status, int clientIf, bt_bdaddr_t* bda)
272 clientIf, conn_id, status, address);
1001 static void gattClientUnregisterAppNative(JNIEnv* env, jobject object, jint clientIf)
1004 sGattIf->client->unregister_client(clientIf);
1013 static void gattClientConnectNative(JNIEnv* env, jobject object, jint clientif,
1020 sGattIf->client->connect(clientif, &bda, isDirect, transport);
1023 static void gattClientDisconnectNative(JNIEnv* env, jobject object, jint clientIf,
1029 sGattIf->client->disconnect(clientIf, &bda, conn_id);
1032 static void gattClientRefreshNative(JNIEnv* env, jobject object, jint clientIf,
1039 sGattIf->client->refresh(clientIf, &bda);
1120 jint clientIf, jstring address, jint handle, jboolean enable)
1129 sGattIf->client->register_for_notification(clientIf, &bd_addr, handle);
1131 sGattIf->client->deregister_for_notification(clientIf, &bd_addr, handle);
1134 static void gattClientReadRemoteRssiNative(JNIEnv* env, jobject object, jint clientif,
1142 sGattIf->client->read_remote_rssi(clientif, &bda);