Lines Matching defs:error
48 Status error;
50 Dispatch<StructuredData::DictionarySP>("get_capabilities", error);
53 error))
77 lldb::addr_t address, Status &error) {
79 "get_memory_region_containing_address", error, address);
81 if (error.Fail()) {
83 error.AsCString(), error);
90 Status error;
92 Dispatch<StructuredData::DictionarySP>("get_threads_info", error);
95 error))
102 Status &error) {
105 Dispatch("create_breakpoint", py_error, addr, error);
107 // If there was an error on the python call, surface it to the user.
109 error = py_error;
112 error))
119 lldb::addr_t address, size_t size, Status &error) {
122 "read_memory_at_address", py_error, address, size, error);
124 // If there was an error on the python call, surface it to the user.
126 error = py_error;
132 lldb::addr_t addr, lldb::DataExtractorSP data_sp, Status &error) {
135 Dispatch("write_memory_at_address", py_error, addr, data_sp, error);
138 error))
141 // If there was an error on the python call, surface it to the user.
143 error = py_error;
149 Status error;
151 Dispatch<StructuredData::ArraySP>("get_loaded_images", error);
154 error))
161 Status error;
162 StructuredData::ObjectSP obj = Dispatch("get_process_id", error);
165 error))
172 Status error;
173 StructuredData::ObjectSP obj = Dispatch("is_alive", error);
176 error))
184 Status error;
185 StructuredData::ObjectSP obj = Dispatch("get_scripted_thread_plugin", error);
188 error))
200 Status error;
202 Dispatch<StructuredData::DictionarySP>("get_process_metadata", error);
205 error))