Lines Matching defs:out
599 bool select_h2(const unsigned char **out, unsigned char *outlen,
605 bool select_protocol(const unsigned char **out, unsigned char *outlen,
630 // 03/Jul/2014:00:19:38 +0900) in buffer pointed by |out|. The buffer
633 // StringRef wrapping the buffer pointed by |out|, and this string is
635 template <typename T> StringRef format_common_log(char *out, const T &tp) {
638 auto p = common_log_date(out, t.count());
640 return StringRef{out, p};
654 // buffer pointed by |out|. The buffer must be at least 30 bytes,
657 // the buffer pointed by |out|, and this string is terminated by NULL.
658 template <typename T> StringRef format_iso8601(char *out, const T &tp) {
661 auto p = iso8601_date(out, t.count());
663 return StringRef{out, p};
668 // by |out|. The buffer must be at least 25 bytes, including terminal
670 // function returns StringRef wrapping the buffer pointed by |out|,
672 template <typename T> StringRef format_iso8601_basic(char *out, const T &tp) {
675 auto p = iso8601_basic_date(out, t.count());
677 return StringRef{out, p};
681 // 10:25:58 GMT) in buffer pointed by |out|. The buffer must be at
684 // wrapping the buffer pointed by |out|, and this string is terminated
686 template <typename T> StringRef format_http_date(char *out, const T &tp) {
689 auto p = http_date(out, t.count());
691 return StringRef{out, p};
844 void hexdump(FILE *out, const uint8_t *src, size_t len);