Searched refs:maxLen (Results 1 – 9 of 9) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | Input.java | 32 public int maxLen; field in Input 46 maxLen = 1; in Input() 61 maxLen = in.readInt(); in Input() 82 dest.writeInt(maxLen); in writeToParcel()
|
D | CommandParamsFactory.java | 443 input.maxLen = 1; in processGetInkey() 494 input.maxLen = rawValue[valueIndex + 1] & 0xff; in processGetInput() 520 if (input.ucs2 && input.maxLen > MAX_UCS2_CHARS) { in processGetInput() 521 CatLog.d(this, "UCS2: received maxLen = " + input.maxLen + in processGetInput() 523 input.maxLen = MAX_UCS2_CHARS; in processGetInput() 524 } else if (!input.packed && input.maxLen > MAX_GSM7_DEFAULT_CHARS) { in processGetInput() 525 CatLog.d(this, "GSM 7Bit Default: received maxLen = " + input.maxLen + in processGetInput() 527 input.maxLen = MAX_GSM7_DEFAULT_CHARS; in processGetInput()
|
/frameworks/base/libs/androidfw/ |
D | Asset.cpp | 444 size_t maxLen; in read() local 461 maxLen = mLength - mOffset; in read() 462 if (count > maxLen) in read() 463 count = maxLen; in read() 762 size_t maxLen; in read() local 778 maxLen = mUncompressedLen - mOffset; in read() 779 if (count > maxLen) in read() 780 count = maxLen; in read()
|
/frameworks/native/cmds/flatland/ |
D | Main.cpp | 715 size_t maxLen = 0; in maxBenchmarkNameLen() local 719 if (len > maxLen) { in maxBenchmarkNameLen() 720 maxLen = len; in maxBenchmarkNameLen() 723 return maxLen; in maxBenchmarkNameLen()
|
/frameworks/av/include/soundtrigger/ |
D | SoundTrigger.h | 66 char *str, size_t maxLen);
|
/frameworks/av/soundtrigger/ |
D | SoundTrigger.cpp | 267 status_t SoundTrigger::guidToString(const sound_trigger_uuid_t *guid, char *str, size_t maxLen) in guidToString() argument 273 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x", in guidToString()
|
/frameworks/av/include/media/ |
D | AudioEffect.h | 400 static status_t guidToString(const effect_uuid_t *guid, char *str, size_t maxLen);
|
/frameworks/av/media/libmedia/ |
D | AudioEffect.cpp | 472 status_t AudioEffect::guidToString(const effect_uuid_t *guid, char *str, size_t maxLen) in guidToString() argument 478 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x", in guidToString()
|
/frameworks/av/media/libeffects/factory/ |
D | EffectsFactory.c | 73 static int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen); 965 int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen) in uuidToString() argument 968 snprintf(str, maxLen, "%08x-%04x-%04x-%04x-%02x%02x%02x%02x%02x%02x", in uuidToString()
|