Home | History | Annotate | Download | only in src

Lines Matching refs:format

123 void OS::Print(const char* format, ...) {
125 va_start(args, format);
126 VPrint(format, args);
131 void OS::VPrint(const char* format, va_list args) {
133 LOG_PRI_VA(ANDROID_LOG_INFO, LOG_TAG, format, args);
135 vprintf(format, args);
140 void OS::PrintError(const char* format, ...) {
142 va_start(args, format);
143 VPrintError(format, args);
148 void OS::VPrintError(const char* format, va_list args) {
150 LOG_PRI_VA(ANDROID_LOG_ERROR, LOG_TAG, format, args);
152 vfprintf(stderr, format, args);
157 int OS::SNPrintF(Vector<char> str, const char* format, ...) {
159 va_start(args, format);
160 int result = VSNPrintF(str, format, args);
167 const char* format,
169 int n = vsnprintf(str.start(), str.length(), format, args);