Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: util/mach/exc_client_variants_test.cc

Issue 1058523002: Add ConstThreadState to mach_extensions.h and use it everywhere (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: clang-unformat Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « util/mach/exc_client_variants.cc ('k') | util/mach/exc_server_variants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 virtual kern_return_t CatchMachException( 52 virtual kern_return_t CatchMachException(
53 exception_behavior_t behavior, 53 exception_behavior_t behavior,
54 exception_handler_t exception_port, 54 exception_handler_t exception_port,
55 thread_t thread, 55 thread_t thread,
56 task_t task, 56 task_t task,
57 exception_type_t exception, 57 exception_type_t exception,
58 const mach_exception_data_type_t* code, 58 const mach_exception_data_type_t* code,
59 mach_msg_type_number_t code_count, 59 mach_msg_type_number_t code_count,
60 thread_state_flavor_t* flavor, 60 thread_state_flavor_t* flavor,
61 const natural_t* old_state, 61 ConstThreadState old_state,
62 mach_msg_type_number_t old_state_count, 62 mach_msg_type_number_t old_state_count,
63 thread_state_t new_state, 63 thread_state_t new_state,
64 mach_msg_type_number_t* new_state_count, 64 mach_msg_type_number_t* new_state_count,
65 const mach_msg_trailer_t* trailer, 65 const mach_msg_trailer_t* trailer,
66 bool* destroy_complex_request) override { 66 bool* destroy_complex_request) override {
67 *destroy_complex_request = true; 67 *destroy_complex_request = true;
68 68
69 EXPECT_FALSE(handled_); 69 EXPECT_FALSE(handled_);
70 handled_ = true; 70 handled_ = true;
71 71
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 286
287 TestExcClientVariants test_exc_client_variants(behavior, true); 287 TestExcClientVariants test_exc_client_variants(behavior, true);
288 test_exc_client_variants.Run(); 288 test_exc_client_variants.Run();
289 } 289 }
290 } 290 }
291 } 291 }
292 292
293 } // namespace 293 } // namespace
294 } // namespace test 294 } // namespace test
295 } // namespace crashpad 295 } // namespace crashpad
OLDNEW
« no previous file with comments | « util/mach/exc_client_variants.cc ('k') | util/mach/exc_server_variants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698