HomeSort by relevance Sort by last modified time
    Searched full:max_tag_len (Results 1 - 6 of 6) sorted by null

  /development/ndk/sources/android/libportable/common/include/
log_portable.h 55 #define MAX_TAG_LEN 128
56 static char my_portable_tag[MAX_TAG_LEN + 1];
62 strncat(&my_portable_tag[0], __progname, MAX_TAG_LEN);
63 strncat(&my_portable_tag[0], ".", MAX_TAG_LEN - strlen(my_portable_tag));
64 strncat(&my_portable_tag[0], PORTABLE_TAG, MAX_TAG_LEN - strlen(my_portable_tag));
  /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 44 private static final int MAX_TAG_LEN = 23 - CAMERA_LOGTAG_PREFIX.length();
49 final int lenDiff = tag.length() - MAX_TAG_LEN;
53 mValue = CAMERA_LOGTAG_PREFIX + (lenDiff > 0 ? tag.substring(0, MAX_TAG_LEN) : tag);
  /external/chromium_org/third_party/boringssl/src/crypto/cipher/
aead.c 31 size_t EVP_AEAD_max_tag_len(const EVP_AEAD *aead) { return aead->max_tag_len; }
internal.h 116 uint8_t max_tag_len; member in struct:evp_aead_st
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDeviceImpl.java 228 final int MAX_TAG_LEN = 23;
230 if (tag.length() > MAX_TAG_LEN) {
231 tag = tag.substring(0, MAX_TAG_LEN);
    [all...]

Completed in 1705 milliseconds