Searched defs:inUse (Results 1 - 3 of 3) sorted by path

/frameworks/av/media/libeffects/dynamicsproc/dsp/
H A DDPBase.cpp30 void DPStage::init(bool inUse, bool enabled) { argument
31 mInUse = inUse;
39 void DPBandStage::init(bool inUse, bool enabled, int bandCount) { argument
40 DPStage::init(inUse, enabled);
41 mBandCount = inUse ? bandCount : 0;
109 void DPEq::init(bool inUse, bool enabled, uint32_t bandCount) { argument
110 DPBandStage::init(inUse, enabled, bandCount);
131 void DPMbc::init(bool inUse, bool enabled, uint32_t bandCount) { argument
132 DPBandStage::init(inUse, enabled, bandCount);
165 void DPLimiter::init(bool inUse, boo argument
[all...]
/frameworks/base/libs/hwui/utils/
H A DFatVector.h51 bool inUse = false; member in struct:android::uirenderer::InlineStdAllocator::Allocation
62 if (!mAllocation.inUse && num <= SIZE) {
63 mAllocation.inUse = true;
72 mAllocation.inUse = false;
/frameworks/base/media/java/android/media/audiofx/
H A DDynamicsProcessing.java314 * @param inUse true if this stage is set to be used. False otherwise. Stages that are not
315 * set "inUse" at initialization time are not available to be used at any time.
319 public Stage(boolean inUse, boolean enabled) { argument
320 mInUse = inUse;
340 * returns inUse state of the stage.
341 * @return inUse state of the stage. True if this stage is currently used to process sound.
366 * @param inUse true if this stage is set to be used. False otherwise. Stages that are not
367 * set "inUse" at initialization time are not available to be used at any time.
370 * @param bandCount number of bands this stage will handle. If stage is not inUse, bandcount
373 public BandStage(boolean inUse, boolea argument
721 Eq(boolean inUse, boolean enabled, int bandCount) argument
808 Mbc(boolean inUse, boolean enabled, int bandCount) argument
917 Limiter(boolean inUse, boolean enabled, int linkGroup, float attackTime, float releaseTime, float ratio, float threshold, float postGain) argument
[all...]

Completed in 82 milliseconds