Lines Matching refs:methodId
1397 jmethodID methodId = 0; in gattClientScanFilterParamAddNative() local
1400 methodId = env->GetMethodID(filtparam.get(), "getClientIf", "()I"); in gattClientScanFilterParamAddNative()
1401 uint8_t client_if = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1403 methodId = env->GetMethodID(filtparam.get(), "getFiltIndex", "()I"); in gattClientScanFilterParamAddNative()
1404 uint8_t filt_index = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1406 methodId = env->GetMethodID(filtparam.get(), "getFeatSeln", "()I"); in gattClientScanFilterParamAddNative()
1407 filt_params->feat_seln = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1409 methodId = env->GetMethodID(filtparam.get(), "getListLogicType", "()I"); in gattClientScanFilterParamAddNative()
1410 filt_params->list_logic_type = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1412 methodId = env->GetMethodID(filtparam.get(), "getFiltLogicType", "()I"); in gattClientScanFilterParamAddNative()
1413 filt_params->filt_logic_type = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1415 methodId = env->GetMethodID(filtparam.get(), "getDelyMode", "()I"); in gattClientScanFilterParamAddNative()
1416 filt_params->dely_mode = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1418 methodId = env->GetMethodID(filtparam.get(), "getFoundTimeout", "()I"); in gattClientScanFilterParamAddNative()
1419 filt_params->found_timeout = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1421 methodId = env->GetMethodID(filtparam.get(), "getLostTimeout", "()I"); in gattClientScanFilterParamAddNative()
1422 filt_params->lost_timeout = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1424 methodId = env->GetMethodID(filtparam.get(), "getFoundTimeOutCnt", "()I"); in gattClientScanFilterParamAddNative()
1425 filt_params->found_timeout_cnt = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1427 methodId = env->GetMethodID(filtparam.get(), "getNumOfTrackEntries", "()I"); in gattClientScanFilterParamAddNative()
1428 filt_params->num_of_tracking_entries = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1430 methodId = env->GetMethodID(filtparam.get(), "getRSSIHighValue", "()I"); in gattClientScanFilterParamAddNative()
1431 filt_params->rssi_high_thres = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1433 methodId = env->GetMethodID(filtparam.get(), "getRSSILowValue", "()I"); in gattClientScanFilterParamAddNative()
1434 filt_params->rssi_low_thres = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1937 jmethodID methodId; in parseParams() local
1939 methodId = env->GetMethodID(clazz, "isConnectable", "()Z"); in parseParams()
1940 jboolean isConnectable = env->CallBooleanMethod(i, methodId); in parseParams()
1941 methodId = env->GetMethodID(clazz, "isScannable", "()Z"); in parseParams()
1942 jboolean isScannable = env->CallBooleanMethod(i, methodId); in parseParams()
1943 methodId = env->GetMethodID(clazz, "isLegacy", "()Z"); in parseParams()
1944 jboolean isLegacy = env->CallBooleanMethod(i, methodId); in parseParams()
1945 methodId = env->GetMethodID(clazz, "isAnonymous", "()Z"); in parseParams()
1946 jboolean isAnonymous = env->CallBooleanMethod(i, methodId); in parseParams()
1947 methodId = env->GetMethodID(clazz, "includeTxPower", "()Z"); in parseParams()
1948 jboolean includeTxPower = env->CallBooleanMethod(i, methodId); in parseParams()
1949 methodId = env->GetMethodID(clazz, "getPrimaryPhy", "()I"); in parseParams()
1950 uint8_t primaryPhy = env->CallIntMethod(i, methodId); in parseParams()
1951 methodId = env->GetMethodID(clazz, "getSecondaryPhy", "()I"); in parseParams()
1952 uint8_t secondaryPhy = env->CallIntMethod(i, methodId); in parseParams()
1953 methodId = env->GetMethodID(clazz, "getInterval", "()I"); in parseParams()
1954 uint32_t interval = env->CallIntMethod(i, methodId); in parseParams()
1955 methodId = env->GetMethodID(clazz, "getTxPowerLevel", "()I"); in parseParams()
1956 int8_t txPowerLevel = env->CallIntMethod(i, methodId); in parseParams()
1990 jmethodID methodId; in parsePeriodicParams() local
1992 methodId = env->GetMethodID(clazz, "getIncludeTxPower", "()Z"); in parsePeriodicParams()
1993 jboolean includeTxPower = env->CallBooleanMethod(i, methodId); in parsePeriodicParams()
1994 methodId = env->GetMethodID(clazz, "getInterval", "()I"); in parsePeriodicParams()
1995 uint16_t interval = env->CallIntMethod(i, methodId); in parsePeriodicParams()