OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SafeSPrintf
(Results
1 - 2
of
2
) sorted by null
/external/libchrome/base/strings/
safe_sprintf.h
33
//
SafeSPrintf
() is a type-safe and completely self-contained version of
37
// not dealing with fixed-sized buffers. When possible,
SafeSPrintf
() should
48
// and
SafeSPrintf
() instead returns an output string that expands only
55
//
SafeSPrintf
() aims to be as liberal as reasonably possible. Integer-like
74
//
SafeSPrintf
() does not support at this time.
83
// have little impact on other parts of
SafeSPrintf
() function.
89
//
SafeSPrintf
() and SafeSNPrintf() mimic the behavior of snprintf() and they
103
// like
SafeSPrintf
(buf, "%p %d", 1, 2) results in "%p 2"). See above for
108
// base::strings::
SafeSPrintf
(buf, "The answer: %2d", 42);
229
ssize_t
SafeSPrintf
(char (&buf)[N], const char* fmt, Args... args)
[
all
...]
/external/libchrome/sandbox/linux/services/
namespace_utils.cc
50
base::strings::
SafeSPrintf
(mapping, "%d %d 1\n", inside_id, outside_id);
Completed in 809 milliseconds