Searched refs:touchData (Results 1 – 2 of 2) sorted by relevance
143 final JSONObject touchData = new JSONObject( in syncTouchPressure() local145 if (touchData.has("min")) { in syncTouchPressure()146 mPressureMin = Math.min(mPressureMin, touchData.getDouble("min")); in syncTouchPressure()148 if (touchData.has("max")) { in syncTouchPressure()149 mPressureMax = Math.max(mPressureMax, touchData.getDouble("max")); in syncTouchPressure()152 touchData.put("min", mPressureMin); in syncTouchPressure()153 touchData.put("max", mPressureMax); in syncTouchPressure()156 touchData.toString()); in syncTouchPressure()
217 val touchData = JSONObject( in loadDevicePressureData() constant219 if (touchData.has("min")) devicePressureMin = touchData.getDouble("min").toFloat() in loadDevicePressureData()220 if (touchData.has("max")) devicePressureMax = touchData.getDouble("max").toFloat() in loadDevicePressureData()