OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RunOnDestruction
(Results
1 - 4
of
4
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtilFuchsia.cpp
352
class
RunOnDestruction
{
354
explicit
RunOnDestruction
(Fn fn) : fn_(fn) {}
355
~
RunOnDestruction
() { fn_(); }
362
RunOnDestruction
<Fn> at_scope_exit(Fn fn) {
363
return
RunOnDestruction
<Fn>(fn);
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.h
906
class
RunOnDestruction
{
908
explicit
RunOnDestruction
(Fn fn) : fn_(fn) {}
909
~
RunOnDestruction
() { fn_(); }
918
RunOnDestruction
<Fn> at_scope_exit(Fn fn) {
919
return
RunOnDestruction
<Fn>(fn);
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_common.h
1045
class
RunOnDestruction
{
1047
explicit
RunOnDestruction
(Fn fn) : fn_(fn) {}
1048
~
RunOnDestruction
() { fn_(); }
1057
RunOnDestruction
<Fn> at_scope_exit(Fn fn) {
1058
return
RunOnDestruction
<Fn>(fn);
/src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_common.h
1007
class
RunOnDestruction
{
1009
explicit
RunOnDestruction
(Fn fn) : fn_(fn) {}
1010
~
RunOnDestruction
() { fn_(); }
1019
RunOnDestruction
<Fn> at_scope_exit(Fn fn) {
1020
return
RunOnDestruction
<Fn>(fn);
Completed in 30 milliseconds
Indexes created Wed Mar 04 15:26:31 UTC 2026