HomeSort by relevance Sort by last modified time
    Searched refs:error_str (Results 1 - 25 of 42) sorted by null

1 2

  /external/autotest/client/site_tests/telemetry_UnitTests/
telemetry_UnitTests.py 32 error_str = run_chromeos_tests.RunChromeOSTests(browser_type,
34 if error_str:
35 raise error.TestFail(error_str)
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/common/
descriptor_sets.cpp 167 std::stringstream error_str;
168 error_str << "DescriptorSetLayout " << layout_ << " has " << descriptor_count_ << " descriptors, but DescriptorSetLayout "
170 *error_msg = error_str.str();
179 std::stringstream error_str;
180 error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " has a descriptorCount of "
184 *error_msg = error_str.str();
187 std::stringstream error_str;
188 error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " is type '"
192 *error_msg = error_str.str();
195 std::stringstream error_str;
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/layer-src/core_validation/
descriptor_sets.cpp 167 std::stringstream error_str;
168 error_str << "DescriptorSetLayout " << layout_ << " has " << descriptor_count_ << " descriptors, but DescriptorSetLayout "
170 *error_msg = error_str.str();
179 std::stringstream error_str;
180 error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " has a descriptorCount of "
184 *error_msg = error_str.str();
187 std::stringstream error_str;
188 error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " is type '"
192 *error_msg = error_str.str();
195 std::stringstream error_str;
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
descriptor_sets.cpp 167 std::stringstream error_str;
168 error_str << "DescriptorSetLayout " << layout_ << " has " << descriptor_count_ << " descriptors, but DescriptorSetLayout "
170 *error_msg = error_str.str();
179 std::stringstream error_str;
180 error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " has a descriptorCount of "
184 *error_msg = error_str.str();
187 std::stringstream error_str;
188 error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " is type '"
192 *error_msg = error_str.str();
195 std::stringstream error_str;
    [all...]
  /external/vulkan-validation-layers/layers/
descriptor_sets.cpp 179 std::stringstream error_str;
180 error_str << "DescriptorSetLayout " << layout_ << " has " << descriptor_count_ << " descriptors, but DescriptorSetLayout "
182 *error_msg = error_str.str();
191 std::stringstream error_str;
192 error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " has a descriptorCount of "
196 *error_msg = error_str.str();
199 std::stringstream error_str;
200 error_str << "Binding " << binding.binding << " for DescriptorSetLayout " << layout_ << " is type '"
204 *error_msg = error_str.str();
207 std::stringstream error_str;
    [all...]
spec.py 262 error_str = db_line[4]
264 db_dict[error_enum] = error_str
270 self.error_db_dict[error_enum]['error_string'] = error_str
  /external/mesa3d/src/amd/vulkan/
radv_util.c 74 #define ERROR_CASE(error) case error: error_str = #error; break;
76 const char *error_str; local
94 error_str = "unknown error";
104 fprintf(stderr, "%s:%d: %s (%s)\n", file, line, buffer, error_str);
106 fprintf(stderr, "%s:%d: %s\n", file, line, error_str);
  /external/mesa3d/src/intel/vulkan/
anv_util.c 72 #define ERROR_CASE(error) case error: error_str = #error; break;
74 const char *error_str; local
92 error_str = "unknown error";
102 fprintf(stderr, "%s:%d: %s (%s)\n", file, line, buffer, error_str);
104 fprintf(stderr, "%s:%d: %s\n", file, line, error_str);
  /external/libchrome/base/json/
json_string_value_serializer.cc 53 std::string* error_str) {
57 error_code, error_str);
json_file_value_serializer.cc 106 std::string* error_str) {
112 if (error_str)
113 *error_str = GetErrorMessageForCode(error);
119 return deserializer.Deserialize(error_code, error_str);
  /external/autotest/server/cros/clique_lib/
clique_dut_updater.py 143 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/
brw_cs.c 70 const char *error_str = local
72 ralloc_strcat(&cp->program.sh.data->InfoLog, error_str);
73 _mesa_problem(NULL, "Failed to link compute shader: %s\n", error_str);
117 char *error_str; local
120 &program_size, &error_str);
123 ralloc_strcat(&cp->program.sh.data->InfoLog, error_str);
124 _mesa_problem(NULL, "Failed to compile compute shader: %s\n", error_str);
brw_compiler.h 785 char **error_str);
801 char **error_str);
818 char **error_str);
834 char **error_str);
853 char **error_str);
868 char **error_str);
brw_gs.c 134 char *error_str; local
138 st_index, &program_size, &error_str);
140 ralloc_strcat(&gp->program.sh.data->InfoLog, error_str);
141 _mesa_problem(NULL, "Failed to compile geometry shader: %s\n", error_str);
brw_tes.c 122 char *error_str; local
125 nir, &tep->program, st_index, &program_size, &error_str);
128 ralloc_strcat(&tep->program.sh.data->InfoLog, error_str);
131 "%s\n", error_str);
brw_vs.c 221 char *error_str; local
226 st_index, &program_size, &error_str);
230 ralloc_strcat(&vp->program.sh.data->InfoLog, error_str);
233 _mesa_problem(NULL, "Failed to compile vertex shader: %s\n", error_str);
brw_vec4_tcs.cpp 397 char **error_str)
473 if (error_str)
474 *error_str = ralloc_strdup(mem_ctx, v.fail_msg);
499 if (error_str)
500 *error_str = ralloc_strdup(mem_ctx, v.fail_msg);
brw_tcs.c 246 char *error_str; local
249 &program_size, &error_str);
253 ralloc_strcat(&tep->program.sh.data->InfoLog, error_str);
257 "%s\n", error_str);
brw_shader.cpp     [all...]
  /external/strace/
count.c 163 char error_str[sizeof(int)*3]; local
199 error_str[0] = '\0';
201 sprintf(error_str, "%u", cc->errors);
211 error_str, sysent[idx].sys_name);
218 error_str[0] = '\0';
220 sprintf(error_str, "%u", error_cum);
223 call_cum, error_str, "total");
  /art/runtime/gc/collector/
immune_spaces_test.cc 85 std::string error_str; local
92 &error_str));
94 LOG(ERROR) << error_str;
106 &error_str));
108 LOG(ERROR) << error_str;
143 std::string error_str; local
150 &error_str));
152 LOG(ERROR) << "Failed to allocate memory region " << error_str;
  /external/trappy/trappy/
cpu_power.py 79 error_str = '"{}" not found, available keys: {}'.format(col,
81 raise KeyError(error_str)
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_LinkerNamespacesTest.cpp 264 std::string error_str; local
266 error_str += line + '\n';
268 return env->NewStringUTF(error_str.c_str());
  /frameworks/base/tools/aapt2/cmd/
Compile.cpp 576 std::string error_str; local
577 Maybe<android::FileMap> f = file::MmapPath(path_data.source.path, &error_str);
580 << error_str);
690 std::string error_str; local
691 if (Maybe<ResourcePathData> path_data = ExtractResourcePathData(arg, &error_str)) {
694 context.GetDiagnostics()->Error(DiagMessage() << error_str << " (" << arg << ")");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
_warnings.c 797 static PyObject *error_str = NULL; local
811 if (error_str == NULL) {
812 error_str = PyString_InternFromString("error");
813 if (error_str == NULL)
816 action_obj = error_str;

Completed in 1768 milliseconds

1 2