HomeSort by relevance Sort by last modified time
    Searched full:info_log (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/gpu/command_buffer/service/
shader_translator_unittest.cc 39 EXPECT_TRUE(vertex_translator_->info_log() == NULL);
44 EXPECT_TRUE(fragment_translator_->info_log() == NULL);
66 EXPECT_TRUE(vertex_translator_->info_log() == NULL);
85 ASSERT_TRUE(vertex_translator_->info_log() != NULL);
86 EXPECT_GT(strlen(vertex_translator_->info_log()), 0u);
95 EXPECT_TRUE(vertex_translator_->info_log() == NULL);
109 EXPECT_TRUE(fragment_translator_->info_log() == NULL);
124 ASSERT_TRUE(fragment_translator_->info_log() != NULL);
125 EXPECT_GT(strlen(fragment_translator_->info_log()), 0u);
142 EXPECT_TRUE(vertex_translator_->info_log() == NULL)
    [all...]
shader_translator.h 81 virtual const char* info_log() const = 0;
126 virtual const char* info_log() const OVERRIDE;
mocks.h 90 MOCK_CONST_METHOD0(info_log, const char*());
  /external/chromium_org/third_party/leveldatabase/src/util/
env.cc 27 void Log(Logger* info_log, const char* format, ...) {
28 if (info_log != NULL) {
31 info_log->Logv(format, ap);
options.cc 18 info_log(NULL),
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
pp.c 36 ralloc_asprintf_rewrite_tail(&parser->info_log,
44 ralloc_vasprintf_rewrite_tail(&parser->info_log,
48 ralloc_asprintf_rewrite_tail(&parser->info_log,
57 ralloc_asprintf_rewrite_tail(&parser->info_log,
65 ralloc_vasprintf_rewrite_tail(&parser->info_log,
69 ralloc_asprintf_rewrite_tail(&parser->info_log,
153 glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log,
167 ralloc_strcat(info_log, parser->info_log);
glcpp.c 102 char *info_log = ralloc_strdup(ctx, ""); local
114 ret = glcpp_preprocess(ctx, &shader, &info_log, NULL, API_OPENGL);
117 fprintf(stderr, "%s", info_log);
glcpp.h 177 char *info_log; member in struct:glcpp_parser
199 glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log,
  /external/mesa3d/src/glsl/glcpp/
pp.c 36 ralloc_asprintf_rewrite_tail(&parser->info_log,
44 ralloc_vasprintf_rewrite_tail(&parser->info_log,
48 ralloc_asprintf_rewrite_tail(&parser->info_log,
57 ralloc_asprintf_rewrite_tail(&parser->info_log,
65 ralloc_vasprintf_rewrite_tail(&parser->info_log,
69 ralloc_asprintf_rewrite_tail(&parser->info_log,
153 glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log,
167 ralloc_strcat(info_log, parser->info_log);
glcpp.c 102 char *info_log = ralloc_strdup(ctx, ""); local
114 ret = glcpp_preprocess(ctx, &shader, &info_log, NULL, API_OPENGL);
117 fprintf(stderr, "%s", info_log);
glcpp.h 177 char *info_log; member in struct:glcpp_parser
199 glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log,
  /external/chromium_org/third_party/leveldatabase/src/db/
repair.cc 53 owns_info_log_(options_.info_log != options.info_log),
63 delete options_.info_log;
82 Log(options_.info_log,
154 Log(options_.info_log, "Log #%llu: ignoring conversion error: %s",
165 Logger* info_log; member in struct:leveldb::__anon13659::Repairer::LogReporter
169 Log(info_log, "Log #%llu: dropping %d bytes; %s",
187 reporter.info_log = options_.info_log;
214 Log(options_.info_log, "Log #%llu: ignoring %s"
    [all...]
db_impl.cc 100 if (result.info_log == NULL) {
104 Status s = src.env->NewLogger(InfoLogFileName(dbname), &result.info_log);
107 result.info_log = NULL;
122 owns_info_log_(options_.info_log != options.info_log),
170 delete options_.info_log;
213 Log(options_.info_log, "Ignoring error %s", s->ToString().c_str());
259 Log(options_.info_log, "Delete type=%d #%lld\n",
361 Logger* info_log; member in struct:leveldb::LogReporter
365 Log(info_log, "%s%s: dropping %d bytes; %s"
    [all...]
db_impl.h 194 // Sanitize db options. The caller should delete result.info_log if
195 // it is not equal to src.info_log.
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
options.h 65 // be written to info_log if it is non-NULL, or to a file stored
66 // in the same directory as the DB contents if info_log is NULL.
68 Logger* info_log; member in struct:leveldb::Options
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_parser_extras.h 170 char *info_log; member in struct:_mesa_glsl_parse_state
299 extern int glcpp_preprocess(void *ctx, const char **shader, char **info_log,
glsl_parser_extras.cpp 53 this->info_log = ralloc_strdup(mem_ctx, "");
139 assert(state->info_log != NULL);
142 int msg_offset = strlen(state->info_log);
144 ralloc_asprintf_append(&state->info_log, "%u:%u(%u): %s: ",
149 ralloc_vasprintf_append(&state->info_log, fmt, ap);
151 const char *const msg = &state->info_log[msg_offset];
157 ralloc_strcat(&state->info_log, "\n");
main.cpp 147 state->error = glcpp_preprocess(state, &source, &state->info_log,
200 shader->InfoLog = state->info_log;
test_optpass.cpp 219 state->error = glcpp_preprocess(state, &source, &state->info_log,
262 printf("%s\n", state->info_log);
ir_reader.cpp 111 ralloc_asprintf_append(&state->info_log, "In function %s:\n",
113 ralloc_strcat(&state->info_log, "error: ");
116 ralloc_vasprintf_append(&state->info_log, fmt, ap);
118 ralloc_strcat(&state->info_log, "\n");
121 ralloc_strcat(&state->info_log, "...in this context:\n ");
123 ralloc_strcat(&state->info_log, "\n\n");
  /external/mesa3d/src/glsl/
glsl_parser_extras.h 170 char *info_log; member in struct:_mesa_glsl_parse_state
299 extern int glcpp_preprocess(void *ctx, const char **shader, char **info_log,
glsl_parser_extras.cpp 53 this->info_log = ralloc_strdup(mem_ctx, "");
139 assert(state->info_log != NULL);
142 int msg_offset = strlen(state->info_log);
144 ralloc_asprintf_append(&state->info_log, "%u:%u(%u): %s: ",
149 ralloc_vasprintf_append(&state->info_log, fmt, ap);
151 const char *const msg = &state->info_log[msg_offset];
157 ralloc_strcat(&state->info_log, "\n");
main.cpp 147 state->error = glcpp_preprocess(state, &source, &state->info_log,
200 shader->InfoLog = state->info_log;
test_optpass.cpp 219 state->error = glcpp_preprocess(state, &source, &state->info_log,
262 printf("%s\n", state->info_log);
ir_reader.cpp 111 ralloc_asprintf_append(&state->info_log, "In function %s:\n",
113 ralloc_strcat(&state->info_log, "error: ");
116 ralloc_vasprintf_append(&state->info_log, fmt, ap);
118 ralloc_strcat(&state->info_log, "\n");
121 ralloc_strcat(&state->info_log, "...in this context:\n ");
123 ralloc_strcat(&state->info_log, "\n\n");

Completed in 734 milliseconds

1 2