Home
last modified time | relevance | path

Searched refs:new_root (Results 1 – 5 of 5) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/
DFormatter.pm17 sub new_root { subroutine
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/API/
DStack.pm30 $hub->format(Test2::API::test2_formatter()->new_root)
/openbsd/src/gnu/llvm/lldb/source/Target/
DTraceDumper.cpp733 TraceDumper::FunctionCallUP new_root = in AppendReturnedInstructionToFunctionCallForest() local
736 new_root->SetUntracedPrefixSegment(std::move(roots.back())); in AppendReturnedInstructionToFunctionCallForest()
739 roots.emplace_back(std::move(new_root)); in AppendReturnedInstructionToFunctionCallForest()
/openbsd/src/gnu/llvm/compiler-rt/include/sanitizer/
Dlinux_syscall_hooks.h670 #define __sanitizer_syscall_pre_pivot_root(new_root, put_old) \ argument
671 __sanitizer_syscall_pre_impl_pivot_root((long)(new_root), (long)(put_old))
672 #define __sanitizer_syscall_post_pivot_root(res, new_root, put_old) \ argument
673 __sanitizer_syscall_post_impl_pivot_root(res, (long)(new_root), \
2392 void __sanitizer_syscall_pre_impl_pivot_root(long new_root, long put_old);
2393 void __sanitizer_syscall_post_impl_pivot_root(long res, long new_root,
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc1250 PRE_SYSCALL(pivot_root)(const void *new_root, const void *put_old) {
1251 if (new_root)
1252 PRE_READ(new_root,
1253 __sanitizer::internal_strlen((const char *)new_root) + 1);
1258 POST_SYSCALL(pivot_root)(long res, const void *new_root, const void *put_old) {}