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

/frameworks/native/opengl/tools/glgen/
H A Dconvert_to_java.py24 maxLen = 0 variable
28 maxLen = max(maxLen, len(defineValuePair[0])) variable
31 print(' public static final int {0[0]:<{1}} = {0[1]};'.format(define, maxLen))
/frameworks/av/media/libeffects/factory/
H A DEffectsFactoryState.h51 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen);
H A DEffectsFactoryState.c95 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen) argument
98 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java32 public int maxLen; field in class:Input
47 maxLen = 1;
63 maxLen = in.readInt();
85 dest.writeInt(maxLen);
H A DCommandParamsFactory.java481 input.maxLen = 1;
533 input.maxLen = rawValue[valueIndex + 1] & 0xff;
563 // Truncate the maxLen if it exceeds the max number of chars that can
565 if (input.ucs2 && input.maxLen > MAX_UCS2_CHARS) {
566 CatLog.d(this, "UCS2: received maxLen = " + input.maxLen +
568 input.maxLen = MAX_UCS2_CHARS;
569 } else if (!input.packed && input.maxLen > MAX_GSM7_DEFAULT_CHARS) {
570 CatLog.d(this, "GSM 7Bit Default: received maxLen = " + input.maxLen
[all...]
/frameworks/av/include/soundtrigger/
H A DSoundTrigger.h66 char *str, size_t maxLen);
/frameworks/base/libs/androidfw/
H A DAsset.cpp489 size_t maxLen; local
506 maxLen = mLength - mOffset;
507 if (count > maxLen)
508 count = maxLen;
814 size_t maxLen; local
830 maxLen = mUncompressedLen - mOffset;
831 if (count > maxLen)
832 count = maxLen;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DAssertHelpers.java217 private static <T> String formatCollection(Collection<T> collection, int maxLen) { argument
225 if ((builder.length() + val.length()) > maxLen - "...]".length()) {
/frameworks/native/cmds/flatland/
H A DMain.cpp709 size_t maxLen = 0; local
713 if (len > maxLen) {
714 maxLen = len;
717 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.h400 static status_t guidToString(const effect_uuid_t *guid, char *str, size_t maxLen);
/frameworks/av/media/libaudioclient/include/media/
H A DAudioEffect.h400 static status_t guidToString(const effect_uuid_t *guid, char *str, size_t maxLen);
/frameworks/av/media/libaudioclient/
H A DAudioEffect.cpp477 status_t AudioEffect::guidToString(const effect_uuid_t *guid, char *str, size_t maxLen) argument
483 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x",
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiApConfigStoreTest.java568 int maxLen = WifiApConfigStore.PSK_MAX_LEN;
571 generateRandomString(mRandom.nextInt(maxLen - minLen) + minLen);

Completed in 323 milliseconds