/frameworks/native/opengl/tools/glgen/ |
D | convert_to_java.py | 24 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/ |
D | Input.java | 32 public int maxLen; field in Input 47 maxLen = 1; in Input() 63 maxLen = in.readInt(); in Input() 85 dest.writeInt(maxLen); in writeToParcel()
|
D | CommandParamsFactory.java | 477 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/ |
D | Asset.cpp | 491 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/ |
D | EffectsFactoryState.c | 95 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()
|
D | EffectsFactoryState.h | 51 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen);
|
/frameworks/native/cmds/flatland/ |
D | Main.cpp | 709 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/ |
D | AssertHelpers.java | 217 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/ |
D | SoundTrigger.cpp | 279 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/ |
D | SoundTrigger.h | 69 char *str, size_t maxLen);
|
/frameworks/av/media/libaudioclient/include/media/ |
D | AudioEffect.h | 533 static status_t guidToString(const effect_uuid_t *guid, char *str, size_t maxLen);
|
/frameworks/av/include/media/ |
D | AudioEffect.h | 533 static status_t guidToString(const effect_uuid_t *guid, char *str, size_t maxLen);
|
/frameworks/av/media/libaudioclient/ |
D | AudioEffect.cpp | 569 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/ |
D | WifiApConfigStoreTest.java | 690 int maxLen = WifiApConfigStore.PSK_MAX_LEN; in testWpa2PskNetworkConfigInValidateApWifiConfigurationCheck() local 693 generateRandomString(mRandom.nextInt(maxLen - minLen) + minLen); in testWpa2PskNetworkConfigInValidateApWifiConfigurationCheck()
|