HomeSort by: relevance | last modified time | path
    Searched refs:Fn (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerExtFunctionsDlsym.cpp 26 void *Fn = dlsym(RTLD_DEFAULT, FnName);
27 if (Fn == nullptr) {
36 return reinterpret_cast<T>(Fn);
FuzzerUtilFuchsia.cpp 351 template <typename Fn>
354 explicit RunOnDestruction(Fn fn) : fn_(fn) {}
358 Fn fn_;
361 template <typename Fn>
362 RunOnDestruction<Fn> at_scope_exit(Fn fn) {
363 return RunOnDestruction<Fn>(fn)
    [all...]
FuzzerMutate.h 98 size_t (MutationDispatcher::*Fn)(uint8_t *Data, size_t Size, size_t Max);
FuzzerMutate.cpp 517 size_t NewSize = (this->*(M.Fn))(Data, Size, MaxSize);
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_buffer_queue.h 256 template <class F> void apply(F Fn) XRAY_NEVER_INSTRUMENT {
259 Fn(*I);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common.h 905 template <typename Fn>
908 explicit RunOnDestruction(Fn fn) : fn_(fn) {}
912 Fn fn_;
917 template <typename Fn>
918 RunOnDestruction<Fn> at_scope_exit(Fn fn) {
919 return RunOnDestruction<Fn>(fn)
    [all...]

Completed in 14 milliseconds