/external/toybox/toys/posix/ |
D | xargs.c | 42 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/ |
D | httpread.c | 56 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 …]
|
D | httpread.h | 74 int max_bytes, /* maximum file size else abort it */
|
/external/webp/src/utils/ |
D | bit_writer.c | 212 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/ |
D | ftcmanag.c | 357 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/ |
D | httpd.c | 79 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/ |
D | minidump.h | 206 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/ |
D | psobjs.h | 114 FT_Offset max_bytes,
|
D | psobjs.c | 1380 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/ |
D | psobjs.h | 114 FT_Offset max_bytes,
|
D | psobjs.c | 1381 FT_Offset max_bytes, in ps_parser_to_bytes() argument 1410 max_bytes ); in ps_parser_to_bytes()
|
/external/pdfium/third_party/freetype/include/ |
D | ftcache.h | 311 FT_ULong max_bytes,
|
/external/freetype/include/freetype/ |
D | ftcache.h | 311 FT_ULong max_bytes,
|
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | CommunicationKDP.cpp | 980 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/ |
D | psaux.h | 367 FT_Offset max_bytes,
|
/external/freetype/include/freetype/internal/ |
D | psaux.h | 367 FT_Offset max_bytes,
|
/external/lldb/source/Target/ |
D | Process.cpp | 2384 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/ |
D | globals.h | 1169 long max_bytes; member
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | NativeCrypto.java | 346 public static native int RAND_load_file(String filename, long max_bytes); in RAND_load_file() argument
|
/external/lldb/source/Core/ |
D | ValueObject.cpp | 956 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/ |
D | Process.h | 2741 size_t max_bytes,
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 5305 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);
|