Home
last modified time | relevance | path

Searched refs:error_str (Results 1 – 25 of 34) sorted by relevance

12

/external/vulkan-validation-layers/layers/
Ddescriptor_sets.cpp251 std::stringstream error_str; in IsCompatible() local
252error_str << "DescriptorSetLayout " << layout_ << " has " << descriptor_count_ << " descriptors, b… in IsCompatible()
255 *error_msg = error_str.str(); in IsCompatible()
264 std::stringstream error_str; in IsCompatible() local
265error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " has a de… in IsCompatible()
269 *error_msg = error_str.str(); in IsCompatible()
272 std::stringstream error_str; in IsCompatible() local
273error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " is type … in IsCompatible()
278 *error_msg = error_str.str(); in IsCompatible()
281 std::stringstream error_str; in IsCompatible() local
[all …]
/external/mesa3d/src/amd/vulkan/
Dradv_util.c74 #define ERROR_CASE(error) case error: error_str = #error; break; in __vk_errorf()
76 const char *error_str; in __vk_errorf() local
94 error_str = "unknown error"; in __vk_errorf()
104 fprintf(stderr, "%s:%d: %s (%s)\n", file, line, buffer, error_str); in __vk_errorf()
106 fprintf(stderr, "%s:%d: %s\n", file, line, error_str); in __vk_errorf()
/external/mesa3d/src/intel/vulkan/
Danv_util.c72 #define ERROR_CASE(error) case error: error_str = #error; break; in __vk_errorf()
74 const char *error_str; in __vk_errorf() local
92 error_str = "unknown error"; in __vk_errorf()
102 fprintf(stderr, "%s:%d: %s (%s)\n", file, line, buffer, error_str); in __vk_errorf()
104 fprintf(stderr, "%s:%d: %s\n", file, line, error_str); in __vk_errorf()
/external/autotest/server/cros/clique_lib/
Dclique_dut_updater.py143 error_str = 'Host: ' + dut_host + '. ' + e
144 logging.error(error_str)
153 error_str = 'Host: ' + dut_host + '. ' + e
154 logging.error(error_str)
159 error_str = 'Host: ' + dut_host + '. Expected version of ' + \
162 logging.error(error_str)
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_cs.c70 const char *error_str = in brw_codegen_cs_prog() local
72 ralloc_strcat(&cp->program.sh.data->InfoLog, error_str); in brw_codegen_cs_prog()
73 _mesa_problem(NULL, "Failed to link compute shader: %s\n", error_str); in brw_codegen_cs_prog()
117 char *error_str; in brw_codegen_cs_prog() local
120 &program_size, &error_str); in brw_codegen_cs_prog()
123 ralloc_strcat(&cp->program.sh.data->InfoLog, error_str); in brw_codegen_cs_prog()
124 _mesa_problem(NULL, "Failed to compile compute shader: %s\n", error_str); in brw_codegen_cs_prog()
Dbrw_compiler.h785 char **error_str);
801 char **error_str);
818 char **error_str);
834 char **error_str);
853 char **error_str);
868 char **error_str);
Dbrw_gs.c134 char *error_str; in brw_codegen_gs_prog() local
138 st_index, &program_size, &error_str); in brw_codegen_gs_prog()
140 ralloc_strcat(&gp->program.sh.data->InfoLog, error_str); in brw_codegen_gs_prog()
141 _mesa_problem(NULL, "Failed to compile geometry shader: %s\n", error_str); in brw_codegen_gs_prog()
Dbrw_tes.c122 char *error_str; in brw_codegen_tes_prog() local
125 nir, &tep->program, st_index, &program_size, &error_str); in brw_codegen_tes_prog()
128 ralloc_strcat(&tep->program.sh.data->InfoLog, error_str); in brw_codegen_tes_prog()
131 "%s\n", error_str); in brw_codegen_tes_prog()
Dbrw_vec4_tcs.cpp397 char **error_str) in brw_compile_tcs() argument
473 if (error_str) in brw_compile_tcs()
474 *error_str = ralloc_strdup(mem_ctx, v.fail_msg); in brw_compile_tcs()
499 if (error_str) in brw_compile_tcs()
500 *error_str = ralloc_strdup(mem_ctx, v.fail_msg); in brw_compile_tcs()
Dbrw_vs.c221 char *error_str; in brw_codegen_vs_prog() local
226 st_index, &program_size, &error_str); in brw_codegen_vs_prog()
230 ralloc_strcat(&vp->program.sh.data->InfoLog, error_str); in brw_codegen_vs_prog()
233 _mesa_problem(NULL, "Failed to compile vertex shader: %s\n", error_str); in brw_codegen_vs_prog()
Dbrw_shader.cpp1310 char **error_str) in brw_compile_tes() argument
1332 if (error_str) in brw_compile_tes()
1333 *error_str = ralloc_strdup(mem_ctx, "DS outputs exceed maximum size"); in brw_compile_tes()
1393 if (error_str) in brw_compile_tes()
1394 *error_str = ralloc_strdup(mem_ctx, v.fail_msg); in brw_compile_tes()
1419 if (error_str) in brw_compile_tes()
1420 *error_str = ralloc_strdup(mem_ctx, v.fail_msg); in brw_compile_tes()
Dbrw_tcs.c246 char *error_str; in brw_codegen_tcs_prog() local
249 &program_size, &error_str); in brw_codegen_tcs_prog()
253 ralloc_strcat(&tep->program.sh.data->InfoLog, error_str); in brw_codegen_tcs_prog()
257 "%s\n", error_str); in brw_codegen_tcs_prog()
Dbrw_wm.c188 char *error_str = NULL; in brw_codegen_wm_prog() local
193 &program_size, &error_str); in brw_codegen_wm_prog()
198 ralloc_strcat(&fp->program.sh.data->InfoLog, error_str); in brw_codegen_wm_prog()
201 _mesa_problem(NULL, "Failed to compile fragment shader: %s\n", error_str); in brw_codegen_wm_prog()
Dbrw_vec4_gs_visitor.cpp596 char **error_str) in brw_compile_gs() argument
901 if (error_str) in brw_compile_gs()
902 *error_str = ralloc_strdup(mem_ctx, gs->fail_msg); in brw_compile_gs()
/external/autotest/client/site_tests/telemetry_UnitTests/
Dtelemetry_UnitTests.py32 error_str = run_chromeos_tests.RunChromeOSTests(browser_type,
34 if error_str:
35 raise error.TestFail(error_str)
/external/libchrome/base/json/
Djson_file_value_serializer.cc104 std::string* error_str) { in Deserialize() argument
110 if (error_str) in Deserialize()
111 *error_str = GetErrorMessageForCode(error); in Deserialize()
116 return deserializer.Deserialize(error_code, error_str); in Deserialize()
Djson_string_value_serializer.cc52 std::string* error_str) { in Deserialize() argument
54 error_code, error_str); in Deserialize()
/external/trappy/trappy/
Dcpu_power.py79 error_str = '"{}" not found, available keys: {}'.format(col,
81 raise KeyError(error_str)
/external/python/cpython2/Python/
D_warnings.c797 static PyObject *error_str = NULL; in create_filter() local
811 if (error_str == NULL) { in create_filter()
812 error_str = PyString_InternFromString("error"); in create_filter()
813 if (error_str == NULL) in create_filter()
816 action_obj = error_str; in create_filter()
/external/python/cpython3/Python/
D_warnings.c1124 static PyObject *error_str = NULL; in create_filter() local
1139 if (error_str == NULL) { in create_filter()
1140 error_str = PyUnicode_InternFromString("error"); in create_filter()
1141 if (error_str == NULL) in create_filter()
1144 action_obj = error_str; in create_filter()
/external/toolchain-utils/
Dtest_toolchains.py122 error_str = "Could not setup board: '%s'" % command
123 assert ret == 0, error_str
/external/vulkan-validation-layers/scripts/
Dspec.py296 error_str = db_line[6]
305 self.error_db_dict[error_enum]['error_msg'] = error_str
Dvk_validation_stats.py127 error_str = db_line[6]
136 self.db_dict[error_enum]['error_string'] = error_str
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp719 char error_str[64]; in Codegen() local
720 sprintf(error_str, "Unknown function referenced %s", Callee.c_str()); in Codegen()
721 return ErrorV(error_str); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp701 char error_str[64]; in Codegen() local
702 sprintf(error_str, "Unknown function referenced %s", Callee.c_str()); in Codegen()
703 return ErrorV(error_str); in Codegen()

12