Home
last modified time | relevance | path

Searched refs:hz (Results 1 – 1 of 1) sorted by relevance

/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
DSensorActivity.java282 String hz = mLastActualUpdateMs <= 0 ? "--" : in handleMessage() local
284 mTextActualHz.setText(hz); in handleMessage()
294 String hz = mLastActualUpdateMs <= 0 ? "--" : in handleMessage() local
296 mTextActualHz.setText(hz); in handleMessage()
323 int hz = Integer.parseInt(str.trim()); in updateSampleRate() local
326 if (hz <= 0 || hz > 50) { in updateSampleRate()
327 hz = 50; in updateSampleRate()
330 if (hz != mTargetSampleRate) { in updateSampleRate()
331 mTargetSampleRate = hz; in updateSampleRate()
333 mSensorHandler.setUpdateTargetMs(hz <= 0 ? 0 : (int)(1000.0f / hz)); in updateSampleRate()