Home | History | Annotate | Download | only in activities

Lines Matching refs:hz

282                     String hz = mLastActualUpdateMs <= 0 ? "--" :
284 mTextActualHz.setText(hz);
294 String hz = mLastActualUpdateMs <= 0 ? "--" :
296 mTextActualHz.setText(hz);
323 int hz = Integer.parseInt(str.trim());
325 // Cap the value. 50 Hz is a reasonable max value for the emulator.
326 if (hz <= 0 || hz > 50) {
327 hz = 50;
330 if (hz != mTargetSampleRate) {
331 mTargetSampleRate = hz;
333 mSensorHandler.setUpdateTargetMs(hz <= 0 ? 0 : (int)(1000.0f / hz));