Home | History | Annotate | Download | only in strings

Lines Matching defs:ssize_t

15 // For ssize_t
25 // Define ssize_t inside of our namespace.
27 typedef __int64 ssize_t;
29 typedef long ssize_t;
118 // const size_t kMaxSize = std::numeric_limits<ssize_t>::max();
207 BASE_EXPORT ssize_t SafeSNPrintf(char* buf, size_t sz, const char* fmt,
213 // use, this constant should always be std::numeric_limits<ssize_t>::max().
221 ssize_t SafeSNPrintf(char* buf, size_t N, const char* fmt, Args... args) {
229 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, Args... args) {
237 BASE_EXPORT ssize_t SafeSNPrintf(char* buf, size_t N, const char* fmt);
239 inline ssize_t SafeSPrintf(char (&buf)[N], const char* fmt) {