Home
last modified time | relevance | path

Searched refs:trace_stream (Results 1 – 7 of 7) sorted by relevance

/external/curl/src/
Dtool_cb_dbg.c75 if(!config->trace_stream) { in tool_debug_cb()
78 config->trace_stream = stdout; in tool_debug_cb()
81 config->trace_stream = config->errors; /* aka stderr */ in tool_debug_cb()
83 config->trace_stream = fopen(config->trace_dump, FOPEN_WRITETEXT); in tool_debug_cb()
88 if(config->trace_stream) in tool_debug_cb()
89 output = config->trace_stream; in tool_debug_cb()
Dtool_main.c203 if(config->trace_fopened && config->trace_stream) in free_globalconfig()
204 fclose(config->trace_stream); in free_globalconfig()
205 config->trace_stream = NULL; in free_globalconfig()
Dtool_cfgable.h281 FILE *trace_stream; member
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/
Dmixing_test.cc129 std::ostringstream trace_stream; in VerifyMixedOutput() local
130 trace_stream << samples_read << " samples read"; in VerifyMixedOutput()
131 SCOPED_TRACE(trace_stream.str()); in VerifyMixedOutput()
/external/webrtc/webrtc/modules/audio_processing/test/
Dprocess_test.cc584 std::ostringstream trace_stream; in void_main() local
585 trace_stream << "Processed frames: " << reverse_count << " (reverse), " in void_main()
587 SCOPED_TRACE(trace_stream.str()); in void_main()
767 printf("Bad parameter warning. %s\n", trace_stream.str().c_str()); in void_main()
834 std::ostringstream trace_stream; in void_main() local
835 trace_stream << "Processed frames: " << reverse_count << " (reverse), " in void_main()
837 SCOPED_TRACE(trace_stream.str()); in void_main()
999 printf("Bad parameter warning. %s\n", trace_stream.str().c_str()); in void_main()
/external/freetype/src/base/
Dftstream.c31 #define FT_COMPONENT trace_stream
/external/vixl/test/aarch64/
Dtest-trace-aarch64.cc2786 FILE* trace_stream = fopen(filename, "r"); in CheckOrGenerateTrace() local
2787 VIXL_ASSERT(trace_stream != NULL); in CheckOrGenerateTrace()
2788 fseek(trace_stream, 0, SEEK_SET); in CheckOrGenerateTrace()
2791 c = getc(trace_stream); in CheckOrGenerateTrace()
2795 fclose(trace_stream); in CheckOrGenerateTrace()
2818 FILE* trace_stream = fdopen(mkstemp(trace_stream_filename), "w"); in TraceTestHelper() local
2821 Simulator simulator(&decoder, trace_stream); in TraceTestHelper()
2874 fclose(trace_stream); in TraceTestHelper()
2937 FILE* trace_stream = fdopen(mkstemp(trace_stream_filename), "w"); in PrintDisassemblerTestHelper() local
2950 PrintDisassembler disasm(trace_stream); in PrintDisassemblerTestHelper()
[all …]