• Home
  • Raw
  • Download

Lines Matching refs:methodId

1393   jmethodID methodId = 0;  in gattClientScanFilterParamAddNative()  local
1396 methodId = env->GetMethodID(filtparam.get(), "getClientIf", "()I"); in gattClientScanFilterParamAddNative()
1397 uint8_t client_if = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1399 methodId = env->GetMethodID(filtparam.get(), "getFiltIndex", "()I"); in gattClientScanFilterParamAddNative()
1400 uint8_t filt_index = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1402 methodId = env->GetMethodID(filtparam.get(), "getFeatSeln", "()I"); in gattClientScanFilterParamAddNative()
1403 filt_params->feat_seln = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1405 methodId = env->GetMethodID(filtparam.get(), "getListLogicType", "()I"); in gattClientScanFilterParamAddNative()
1406 filt_params->list_logic_type = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1408 methodId = env->GetMethodID(filtparam.get(), "getFiltLogicType", "()I"); in gattClientScanFilterParamAddNative()
1409 filt_params->filt_logic_type = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1411 methodId = env->GetMethodID(filtparam.get(), "getDelyMode", "()I"); in gattClientScanFilterParamAddNative()
1412 filt_params->dely_mode = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1414 methodId = env->GetMethodID(filtparam.get(), "getFoundTimeout", "()I"); in gattClientScanFilterParamAddNative()
1415 filt_params->found_timeout = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1417 methodId = env->GetMethodID(filtparam.get(), "getLostTimeout", "()I"); in gattClientScanFilterParamAddNative()
1418 filt_params->lost_timeout = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1420 methodId = env->GetMethodID(filtparam.get(), "getFoundTimeOutCnt", "()I"); in gattClientScanFilterParamAddNative()
1421 filt_params->found_timeout_cnt = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1423 methodId = env->GetMethodID(filtparam.get(), "getNumOfTrackEntries", "()I"); in gattClientScanFilterParamAddNative()
1424 filt_params->num_of_tracking_entries = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1426 methodId = env->GetMethodID(filtparam.get(), "getRSSIHighValue", "()I"); in gattClientScanFilterParamAddNative()
1427 filt_params->rssi_high_thres = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1429 methodId = env->GetMethodID(filtparam.get(), "getRSSILowValue", "()I"); in gattClientScanFilterParamAddNative()
1430 filt_params->rssi_low_thres = env->CallIntMethod(params, methodId); in gattClientScanFilterParamAddNative()
1933 jmethodID methodId; in parseParams() local
1935 methodId = env->GetMethodID(clazz, "isConnectable", "()Z"); in parseParams()
1936 jboolean isConnectable = env->CallBooleanMethod(i, methodId); in parseParams()
1937 methodId = env->GetMethodID(clazz, "isScannable", "()Z"); in parseParams()
1938 jboolean isScannable = env->CallBooleanMethod(i, methodId); in parseParams()
1939 methodId = env->GetMethodID(clazz, "isLegacy", "()Z"); in parseParams()
1940 jboolean isLegacy = env->CallBooleanMethod(i, methodId); in parseParams()
1941 methodId = env->GetMethodID(clazz, "isAnonymous", "()Z"); in parseParams()
1942 jboolean isAnonymous = env->CallBooleanMethod(i, methodId); in parseParams()
1943 methodId = env->GetMethodID(clazz, "includeTxPower", "()Z"); in parseParams()
1944 jboolean includeTxPower = env->CallBooleanMethod(i, methodId); in parseParams()
1945 methodId = env->GetMethodID(clazz, "getPrimaryPhy", "()I"); in parseParams()
1946 uint8_t primaryPhy = env->CallIntMethod(i, methodId); in parseParams()
1947 methodId = env->GetMethodID(clazz, "getSecondaryPhy", "()I"); in parseParams()
1948 uint8_t secondaryPhy = env->CallIntMethod(i, methodId); in parseParams()
1949 methodId = env->GetMethodID(clazz, "getInterval", "()I"); in parseParams()
1950 uint32_t interval = env->CallIntMethod(i, methodId); in parseParams()
1951 methodId = env->GetMethodID(clazz, "getTxPowerLevel", "()I"); in parseParams()
1952 int8_t txPowerLevel = env->CallIntMethod(i, methodId); in parseParams()
1986 jmethodID methodId; in parsePeriodicParams() local
1988 methodId = env->GetMethodID(clazz, "getIncludeTxPower", "()Z"); in parsePeriodicParams()
1989 jboolean includeTxPower = env->CallBooleanMethod(i, methodId); in parsePeriodicParams()
1990 methodId = env->GetMethodID(clazz, "getInterval", "()I"); in parsePeriodicParams()
1991 uint16_t interval = env->CallIntMethod(i, methodId); in parsePeriodicParams()