Searched refs:formatType (Results 1 - 25 of 39) sorted by relevance

12

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java433 * <p>The formatType parameter determines how the characteristic value
434 * is to be interpreted. For example, settting formatType to
439 * @param formatType The format type used to interpret the characteristic
445 public Integer getIntValue(int formatType, int offset) { argument
446 if ((offset + getTypeLen(formatType)) > mValue.length) return null;
448 switch (formatType) {
477 * @param formatType The format type used to interpret the characteristic
483 public Float getFloatValue(int formatType, int offset) { argument
484 if ((offset + getTypeLen(formatType)) > mValue.length) return null;
486 switch (formatType) {
538 setValue(int value, int formatType, int offset) argument
585 setValue(int mantissa, int exponent, int formatType, int offset) argument
630 getTypeLen(int formatType) argument
[all...]
/frameworks/wilhelm/src/
H A Ddata.c342 SLuint32 formatType; local
344 pDataFormat->mFormatType = formatType = SL_DATAFORMAT_NULL;
346 formatType = *(SLuint32 *)pFormat;
347 switch (formatType) {
556 SL_LOGE("%s: formatType=%u", name, (unsigned) formatType);
562 if ((SL_RESULT_SUCCESS == result) && (formatType != pDataFormat->mFormatType)) {
563 SL_LOGE("%s: formatType changed from %u to %u", name, formatType,
573 switch (formatType) {
[all...]
/frameworks/wilhelm/src/desktop/
H A DSndFile.c141 SLuint32 formatType = *(SLuint32 *)pAudioSrc->pFormat; local
158 switch (formatType) {
/frameworks/wilhelm/tests/listening/
H A DseekTorture.c65 mime.formatType = SL_DATAFORMAT_MIME;
/frameworks/wilhelm/tests/sandbox/
H A Durimime.c61 format_mime.formatType = SL_DATAFORMAT_MIME;
H A Dxa.c81 fmtMime.formatType = XA_DATAFORMAT_MIME;
H A Dconfigbq.c108 format_pcm.formatType = SL_DATAFORMAT_PCM;
H A Dintbufq.c112 pcm.formatType = SL_DATAFORMAT_PCM;
H A Dsrcsink.c43 format_pcm.formatType = SL_DATAFORMAT_PCM;
/frameworks/wilhelm/src/android/
H A DAudioRecorder_to_android.cpp172 SLuint32 formatType = *(SLuint32 *)pAudioSnk->pFormat; local
173 if (SL_DATAFORMAT_PCM == formatType) {
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeToBuffQueue.cpp334 decMime.formatType = SL_DATAFORMAT_MIME;
346 pcm.formatType = SL_DATAFORMAT_PCM;
H A DslesTestBassBoostPath.cpp131 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTestPlayFdPath.cpp120 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTestSawtoothBufferQueue.cpp169 pcm.formatType = SL_DATAFORMAT_PCM;
H A DslesTestVirtualizerPath.cpp132 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTestEqFdPath.cpp136 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTestEqOutputPath.cpp143 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTestRecBuffQueue.cpp204 pcm.formatType = SL_DATAFORMAT_PCM;
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestLoopUri.cpp171 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTestPlayStreamType.cpp118 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTestPlayUri.cpp177 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTestPlayUri2.cpp127 mime.formatType = SL_DATAFORMAT_MIME;
H A DslesTest_playStates.cpp113 mime.formatType = SL_DATAFORMAT_MIME;
/frameworks/wilhelm/tests/
H A DmimeUri_test.cpp151 mime.formatType = SL_DATAFORMAT_MIME;
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1192 int formatType = defaultFormattingType;
1196 formatType = FORMAT_NANP;
1199 formatType = FORMAT_JAPAN;
1201 formatType = FORMAT_UNKNOWN;
1205 switch (formatType) {

Completed in 502 milliseconds

12