Searched defs:valueBuf (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/cmds/screenrecord/
H A DOverlay.cpp377 char valueBuf[PROPERTY_VALUE_MAX]; local
379 property_get(kPropertyNames[i], valueBuf, "");
380 if (valueBuf[0] == '\0') {
383 String8 str(String8::format("%s: [%s]", kPropertyNames[i], valueBuf));
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java209 private int byteArrayToInt(byte[] valueBuf, int offset) { argument
210 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
215 private short byteArrayToShort(byte[] valueBuf, int offset) { argument
216 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
H A DEqualizerTest.java341 private int byteArrayToInt(byte[] valueBuf, int offset) { argument
342 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
347 private short byteArrayToShort(byte[] valueBuf, int offset) { argument
348 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
H A DPresetReverbTest.java235 private int byteArrayToInt(byte[] valueBuf, int offset) { argument
236 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
241 private short byteArrayToShort(byte[] valueBuf, int offset) { argument
242 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
H A DVirtualizerTest.java206 private int byteArrayToInt(byte[] valueBuf, int offset) { argument
207 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
212 private short byteArrayToShort(byte[] valueBuf, int offset) { argument
213 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaAudioEffectTest.java1493 protected int byteArrayToInt(byte[] valueBuf) { argument
1494 return byteArrayToInt(valueBuf, 0);
1498 protected int byteArrayToInt(byte[] valueBuf, int offset) { argument
1499 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
1512 protected short byteArrayToShort(byte[] valueBuf) { argument
1513 return byteArrayToShort(valueBuf, 0);
1516 protected short byteArrayToShort(byte[] valueBuf, int offset) { argument
1517 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
/frameworks/base/media/java/android/media/audiofx/
H A DAudioEffect.java1289 public static int byteArrayToInt(byte[] valueBuf) { argument
1290 return byteArrayToInt(valueBuf, 0);
1297 public static int byteArrayToInt(byte[] valueBuf, int offset) { argument
1298 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
1317 public static short byteArrayToShort(byte[] valueBuf) { argument
1318 return byteArrayToShort(valueBuf, 0);
1324 public static short byteArrayToShort(byte[] valueBuf, int offset) { argument
1325 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp797 int32_t *valueBuf = reinterpret_cast<int32_t*>(value); local
812 if (track.mainBuffer != valueBuf) {
813 track.mainBuffer = valueBuf;
814 ALOGV("setParameter(TRACK, MAIN_BUFFER, %p)", valueBuf);
819 if (track.auxBuffer != valueBuf) {
820 track.auxBuffer = valueBuf;
821 ALOGV("setParameter(TRACK, AUX_BUFFER, %p)", valueBuf);

Completed in 1362 milliseconds