HomeSort by relevance Sort by last modified time
    Searched refs:updatePeriod (Results 1 - 5 of 5) sorted by null

  /frameworks/av/media/libaudioclient/
AudioRecord.cpp 508 status_t AudioRecord::setPositionUpdatePeriod(uint32_t updatePeriod)
516 mNewPosition = mProxy->getPosition() + updatePeriod;
517 mUpdatePeriod = updatePeriod;
526 status_t AudioRecord::getPositionUpdatePeriod(uint32_t *updatePeriod) const
528 if (updatePeriod == NULL) {
533 *updatePeriod = mUpdatePeriod;
    [all...]
AudioTrack.cpp     [all...]
  /frameworks/av/media/libaudioclient/include/media/
AudioRecord.h 317 * Calling setPositionUpdatePeriod with updatePeriod == 0 cancels new position notification
325 * updatePeriod: position update notification period expressed in frames.
331 status_t setPositionUpdatePeriod(uint32_t updatePeriod);
332 status_t getPositionUpdatePeriod(uint32_t *updatePeriod) const;
    [all...]
AudioTrack.h 523 * Calling setPositionUpdatePeriod with updatePeriod == 0 cancels new position notification
531 * updatePeriod: position update notification period expressed in frames.
537 status_t setPositionUpdatePeriod(uint32_t updatePeriod);
538 status_t getPositionUpdatePeriod(uint32_t *updatePeriod) const;
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
PlaybackOverlayFragment.java 343 int updatePeriod = getUpdatePeriod();
344 int currentTime = mPlaybackControlsRow.getCurrentTime() + updatePeriod;
352 mHandler.postDelayed(this, updatePeriod);

Completed in 950 milliseconds