HomeSort by relevance Sort by last modified time
    Searched refs:MAX_TAG_LEN (Results 1 - 5 of 5) sorted by null

  /packages/services/Car/service/src/com/android/car/
CarLog.java 20 private static final int MAX_TAG_LEN = 23;
49 if (tag.length() > MAX_TAG_LEN) {
50 tag = tag.substring(0, MAX_TAG_LEN);
  /external/curl/tests/server/
getpart.c 281 # define MAX_TAG_LEN 79
282 char couter[MAX_TAG_LEN + 1]; /* current outermost section */
283 char cmain[MAX_TAG_LEN + 1]; /* current main section */
284 char csub[MAX_TAG_LEN + 1]; /* current sub section */
285 char ptag[MAX_TAG_LEN + 1]; /* potential tag */
286 char patt[MAX_TAG_LEN + 1]; /* potential attributes */
342 if(len.sig > MAX_TAG_LEN) {
404 if(len.sig > MAX_TAG_LEN) {
424 if(len.sig > MAX_TAG_LEN) {
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
Log.java 40 private static final int MAX_TAG_LEN = 23 - CAMERA_LOGTAG_PREFIX.length();
45 final int lenDiff = tag.length() - MAX_TAG_LEN;
49 mValue = CAMERA_LOGTAG_PREFIX + (lenDiff > 0 ? tag.substring(0, MAX_TAG_LEN) : tag);
  /packages/apps/Camera2/src/com/android/camera/debug/
Log.java 46 private static final int MAX_TAG_LEN = 23 - CAMERA_LOGTAG_PREFIX.length();
51 final int lenDiff = tag.length() - MAX_TAG_LEN;
55 mValue = CAMERA_LOGTAG_PREFIX + (lenDiff > 0 ? tag.substring(0, MAX_TAG_LEN) : tag);
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDeviceImpl.java 254 final int MAX_TAG_LEN = 23;
256 if (tag.length() > MAX_TAG_LEN) {
257 tag = tag.substring(0, MAX_TAG_LEN);
    [all...]

Completed in 465 milliseconds