Searched refs:maxLen (Results 1 - 9 of 9) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java32 public int maxLen; field in class:Input
46 maxLen = 1;
61 maxLen = in.readInt();
82 dest.writeInt(maxLen);
H A DCommandParamsFactory.java427 input.maxLen = 1;
478 input.maxLen = rawValue[valueIndex + 1] & 0xff;
/frameworks/av/include/soundtrigger/
H A DSoundTrigger.h66 char *str, size_t maxLen);
/frameworks/base/libs/androidfw/
H A DAsset.cpp438 size_t maxLen; local
455 maxLen = mLength - mOffset;
456 if (count > maxLen)
457 count = maxLen;
762 size_t maxLen; local
778 maxLen = mUncompressedLen - mOffset;
779 if (count > maxLen)
780 count = maxLen;
/frameworks/native/cmds/flatland/
H A DMain.cpp715 size_t maxLen = 0; local
719 if (len > maxLen) {
720 maxLen = len;
723 return maxLen;
/frameworks/av/soundtrigger/
H A DSoundTrigger.cpp267 status_t SoundTrigger::guidToString(const sound_trigger_uuid_t *guid, char *str, size_t maxLen) argument
273 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/av/include/media/
H A DAudioEffect.h393 static status_t guidToString(const effect_uuid_t *guid, char *str, size_t maxLen);
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp467 status_t AudioEffect::guidToString(const effect_uuid_t *guid, char *str, size_t maxLen) argument
473 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c71 static int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen);
919 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen) argument
922 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",

Completed in 2061 milliseconds