Home
last modified time | relevance | path

Searched refs:info_log (Results 1 – 25 of 48) sorted by relevance

12

/external/mesa3d/src/compiler/glsl/glcpp/
Dpp.c36 _mesa_string_buffer_printf(parser->info_log, in glcpp_error()
43 _mesa_string_buffer_vprintf(parser->info_log, fmt, ap); in glcpp_error()
45 _mesa_string_buffer_append_char(parser->info_log, '\n'); in glcpp_error()
53 _mesa_string_buffer_printf(parser->info_log, in glcpp_warning()
60 _mesa_string_buffer_vprintf(parser->info_log, fmt, ap); in glcpp_warning()
62 _mesa_string_buffer_append_char(parser->info_log, '\n'); in glcpp_warning()
225 glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log, in glcpp_preprocess() argument
245 ralloc_strcat(info_log, parser->info_log->buf); in glcpp_preprocess()
Dglcpp.c137 char *info_log = ralloc_strdup(ctx, ""); in main() local
174 ret = glcpp_preprocess(ctx, &shader, &info_log, NULL, NULL, &gl_ctx); in main()
177 fprintf(stderr, "%s", info_log); in main()
Dglcpp.h208 struct _mesa_string_buffer *info_log; member
246 glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log,
Dglcpp-parse.y401 _mesa_string_buffer_printf(parser->info_log, "%s",
402 tmp_parser->info_log->buf);
1425 _mesa_string_buffer_append(parser->info_log, "Pasting \""); in _token_paste()
1426 _token_print(parser->info_log, token); in _token_paste()
1427 _mesa_string_buffer_append(parser->info_log, "\" and \""); in _token_paste()
1428 _token_print(parser->info_log, other); in _token_paste()
1429 _mesa_string_buffer_append(parser->info_log, "\" does not give a valid preprocessing token.\n"); in _token_paste()
1502 parser->info_log = _mesa_string_buffer_create(parser, in glcpp_parser_create()
/external/leveldb/db/
Drepair.cc53 owns_info_log_(options_.info_log != options.info_log), in Repairer()
63 delete options_.info_log; in ~Repairer()
82 Log(options_.info_log, in Run()
136 Log(options_.info_log, "Log #%llu: ignoring conversion error: %s", in ConvertLogFilesToTables()
146 Logger* info_log; in ConvertLogToTable() member
150 Log(info_log, "Log #%llu: dropping %d bytes; %s", in ConvertLogToTable()
167 reporter.info_log = options_.info_log; in ConvertLogToTable()
194 Log(options_.info_log, "Log #%llu: ignoring %s", in ConvertLogToTable()
215 Log(options_.info_log, "Log #%llu: %d ops saved to Table #%llu %s", in ConvertLogToTable()
251 Log(options_.info_log, "Table #%llu: dropped: %s", in ScanTable()
[all …]
Ddb_impl.cc105 if (result.info_log == nullptr) { in SanitizeOptions()
109 Status s = src.env->NewLogger(InfoLogFileName(dbname), &result.info_log); in SanitizeOptions()
112 result.info_log = nullptr; in SanitizeOptions()
132 owns_info_log_(options_.info_log != raw_options.info_log), in DBImpl()
174 delete options_.info_log; in ~DBImpl()
220 Log(options_.info_log, "Ignoring error %s", s->ToString().c_str()); in MaybeIgnoreError()
276 Log(options_.info_log, "Delete type=%d #%lld\n", static_cast<int>(type), in RemoveObsoleteFiles()
307 Log(options_.info_log, "Creating DB %s since it was missing.", in Recover()
390 Logger* info_log; in RecoverLogFile() member
394 Log(info_log, "%s%s: dropping %d bytes; %s", in RecoverLogFile()
[all …]
Dversion_set.cc830 Log(options_->info_log, "MANIFEST write: %s\n", s.ToString().c_str()); in LogAndApply()
988 Log(options_->info_log, "Error recovering version set with %d records: %s", in Recover()
1015 Log(options_->info_log, "Reuse MANIFEST: %s\n", r.ToString().c_str()); in ReuseManifest()
1020 Log(options_->info_log, "Reusing MANIFEST %s\n", dscname.c_str()); in ReuseManifest()
1418 Log(options_->info_log, in SetupOtherInputs()
Dc.cc402 opt->rep.info_log = (l ? l->rep : nullptr); in leveldb_options_set_info_log()
/external/deqp/external/openglcts/modules/glesext/texture_buffer/
DesextcTextureBufferPrecision.cpp244 glw::GLchar* info_log = new glw::GLchar[info_log_length]; in verifyShaderCompilationStatus() local
245 memset(info_log, 0, info_log_length * sizeof(glw::GLchar)); in verifyShaderCompilationStatus()
246 gl.getShaderInfoLog(m_sh_id, info_log_length, DE_NULL, info_log); in verifyShaderCompilationStatus()
251 << info_log << "\n" in verifyShaderCompilationStatus()
254 delete[] info_log; in verifyShaderCompilationStatus()
/external/google-breakpad/src/client/mac/tests/
Dtestlogging.h6 extern std::ostringstream info_log;
9 #define BPLOG_INFO_STREAM google_breakpad::info_log
Dminidump_generator_test.cc54 std::ostringstream info_log; variable
Dcrash_generation_server_test.cc54 std::ostringstream info_log; variable
Dexception_handler_test.cc48 std::ostringstream info_log; variable
/external/leveldb/util/
Denv.cc41 void Log(Logger* info_log, const char* format, ...) { in Log() argument
42 if (info_log != nullptr) { in Log()
45 info_log->Logv(format, ap); in Log()
/external/mesa3d/src/compiler/glsl/
Dtest_optpass.cpp217 state->error = glcpp_preprocess(state, &source, &state->info_log, in test_optpass()
262 printf("%s\n", state->info_log); in test_optpass()
Dglsl_parser_extras.cpp76 this->info_log = ralloc_strdup(mem_ctx, ""); in _mesa_glsl_parse_state()
499 assert(state->info_log != NULL); in _mesa_glsl_msg()
502 int msg_offset = strlen(state->info_log); in _mesa_glsl_msg()
505 ralloc_asprintf_append(&state->info_log, "\"%s\"", locp->path); in _mesa_glsl_msg()
507 ralloc_asprintf_append(&state->info_log, "%u", locp->source); in _mesa_glsl_msg()
509 ralloc_asprintf_append(&state->info_log, ":%u(%u): %s: ", in _mesa_glsl_msg()
513 ralloc_vasprintf_append(&state->info_log, fmt, ap); in _mesa_glsl_msg()
515 const char *const msg = &state->info_log[msg_offset]; in _mesa_glsl_msg()
521 ralloc_strcat(&state->info_log, "\n"); in _mesa_glsl_msg()
2196 state->error = glcpp_preprocess(state, &source, &state->info_log, in _mesa_glsl_compile_shader()
[all …]
Dir_reader.cpp118 ralloc_asprintf_append(&state->info_log, "In function %s:\n", in ir_read_error()
120 ralloc_strcat(&state->info_log, "error: "); in ir_read_error()
123 ralloc_vasprintf_append(&state->info_log, fmt, ap); in ir_read_error()
125 ralloc_strcat(&state->info_log, "\n"); in ir_read_error()
128 ralloc_strcat(&state->info_log, "...in this context:\n "); in ir_read_error()
130 ralloc_strcat(&state->info_log, "\n\n"); in ir_read_error()
Dglsl_parser_extras.h637 char *info_log; member
1046 extern int glcpp_preprocess(void *ctx, const char **shader, char **info_log,
/external/leveldb/include/leveldb/
Doptions.h69 Logger* info_log = nullptr; member
Denv.h318 void Log(Logger* info_log, const char* format, ...)
/external/python/absl-py/absl/logging/tests/
Dlogging_functional_test.py713 info_log = u'''\
722 expected_logs.append(['absl_log_file', 'INFO', info_log])
/external/deqp/external/openglcts/modules/glesext/
DesextcTestCaseBase.cpp439 std::string info_log = getCompilationInfoLog(sh_id); in buildProgramVA() local
445 << info_log << "\n\n" in buildProgramVA()
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderUtils.cpp212 std::string info_log = m_parent_test->getCompilationInfoLog(shader); in compileShaders() local
217 << info_log << "\n\n" in compileShaders()
/external/deqp/external/openglcts/modules/gl/
Dgl3cCommonBugsTests.cpp2630 char info_log[4096]; in runPipelineObjectValidationTestMode() local
2634 gl.getProgramInfoLog(*current_shader_program.po_id_ptr, sizeof(info_log), DE_NULL, /* length */ in runPipelineObjectValidationTestMode()
2635 info_log); in runPipelineObjectValidationTestMode()
2644 << info_log << "<<\n" in runPipelineObjectValidationTestMode()
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
DesextcTextureCubeMapArraySampling.cpp3269 std::string info_log = getCompilationInfoLog(info.getShaderId()); in logCompilationLog() local
3271 << info_log << tcu::TestLog::EndMessage; in logCompilationLog()
3288 std::string info_log = getLinkingInfoLog(program_object_id); in logLinkingLog() local
3290 << info_log << tcu::TestLog::EndMessage; in logLinkingLog()

12