| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 thread_t thread, | 147 thread_t thread, |
| 148 task_t task, | 148 task_t task, |
| 149 exception_type_t exception, | 149 exception_type_t exception, |
| 150 const mach_exception_data_type_t* code, | 150 const mach_exception_data_type_t* code, |
| 151 mach_msg_type_number_t code_count, | 151 mach_msg_type_number_t code_count, |
| 152 thread_state_flavor_t* flavor, | 152 thread_state_flavor_t* flavor, |
| 153 const natural_t* old_state, | 153 const natural_t* old_state, |
| 154 mach_msg_type_number_t old_state_count, | 154 mach_msg_type_number_t old_state_count, |
| 155 thread_state_t new_state, | 155 thread_state_t new_state, |
| 156 mach_msg_type_number_t* new_state_count, | 156 mach_msg_type_number_t* new_state_count, |
| 157 const mach_msg_trailer_t* trailer, |
| 157 bool* destroy_complex_request) override { | 158 bool* destroy_complex_request) override { |
| 158 *destroy_complex_request = true; | 159 *destroy_complex_request = true; |
| 159 | 160 |
| 160 EXPECT_FALSE(handled_); | 161 EXPECT_FALSE(handled_); |
| 161 handled_ = true; | 162 handled_ = true; |
| 162 | 163 |
| 163 // To be able to distinguish between which handler was actually triggered, | 164 // To be able to distinguish between which handler was actually triggered, |
| 164 // the different handlers are registered with different behavior values. | 165 // the different handlers are registered with different behavior values. |
| 165 exception_behavior_t expect_behavior; | 166 exception_behavior_t expect_behavior; |
| 166 if (set_on_ == kSetOnTaskOnly) { | 167 if (set_on_ == kSetOnTaskOnly) { |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 if (geteuid() == 0) { | 571 if (geteuid() == 0) { |
| 571 EXPECT_TRUE(rv); | 572 EXPECT_TRUE(rv); |
| 572 } else { | 573 } else { |
| 573 EXPECT_FALSE(rv); | 574 EXPECT_FALSE(rv); |
| 574 } | 575 } |
| 575 } | 576 } |
| 576 | 577 |
| 577 } // namespace | 578 } // namespace |
| 578 } // namespace test | 579 } // namespace test |
| 579 } // namespace crashpad | 580 } // namespace crashpad |
| OLD | NEW |