Home
last modified time | relevance | path

Searched refs:report_data (Results 1 – 18 of 18) sorted by relevance

/external/vulkan-validation-layers/layers/
Dparameter_validation_utils.cpp46 …skip = log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT… in validate_string()
49 …skip = log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT… in validate_string()
60 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_E… in validate_api_version()
66 …skip |= log_msg(report_data, VK_DEBUG_REPORT_WARNING_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE… in validate_api_version()
194 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in manual_PreCallValidateCreateDevice()
205 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in manual_PreCallValidateCreateDevice()
219 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_D… in manual_PreCallValidateCreateDevice()
226 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_D… in manual_PreCallValidateCreateDevice()
239 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_D… in manual_PreCallValidateCreateDevice()
255 …return log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT… in require_device_extension()
[all …]
Dbuffer_validation.cpp114 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, HandleT… in FindLayoutVerifyNode()
117report_data->FormatHandle(imgpair.image).c_str(), oldAspectMask, string_VkImageLayout(node.layout), in FindLayoutVerifyNode()
121 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, HandleT… in FindLayoutVerifyNode()
125report_data->FormatHandle(imgpair.image).c_str(), oldAspectMask, string_VkImageLayout(node.initial… in FindLayoutVerifyNode()
144 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, HandleT… in FindLayoutVerifyLayout()
147report_data->FormatHandle(imgpair.image).c_str(), oldAspectMask, string_VkImageLayout(layout), in FindLayoutVerifyLayout()
364 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT,… in ValidateRenderPassLayoutAgainstFramebufferImageUsage()
368report_data->FormatHandle(renderpass).c_str(), report_data->FormatHandle(framebuffer).c_str(), in ValidateRenderPassLayoutAgainstFramebufferImageUsage()
369 attachment_index, report_data->FormatHandle(image_view).c_str()); in ValidateRenderPassLayoutAgainstFramebufferImageUsage()
379 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, HandleT… in ValidateRenderPassLayoutAgainstFramebufferImageUsage()
[all …]
Dcore_validation.cpp429 …log_msg(dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EX… in VerifyBoundMemoryIsValid()
431 type_name, dev_data->report_data->FormatHandle(handle).c_str(), type_name); in VerifyBoundMemoryIsValid()
434 …log_msg(dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EX… in VerifyBoundMemoryIsValid()
437 api_name, type_name, dev_data->report_data->FormatHandle(handle).c_str()); in VerifyBoundMemoryIsValid()
516 …skip |= log_msg(dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_… in ValidateSetMemBinding()
520 apiName, dev_data->report_data->FormatHandle(mem).c_str(), in ValidateSetMemBinding()
521 dev_data->report_data->FormatHandle(handle).c_str(), handle_type); in ValidateSetMemBinding()
534 …dev_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EX… in ValidateSetMemBinding()
537 …dev_data->report_data->FormatHandle(mem).c_str(), dev_data->report_data->FormatHandle(handle).c_st… in ValidateSetMemBinding()
538 dev_data->report_data->FormatHandle(prev_binding->mem).c_str()); in ValidateSetMemBinding()
[all …]
Dvk_layer_logging.h1122 static inline void BeginQueueDebugUtilsLabel(debug_report_data *report_data, VkQueue queue, in BeginQueueDebugUtilsLabel() argument
1124 std::unique_lock<std::mutex> lock(report_data->debug_report_mutex); in BeginQueueDebugUtilsLabel()
1126 auto label_iter = report_data->debugUtilsQueueLabels.find(queue); in BeginQueueDebugUtilsLabel()
1127 if (label_iter == report_data->debugUtilsQueueLabels.end()) { in BeginQueueDebugUtilsLabel()
1130 report_data->debugUtilsQueueLabels.insert({queue, new_queue_labels}); in BeginQueueDebugUtilsLabel()
1136 if (report_data->queueLabelHasInsert) { in BeginQueueDebugUtilsLabel()
1137 report_data->queueLabelHasInsert = false; in BeginQueueDebugUtilsLabel()
1145 static inline void EndQueueDebugUtilsLabel(debug_report_data *report_data, VkQueue queue) { in EndQueueDebugUtilsLabel() argument
1146 std::unique_lock<std::mutex> lock(report_data->debug_report_mutex); in EndQueueDebugUtilsLabel()
1147 auto label_iter = report_data->debugUtilsQueueLabels.find(queue); in EndQueueDebugUtilsLabel()
[all …]
Dstateless_validation.h144 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, misc.objectType, misc.srcObject, vuid, "%s", s… in ValidateGreaterThan()
170 …skip_call |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNO… in validate_required_pointer()
202 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, co… in validate_array()
209 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, ar… in validate_array()
243 …skip_call |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNO… in validate_array()
278 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, st… in validate_struct_type()
282 …skip_call |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNO… in validate_struct_type()
322 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, st… in validate_struct_type_array()
360 …skip_call |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNO… in validate_struct_type_array()
387 …skip_call |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNO… in validate_required_handle()
[all …]
Dobject_tracker_utils.cpp40 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT, HandleT… in AddQueueInfo()
62 …log_msg(report_data, VK_DEBUG_REPORT_INFORMATION_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT, q… in DestroyQueueDataStructures()
64report_data->FormatHandle(queue->second->handle).c_str(), num_total_objects, num_objects[obj_index… in DestroyQueueDataStructures()
77 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT, HandleT… in ValidateQueueFlags()
94 …return log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT,… in ValidateDeviceObject()
95 …invalid_handle_code, "Invalid Device Object %s.", report_data->FormatHandle(device_handle).c_str()… in ValidateDeviceObject()
100 …log_msg(report_data, VK_DEBUG_REPORT_INFORMATION_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFF… in AllocateCommandBuffer()
103 report_data->FormatHandle(command_buffer).c_str()); in AllocateCommandBuffer()
127 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT… in ValidateCommandBuffer()
130report_data->FormatHandle(command_buffer).c_str(), report_data->FormatHandle(pNode->parent_object)… in ValidateCommandBuffer()
[all …]
Dshader_validation.cpp784 …debug_report_data const *report_data, shader_module const *src, std::unordered_set<uint32_t> const… in CollectInterfaceByDescriptorSlot() argument
837 static bool ValidateViConsistency(debug_report_data const *report_data, VkPipelineVertexInputStateC… in ValidateViConsistency() argument
848 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateViConsistency()
859 static bool ValidateViAgainstVsInputs(debug_report_data const *report_data, VkPipelineVertexInputSt… in ValidateViAgainstVsInputs() argument
888 …log_msg(report_data, VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_SHAD… in ValidateViAgainstVsInputs()
896 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MOD… in ValidateViAgainstVsInputs()
906 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MOD… in ValidateViAgainstVsInputs()
921 static bool ValidateFsOutputsAgainstRenderPass(debug_report_data const *report_data, shader_module … in ValidateFsOutputsAgainstRenderPass() argument
960 …skip |= log_msg(report_data, VK_DEBUG_REPORT_WARNING_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_M… in ValidateFsOutputsAgainstRenderPass()
970 …skip |= log_msg(report_data, VK_DEBUG_REPORT_WARNING_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_M… in ValidateFsOutputsAgainstRenderPass()
[all …]
Ddescriptor_sets.cpp370 …const debug_report_data *report_data, const VkDescriptorSetLayoutCreateInfo *create_info, const bo… in ValidateCreateInfo() argument
383 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
392 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
412 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
417 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
427 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
432 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
444 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
457 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
464 …skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EX… in ValidateCreateInfo()
[all …]
Dvk_layer_utils.cpp90 VK_LAYER_EXPORT void layer_debug_messenger_actions(debug_report_data *report_data, in layer_debug_messenger_actions() argument
133 …layer_create_messenger_callback(report_data, default_layer_callback, &dbgCreateInfo, pAllocator, &… in layer_debug_messenger_actions()
142 …layer_create_messenger_callback(report_data, default_layer_callback, &dbgCreateInfo, pAllocator, &… in layer_debug_messenger_actions()
149 VK_LAYER_EXPORT void layer_debug_report_actions(debug_report_data *report_data, in layer_debug_report_actions() argument
176 …layer_create_report_callback(report_data, default_layer_callback, &dbgCreateInfo, pAllocator, &cal… in layer_debug_report_actions()
189 …layer_create_report_callback(report_data, default_layer_callback, &dbgCreateInfo, pAllocator, &cal… in layer_debug_report_actions()
202 …layer_create_report_callback(report_data, default_layer_callback, &dbgCreateInfo, pAllocator, &cal… in layer_debug_report_actions()
Dobject_lifetime_validation.h147 … return log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, debug_object_type, object_handle, in ValidateObject()
161 …return log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, debug_object_type, object_handle, inval… in ValidateObject()
174 …log_msg(report_data, VK_DEBUG_REPORT_INFORMATION_BIT_EXT, debug_object_type, object_handle, kVUID_… in CreateObject()
237 …skip |= log_msg(report_data, VK_DEBUG_REPORT_INFORMATION_BIT_EXT, debug_object_type, object_handle, in ValidateDestroyObject()
247 … skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, debug_object_type, object_handle, in ValidateDestroyObject()
253 … skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, debug_object_type, object_handle, in ValidateDestroyObject()
Dvk_layer_utils.h131 VK_LAYER_EXPORT void layer_debug_report_actions(debug_report_data *report_data,
135 VK_LAYER_EXPORT void layer_debug_messenger_actions(debug_report_data *report_data,
Dgpu_validation.cpp307 …log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, object_type, object_handle, "UNASSIGNED-GPU-As… in ReportSetupProblem()
715 static std::string LookupDebugUtilsName(const debug_report_data *report_data, const uint64_t object… in LookupDebugUtilsName() argument
716 auto object_label = report_data->DebugReportGetUtilsObjectName(object); in LookupDebugUtilsName()
724 static void GenerateCommonMessage(const debug_report_data *report_data, const GLOBAL_CB_NODE *cb_no… in GenerateCommonMessage() argument
731 << LookupDebugUtilsName(report_data, HandleToUint64(cb_node->commandBuffer)) << "(" in GenerateCommonMessage()
736 << LookupDebugUtilsName(report_data, HandleToUint64(cb_node->commandBuffer)) << "(" in GenerateCommonMessage()
739 … << "Pipeline " << LookupDebugUtilsName(report_data, HandleToUint64(pipeline_handle)) << "(" in GenerateCommonMessage()
741 …<< "Shader Module " << LookupDebugUtilsName(report_data, HandleToUint64(shader_module_handle)) << … in GenerateCommonMessage()
1004 …GenerateCommonMessage(report_data, cb_node, debug_record, shader_module_handle, pipeline_handle, d… in AnalyzeAndReportError()
Dcore_validation.h551 …bool ValidateAndUpdateQFOScoreboard(const debug_report_data* report_data, const GLOBAL_CB_NODE* cb…
603 …bool ValidateUpdateDescriptorSets(const debug_report_data* report_data, const layer_data* dev_data…
696 …bool ValidateBufferImageCopyData(const debug_report_data* report_data, uint32_t regionCount, const…
718 …bool ValidateImageCopyData(const layer_data* device_data, const debug_report_data* report_data, co…
850 …bool ValidateLayoutVsAttachmentDescription(const debug_report_data* report_data, RenderPassCreateV…
959 bool ValidateCreateImageANDROID(layer_data* device_data, const debug_report_data* report_data,
Ddescriptor_sets.h501 bool ValidatePushDescriptorsUpdate(const debug_report_data *report_data, uint32_t write_count,
/external/autotest/client/tests/unixbench5/
Dunixbench5.py50 self.report_data = utils.system_output(vars + ' ./Run ' + args)
53 utils.open_write_close(self.results_path, self.report_data)
62 (" ".join(self.err), self.report_data))
95 sections = self.report_data.split('-'*72)
/external/autotest/client/tests/unixbench/
Dunixbench.py48 self.report_data = open(report_path).readlines()[9:]
73 for line in self.report_data:
89 for line in self.report_data:
/external/compiler-rt/lib/asan/
Dasan_report.cc49 static ReportData report_data = {}; variable
719 if (report) report_data = *report; in StartReporting()
1230 return report_data.pc; in __asan_get_report_pc()
1234 return report_data.bp; in __asan_get_report_bp()
1238 return report_data.sp; in __asan_get_report_sp()
1242 return report_data.addr; in __asan_get_report_address()
1246 return report_data.is_write ? 1 : 0; in __asan_get_report_access_type()
1250 return report_data.access_size; in __asan_get_report_access_size()
1254 return report_data.description; in __asan_get_report_description()
/external/toolchain-utils/crosperf/
Dresults_report.py434 def ParseStandardPerfReport(report_data): argument
456 if isinstance(report_data, basestring):
457 report_data = report_data.splitlines()
475 stripped_lines = (l.strip() for l in report_data)