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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 thread_t thread, | 53 thread_t thread, |
54 task_t task, | 54 task_t task, |
55 exception_type_t exception, | 55 exception_type_t exception, |
56 const mach_exception_data_type_t* code, | 56 const mach_exception_data_type_t* code, |
57 mach_msg_type_number_t code_count, | 57 mach_msg_type_number_t code_count, |
58 thread_state_flavor_t* flavor, | 58 thread_state_flavor_t* flavor, |
59 const natural_t* old_state, | 59 const natural_t* old_state, |
60 mach_msg_type_number_t old_state_count, | 60 mach_msg_type_number_t old_state_count, |
61 thread_state_t new_state, | 61 thread_state_t new_state, |
62 mach_msg_type_number_t* new_state_count, | 62 mach_msg_type_number_t* new_state_count, |
| 63 const mach_msg_trailer_t* trailer, |
63 bool* destroy_complex_request) override { | 64 bool* destroy_complex_request) override { |
64 *destroy_complex_request = true; | 65 *destroy_complex_request = true; |
65 | 66 |
66 EXPECT_FALSE(handled_); | 67 EXPECT_FALSE(handled_); |
67 handled_ = true; | 68 handled_ = true; |
68 | 69 |
69 EXPECT_EQ(behavior_, behavior); | 70 EXPECT_EQ(behavior_, behavior); |
70 EXPECT_EQ(LocalPort(), exception_port); | 71 EXPECT_EQ(LocalPort(), exception_port); |
71 | 72 |
72 if (HasIdentity()) { | 73 if (HasIdentity()) { |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 | 284 |
284 TestExcClientVariants test_exc_client_variants(behavior, true); | 285 TestExcClientVariants test_exc_client_variants(behavior, true); |
285 test_exc_client_variants.Run(); | 286 test_exc_client_variants.Run(); |
286 } | 287 } |
287 } | 288 } |
288 } | 289 } |
289 | 290 |
290 } // namespace | 291 } // namespace |
291 } // namespace test | 292 } // namespace test |
292 } // namespace crashpad | 293 } // namespace crashpad |
OLD | NEW |