Searched refs:OUTPUT_BUFFER_SIZE (Results 1 - 1 of 1) sorted by relevance

/haiku-fatelf/src/system/kernel/debug/
H A Ddebug.cpp114 #define OUTPUT_BUFFER_SIZE 1024 macro
115 static char sOutputBuffer[OUTPUT_BUFFER_SIZE];
116 static char sInterruptOutputBuffer[OUTPUT_BUFFER_SIZE];
117 static char sLastOutputBuffer[OUTPUT_BUFFER_SIZE];
199 vsnprintf(sInterruptOutputBuffer, OUTPUT_BUFFER_SIZE, format, args);
1486 if (length >= OUTPUT_BUFFER_SIZE)
1487 length = OUTPUT_BUFFER_SIZE - 1;
1590 int32 length = vsnprintf(sOutputBuffer, OUTPUT_BUFFER_SIZE, format,
1592 length = std::min(length, (int32)OUTPUT_BUFFER_SIZE - 1);
1599 int32 length = vsnprintf(sInterruptOutputBuffer, OUTPUT_BUFFER_SIZE,
[all...]

Completed in 104 milliseconds