Searched defs:maxLen (Results 1 - 6 of 6) 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);
/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/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/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/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",
/frameworks/native/cmds/flatland/
H A DMain.cpp715 size_t maxLen = 0; local
719 if (len > maxLen) {
720 maxLen = len;
723 return maxLen;

Completed in 203 milliseconds