| OLD | NEW |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 thread_t thread, | 74 thread_t thread, |
| 75 task_t task, | 75 task_t task, |
| 76 exception_type_t exception, | 76 exception_type_t exception, |
| 77 const mach_exception_data_type_t* code, | 77 const mach_exception_data_type_t* code, |
| 78 mach_msg_type_number_t code_count, | 78 mach_msg_type_number_t code_count, |
| 79 thread_state_flavor_t* flavor, | 79 thread_state_flavor_t* flavor, |
| 80 const natural_t* old_state, | 80 const natural_t* old_state, |
| 81 mach_msg_type_number_t old_state_count, | 81 mach_msg_type_number_t old_state_count, |
| 82 thread_state_t new_state, | 82 thread_state_t new_state, |
| 83 mach_msg_type_number_t* new_state_count, | 83 mach_msg_type_number_t* new_state_count, |
| 84 const mach_msg_trailer_t* trailer, |
| 84 bool* destroy_complex_request) override { | 85 bool* destroy_complex_request) override { |
| 85 *destroy_complex_request = true; | 86 *destroy_complex_request = true; |
| 86 | 87 |
| 87 EXPECT_EQ(ChildTask(), task); | 88 EXPECT_EQ(ChildTask(), task); |
| 88 | 89 |
| 89 ProcessReader process_reader; | 90 ProcessReader process_reader; |
| 90 bool rv = process_reader.Initialize(task); | 91 bool rv = process_reader.Initialize(task); |
| 91 if (!rv) { | 92 if (!rv) { |
| 92 ADD_FAILURE(); | 93 ADD_FAILURE(); |
| 93 } else { | 94 } else { |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 | 327 |
| 327 TEST(MachOImageAnnotationsReader, CrashDyld) { | 328 TEST(MachOImageAnnotationsReader, CrashDyld) { |
| 328 TestMachOImageAnnotationsReader test_mach_o_image_annotations_reader( | 329 TestMachOImageAnnotationsReader test_mach_o_image_annotations_reader( |
| 329 TestMachOImageAnnotationsReader::kCrashDyld); | 330 TestMachOImageAnnotationsReader::kCrashDyld); |
| 330 test_mach_o_image_annotations_reader.Run(); | 331 test_mach_o_image_annotations_reader.Run(); |
| 331 } | 332 } |
| 332 | 333 |
| 333 } // namespace | 334 } // namespace |
| 334 } // namespace test | 335 } // namespace test |
| 335 } // namespace crashpad | 336 } // namespace crashpad |
| OLD | NEW |