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

  /frameworks/av/services/audioflinger/
AudioMixer.h 116 uint32_t trackNames() const { return mTrackNames; }
244 uint32_t mTrackNames;
AudioMixer.cpp 101 : mTrackNames(0), mConfiguredNames((maxNumTracks >= 32 ? 0 : 1 << maxNumTracks) - 1),
130 // tracks[i] should only be referenced if (mTrackNames & (1 << i)) != 0
131 // and mTrackNames is initially 0. However, leave it here until that's verified.
181 uint32_t names = (~mTrackNames) & mConfiguredNames;
185 mTrackNames |= 1 << n;
389 mTrackNames &= ~(1<<name);
    [all...]

Completed in 158 milliseconds