Searched refs:g_isatty (Results 1 – 3 of 3) sorted by relevance
/external/lldb/tools/debugserver/source/ |
D | libdebugserver.cpp | 45 int g_isatty = 0; variable 47 #define RNBLogSTDOUT(fmt, ...) do { if (g_isatty) { fprintf(stdout, fmt, ## __VA_ARGS__); } else { … 48 #define RNBLogSTDERR(fmt, ...) do { if (g_isatty) { fprintf(stderr, fmt, ## __VA_ARGS__); } else { … 338 g_isatty = 0; in debug_server_main() 340 g_isatty = ::isatty (STDIN_FILENO); in debug_server_main()
|
D | debugserver.cpp | 65 int g_isatty = 0; variable 67 #define RNBLogSTDOUT(fmt, ...) do { if (g_isatty) { fprintf(stdout, fmt, ## __VA_ARGS__); } else { … 68 #define RNBLogSTDERR(fmt, ...) do { if (g_isatty) { fprintf(stderr, fmt, ## __VA_ARGS__); } else { … 802 g_isatty = ::isatty (STDIN_FILENO); in main()
|
D | ChangeLog | 142 * test-remotenub.cpp (g_isatty): New global that gets set to non-zero if 144 (RNBLogSTDOUT): New macro that logs to STDOUT if g_isatty is non-zero, else 146 (RNBLogSTDERR): New macro that logs to STDERR if g_isatty is non-zero, else
|