Home | History | Annotate | Download | only in jni

Lines Matching full:clientif

200 void btgattc_register_app_cb(int status, int clientIf, const Uuid& app_uuid) {
204 clientIf, UUID_PARAMS(app_uuid));
229 void btgattc_open_cb(int conn_id, int status, int clientIf,
236 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onConnected, clientIf,
240 void btgattc_close_cb(int conn_id, int status, int clientIf,
247 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onDisconnected, clientIf,
952 jint clientIf) {
954 sGattIf->client->unregister_client(clientIf);
986 static void gattClientConnectNative(JNIEnv* env, jobject object, jint clientif,
992 sGattIf->client->connect(clientif, str2addr(env, address), isDirect,
997 jint clientIf, jstring address,
1000 sGattIf->client->disconnect(clientIf, str2addr(env, address), conn_id);
1004 jint clientIf, jstring address,
1012 static void readClientPhyCb(uint8_t clientIf, RawAddress bda, uint8_t tx_phy,
1020 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onClientPhyRead, clientIf,
1024 static void gattClientReadPhyNative(JNIEnv* env, jobject object, jint clientIf,
1029 sGattIf->client->read_phy(bda, base::Bind(&readClientPhyCb, clientIf, bda));
1032 static void gattClientRefreshNative(JNIEnv* env, jobject object, jint clientIf,
1036 sGattIf->client->refresh(clientIf, str2addr(env, address));
1142 JNIEnv* env, jobject object, jint clientIf, jstring address, jint handle,
1148 sGattIf->client->register_for_notification(clientIf, bd_addr, handle);
1150 sGattIf->client->deregister_for_notification(clientIf, bd_addr, handle);
1154 jint clientif, jstring address) {
1157 sGattIf->client->read_remote_rssi(clientif, str2addr(env, address));