OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_tag_len
(Results
1 - 6
of
6
) sorted by null
/external/curl/tests/server/
getpart.c
252
# define
MAX_TAG_LEN
79
253
char couter[
MAX_TAG_LEN
+1]; /* current outermost section */
254
char cmain[
MAX_TAG_LEN
+1]; /* current main section */
255
char csub[
MAX_TAG_LEN
+1]; /* current sub section */
256
char ptag[
MAX_TAG_LEN
+1]; /* potential tag */
257
char patt[
MAX_TAG_LEN
+1]; /* potential attributes */
312
if((len.sig = end - ptr) >
MAX_TAG_LEN
) {
373
if((len.sig = end - ptr) >
MAX_TAG_LEN
) {
392
if((len.sig = end - ptr) >
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);
/external/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
78
uint8_t
max_tag_len
;
member in struct:evp_aead_st
/frameworks/base/core/java/android/hardware/camera2/impl/
CameraDeviceImpl.java
244
final int
MAX_TAG_LEN
= 23;
246
if (tag.length() >
MAX_TAG_LEN
) {
247
tag = tag.substring(0,
MAX_TAG_LEN
);
[
all
...]
Completed in 358 milliseconds