Lines Matching defs:error

53   Status error;
55 Dispatch<StructuredData::DictionarySP>("get_capabilities", error);
58 error))
82 lldb::addr_t address, Status &error) {
84 "get_memory_region_containing_address", error, address);
86 if (error.Fail()) {
88 error.AsCString(), error);
95 Status error;
97 Dispatch<StructuredData::DictionarySP>("get_threads_info", error);
100 error))
107 Status &error) {
110 Dispatch("create_breakpoint", py_error, addr, error);
112 // If there was an error on the python call, surface it to the user.
114 error = std::move(py_error);
117 error))
124 lldb::addr_t address, size_t size, Status &error) {
127 "read_memory_at_address", py_error, address, size, error);
129 // If there was an error on the python call, surface it to the user.
131 error = std::move(py_error);
137 lldb::addr_t addr, lldb::DataExtractorSP data_sp, Status &error) {
140 Dispatch("write_memory_at_address", py_error, addr, data_sp, error);
143 error))
146 // If there was an error on the python call, surface it to the user.
148 error = std::move(py_error);
154 Status error;
156 Dispatch<StructuredData::ArraySP>("get_loaded_images", error);
159 error))
166 Status error;
167 StructuredData::ObjectSP obj = Dispatch("get_process_id", error);
170 error))
177 Status error;
178 StructuredData::ObjectSP obj = Dispatch("is_alive", error);
181 error))
189 Status error;
190 StructuredData::ObjectSP obj = Dispatch("get_scripted_thread_plugin", error);
193 error))
205 Status error;
207 Dispatch<StructuredData::DictionarySP>("get_process_metadata", error);
210 error))