OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SafeSNPrintf
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/base/strings/
safe_sprintf.h
36
//
SafeSNPrintf
() is an alternative function signature that can be used when
38
// always be used instead of
SafeSNPrintf
()
89
// SafeSPrintf() and
SafeSNPrintf
() mimic the behavior of snprintf() and they
113
// limited and known. On the other hand, if the parameters to
SafeSNPrintf
()
122
// size =
SafeSNPrintf
(buf, size, "Error message \"%s\"\n", err) + 1;
207
BASE_EXPORT ssize_t
SafeSNPrintf
(char* buf, size_t sz, const char* fmt,
221
ssize_t
SafeSNPrintf
(char* buf, size_t N, const char* fmt, Args... args) {
225
return internal::
SafeSNPrintf
(buf, N, fmt, arg_array, sizeof...(args));
233
return internal::
SafeSNPrintf
(buf, N, fmt, arg_array, sizeof...(args));
237
BASE_EXPORT ssize_t
SafeSNPrintf
(char* buf, size_t N, const char* fmt)
[
all
...]
safe_sprintf.cc
430
ssize_t
SafeSNPrintf
(char* buf, size_t sz, const char* fmt, const Arg* args,
657
ssize_t
SafeSNPrintf
(char* buf, size_t sz, const char* fmt) {
Completed in 99 milliseconds