HomeSort by relevance Sort by last modified time
    Searched full:max_tag_len (Results 1 - 8 of 8) 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 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);
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
evp_aead.c 83 return aead->max_tag_len;
evp_locl.h 356 unsigned char 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...]
  /external/chromium_org/third_party/openssl/openssl/patches/
aead_support.patch 525 + return aead->max_tag_len;
685 + unsigned char max_tag_len;
  /external/chromium_org/third_party/openssl/patches.chromium/
0007-chacha.patch     [all...]

Completed in 548 milliseconds