Home
last modified time | relevance | path

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

/frameworks/native/opengl/tools/glgen/
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/opt/telephony/src/java/com/android/internal/telephony/cat/
DInput.java32 public int maxLen; field in Input
47 maxLen = 1; in Input()
63 maxLen = in.readInt(); in Input()
85 dest.writeInt(maxLen); in writeToParcel()
DCommandParamsFactory.java477 input.maxLen = 1; in processGetInkey()
529 input.maxLen = rawValue[valueIndex + 1] & 0xff; in processGetInput()
561 if (input.ucs2 && input.maxLen > MAX_UCS2_CHARS) { in processGetInput()
562 CatLog.d(this, "UCS2: received maxLen = " + input.maxLen + in processGetInput()
564 input.maxLen = MAX_UCS2_CHARS; in processGetInput()
565 } else if (!input.packed && input.maxLen > MAX_GSM7_DEFAULT_CHARS) { in processGetInput()
566 CatLog.d(this, "GSM 7Bit Default: received maxLen = " + input.maxLen + in processGetInput()
568 input.maxLen = MAX_GSM7_DEFAULT_CHARS; in processGetInput()
/frameworks/base/libs/androidfw/
DAsset.cpp491 size_t maxLen; in read() local
508 maxLen = mLength - mOffset; in read()
509 if (count > maxLen) in read()
510 count = maxLen; in read()
816 size_t maxLen; in read() local
832 maxLen = mUncompressedLen - mOffset; in read()
833 if (count > maxLen) in read()
834 count = maxLen; in read()
/frameworks/av/media/libeffects/factory/
DEffectsFactoryState.c95 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen) in uuidToString() argument
98 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x", in uuidToString()
DEffectsFactoryState.h51 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen);
/frameworks/native/cmds/flatland/
DMain.cpp709 size_t maxLen = 0; in maxBenchmarkNameLen() local
713 if (len > maxLen) { in maxBenchmarkNameLen()
714 maxLen = len; in maxBenchmarkNameLen()
717 return maxLen; in maxBenchmarkNameLen()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DAssertHelpers.java217 private static <T> String formatCollection(Collection<T> collection, int maxLen) { in formatCollection() argument
225 if ((builder.length() + val.length()) > maxLen - "...]".length()) { in formatCollection()
/frameworks/av/soundtrigger/
DSoundTrigger.cpp279 status_t SoundTrigger::guidToString(const sound_trigger_uuid_t *guid, char *str, size_t maxLen) in guidToString() argument
285 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x", in guidToString()
/frameworks/av/include/soundtrigger/
DSoundTrigger.h69 char *str, size_t maxLen);
/frameworks/av/media/libaudioclient/include/media/
DAudioEffect.h533 static status_t guidToString(const effect_uuid_t *guid, char *str, size_t maxLen);
/frameworks/av/include/media/
DAudioEffect.h533 static status_t guidToString(const effect_uuid_t *guid, char *str, size_t maxLen);
/frameworks/av/media/libaudioclient/
DAudioEffect.cpp569 status_t AudioEffect::guidToString(const effect_uuid_t *guid, char *str, size_t maxLen) in guidToString() argument
575 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x", in guidToString()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiApConfigStoreTest.java690 int maxLen = WifiApConfigStore.PSK_MAX_LEN; in testWpa2PskNetworkConfigInValidateApWifiConfigurationCheck() local
693 generateRandomString(mRandom.nextInt(maxLen - minLen) + minLen); in testWpa2PskNetworkConfigInValidateApWifiConfigurationCheck()