Searched defs:maxLen (Results 1 - 4 of 4) 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();
80 dest.writeInt(maxLen);
/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c62 static int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen);
713 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen) argument
716 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp453 status_t AudioEffect::guidToString(const effect_uuid_t *guid, char *str, size_t maxLen) argument
459 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;

Completed in 944 milliseconds