Home
last modified time | relevance | path

Searched refs:max_bytes (Results 1 – 22 of 22) sorted by relevance

/external/toybox/toys/posix/
Dxargs.c42 long max_bytes; in GLOBALS()
81 if (++TT.bytes >= TT.max_bytes && TT.max_bytes) return save;
97 if (TT.max_bytes && TT.bytes >= TT.max_bytes) return data;
/external/wpa_supplicant_8/src/wps/
Dhttpread.c56 int max_bytes; /* maximum file size else abort it */ member
169 if (h->content_length < 0 || h->content_length > h->max_bytes) { in httpread_hdr_option_analyze()
331 h->max_bytes = 0; in httpread_hdr_analyze()
339 h->max_bytes = 0; in httpread_hdr_analyze()
452 if (h->max_bytes == 0) { in httpread_read_handler()
493 if (h->body_nbytes >= h->max_bytes) { in httpread_read_handler()
496 h->body_nbytes, h->max_bytes); in httpread_read_handler()
509 new_alloc_nbytes > h->max_bytes) { in httpread_read_handler()
547 h->chunk_size > h->max_bytes) { in httpread_read_handler()
733 int max_bytes, /* maximum body size else abort it */ in httpread_create() argument
[all …]
Dhttpread.h74 int max_bytes, /* maximum file size else abort it */
/external/webp/src/utils/
Dbit_writer.c212 const size_t max_bytes = bw->end_ - bw->buf_; in VP8LBitWriterResize() local
220 if (max_bytes > 0 && size_required <= max_bytes) return 1; in VP8LBitWriterResize()
221 allocated_size = (3 * max_bytes) >> 1; in VP8LBitWriterResize()
/external/freetype/src/cache/
Dftcmanag.c357 FT_ULong max_bytes, in FTC_Manager_New() argument
384 if ( max_bytes == 0 ) in FTC_Manager_New()
385 max_bytes = FTC_MAX_BYTES_DEFAULT; in FTC_Manager_New()
389 manager->max_weight = max_bytes; in FTC_Manager_New()
/external/libvncserver/libvncserver/
Dhttpd.c79 static rfbBool parseParams(const char *request, char *result, int max_bytes);
558 parseParams(const char *request, char *result, int max_bytes) in parseParams() argument
607 if (cur_bytes + len + 1 > max_bytes) { in parseParams()
/external/google-breakpad/src/google_breakpad/processor/
Dminidump.h206 static void set_max_bytes(uint32_t max_bytes) { max_bytes_ = max_bytes; } in set_max_bytes() argument
207 static uint32_t max_bytes() { return max_bytes_; } in max_bytes() function
/external/freetype/src/psaux/
Dpsobjs.h114 FT_Offset max_bytes,
Dpsobjs.c1380 FT_Offset max_bytes, in ps_parser_to_bytes() argument
1409 max_bytes ); in ps_parser_to_bytes()
/external/pdfium/third_party/freetype/src/psaux/
Dpsobjs.h114 FT_Offset max_bytes,
Dpsobjs.c1381 FT_Offset max_bytes, in ps_parser_to_bytes() argument
1410 max_bytes ); in ps_parser_to_bytes()
/external/pdfium/third_party/freetype/include/
Dftcache.h311 FT_ULong max_bytes,
/external/freetype/include/freetype/
Dftcache.h311 FT_ULong max_bytes,
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DCommunicationKDP.cpp980 const uint32_t max_bytes = packet.GetU32 (&offset); in DumpPacket() local
981 s.Printf(" (max_bytes = 0x%8.8x (%u))", max_bytes, max_bytes); in DumpPacket()
/external/pdfium/third_party/freetype/include/internal/
Dpsaux.h367 FT_Offset max_bytes,
/external/freetype/include/freetype/internal/
Dpsaux.h367 FT_Offset max_bytes,
/external/lldb/source/Target/
DProcess.cpp2384 Process::ReadStringFromMemory (addr_t addr, char *dst, size_t max_bytes, Error &error, in ReadStringFromMemory() argument
2388 if (dst && max_bytes && type_width && max_bytes >= type_width) in ReadStringFromMemory()
2391 memset (dst, 0, max_bytes); in ReadStringFromMemory()
2392 size_t bytes_left = max_bytes - type_width; in ReadStringFromMemory()
2429 if (max_bytes) in ReadStringFromMemory()
/external/toybox/generated/
Dglobals.h1169 long max_bytes; member
/external/conscrypt/src/main/java/org/conscrypt/
DNativeCrypto.java346 public static native int RAND_load_file(String filename, long max_bytes); in RAND_load_file() argument
/external/lldb/source/Core/
DValueObject.cpp956 const uint64_t max_bytes = GetClangType().GetByteSize(); in GetPointeeData() local
957 if (max_bytes > offset) in GetPointeeData()
959 size_t bytes_read = std::min<uint64_t>(max_bytes - offset, bytes); in GetPointeeData()
/external/lldb/include/lldb/Target/
DProcess.h2741 size_t max_bytes,
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp5305 static jint NativeCrypto_RAND_load_file(JNIEnv* env, jclass, jstring filename, jlong max_bytes) { argument
5306 …I_TRACE("NativeCrypto_RAND_load_file filename=%p max_bytes=%lld", filename, (long long) max_bytes);
5312 int result = RAND_load_file(file.c_str(), max_bytes);
5319 return static_cast<jint>(max_bytes);