| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| ReachableCode.h | 47 class Callback { 50 virtual ~Callback() {} 64 Callback &CB);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_stoptheworld_testlib.cc | 34 void Callback(const SuspendedThreadsList &suspended_threads_list, 42 StopTheWorld(Callback, NULL);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/ |
| dd_rtl.h | 34 struct Callback : DDCallback { 37 Callback(Thread *thr);
|
| dd_rtl.cc | 58 Callback::Callback(Thread *thr) 64 u32 Callback::Unwind() { 115 Callback cb(thr); 128 Callback cb(thr); 141 Callback cb(thr); 152 Callback cb(thr);
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/ |
| ComputeReplacements.cpp | 19 void enumerateTokenSpans(const syntax::Tree *Root, ProcessTokensFn Callback) { 21 Enumerator(ProcessTokensFn Callback) 23 Callback(Callback) {} 29 Callback(llvm::makeArrayRef(SpanBegin, SpanEnd), SpanIsOriginal); 49 Callback(llvm::makeArrayRef(SpanBegin, SpanEnd), SpanIsOriginal); 59 ProcessTokensFn Callback; 62 return Enumerator(Callback).run(Root);
|
| /src/external/mit/libuv/dist/src/win/ |
| detect-wakeup.c | 29 /* Try registering system power event callback. This is the cleanest 35 static ULONG CALLBACK uv__system_resume_callback(PVOID Context, 51 recipient.Callback = uv__system_resume_callback;
|
| /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| ASTMatchFinder.h | 10 // over the AST and invokes a given callback on every match. 13 // subtree match on the AST. Next, a callback that is executed every time the 16 // be accessed from the registered callback. The callback can than use the 201 /// Registers a callback to notify the end of parsing. 237 /// Collects the \c BoundNodes of all callback invocations when matching 259 /// \p Context and collects the \c BoundNodes of all callback invocations. 301 internal::CollectMatchesCallback Callback; 303 Finder.addMatcher(Matcher, &Callback); 305 return std::move(Callback.Nodes) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ |
| RefactoringCallbacks.h | 19 // ReplaceStmtWithText Callback("integer", "42"); 20 // Finder.AddMatcher(id("integer", expression(integerLiteral())), Callback); 59 void addMatcher(const T &Matcher, RefactoringCallback *Callback) { 60 MatchFinder.addMatcher(Matcher, Callback); 61 Callbacks.push_back(Callback); 65 RefactoringCallback *Callback);
|
| /src/external/apache2/llvm/dist/clang/tools/clang-refactor/ |
| TestSupport.h | 62 llvm::function_ref<void(SourceRange)> Callback) const;
|
| ClangRefactor.cpp | 84 llvm::function_ref<void(SourceRange R)> Callback) = 0; 103 llvm::function_ref<void(SourceRange R)> Callback) override { 104 return TestSelections.foreachRange(SM, Callback); 118 llvm::function_ref<void(SourceRange R)> Callback) override { 138 Callback(SourceRange(Start, End)); 390 // Callback of an AST action. This invokes the matching rule on the given AST. 391 void callback(ASTContext &AST) { function in class:__anon3560::ClangRefactorTool 433 TUCallbackType Callback; 434 ToolASTConsumer(TUCallbackType Callback) 435 : Callback(std::move(Callback)) { [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFDebugLoc.h | 51 /// Call the user-provided callback for each entry (including the end-of-list 52 /// entry) in the location list starting at \p Offset. The callback can return 58 function_ref<bool(const DWARFLocationEntry &)> Callback) const = 0; 73 function_ref<bool(Expected<DWARFLocationExpression>)> Callback) const; 114 function_ref<bool(const DWARFLocationEntry &)> Callback) const override; 129 function_ref<bool(const DWARFLocationEntry &)> Callback) const override;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerValueBitMap.h | 57 template <class Callback> 59 void ForEach(Callback CB) const {
|
| FuzzerTracePC.h | 93 template <class Callback> void CollectFeatures(Callback CB) const; 114 template<class CallBack> 115 void IterateCoveredFunctions(CallBack CB); 136 template<class CallBack> 137 void ForEachObservedPC(CallBack CB) { 188 template <class Callback> 189 void IterateInline8bitCounters(Callback CB) const; 197 template <class Callback> 198 // void Callback(size_t FirstFeature, size_t Idx, uint8_t Value) [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/bitreader/ |
| llvm_bitreader.ml | 11 let () = Callback.register_exception "Llvm_bitreader.Error" (Error "")
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/irreader/ |
| llvm_irreader.ml | 12 let _ = Callback.register_exception "Llvm_irreader.Error" (Error "")
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/linker/ |
| llvm_linker.ml | 11 let () = Callback.register_exception "Llvm_linker.Error" (Error "")
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| MipsLinux.cpp | 57 const auto &Callback = Multilibs.includeDirsCallback(); 58 if (Callback) { 59 for (const auto &Path : Callback(SelectedMultilib)) 98 if (const auto &Callback = Multilibs.includeDirsCallback()) { 99 for (std::string Path : Callback(SelectedMultilib)) {
|
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| RefactoringCallbacks.cpp | 33 RefactoringCallback *Callback) { 34 MatchFinder.addDynamicMatcher(Matcher, Callback); 35 Callbacks.push_back(Callback); 46 for (const auto &Callback : Refactoring.Callbacks) { 47 Callback->getReplacements().clear(); 50 for (const auto &Callback : Refactoring.Callbacks) { 51 for (const auto &Replacement : Callback->getReplacements()) {
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_quarantine.h | 72 // The callback interface is: 73 // void Callback::Recycle(Node *ptr); 76 template<typename Callback, typename Node> 79 typedef QuarantineCache<Callback> Cache; 103 void Put(Cache *c, Callback cb, Node *ptr, uptr size) { 116 void NOINLINE Drain(Cache *c, Callback cb) { 125 void NOINLINE DrainAndRecycle(Cache *c, Callback cb) { 153 void NOINLINE Recycle(uptr min_size, Callback cb) { 184 void NOINLINE DoRecycle(Cache *c, Callback cb) { 201 template<typename Callback> [all...] |
| sanitizer_common_libcdep.cc | 23 void SetSoftRssLimitExceededCallback(void (*Callback)(bool exceeded)) { 25 SoftRssLimitExceededCallback = Callback;
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_quarantine.h | 71 template<typename Callback, typename Node> 74 typedef QuarantineCache<Callback> Cache; 96 void Put(Cache *c, Callback cb, Node *ptr, uptr size) { 110 void NOINLINE Drain(Cache *c, Callback cb) { 119 void NOINLINE DrainAndRecycle(Cache *c, Callback cb) { 147 void NOINLINE Recycle(uptr min_size, Callback cb) 179 void NOINLINE DoRecycle(Cache *c, Callback cb) { 196 template<typename Callback> 217 void Enqueue(Callback cb, void *ptr, uptr size) {
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_quarantine.h | 71 // The callback interface is: 72 // void Callback::Recycle(Node *ptr); 75 template<typename Callback, typename Node> 78 typedef QuarantineCache<Callback> Cache; 102 void Put(Cache *c, Callback cb, Node *ptr, uptr size) { 115 void NOINLINE Drain(Cache *c, Callback cb) { 124 void NOINLINE DrainAndRecycle(Cache *c, Callback cb) { 152 void NOINLINE Recycle(uptr min_size, Callback cb) REQUIRES(recycle_mutex_) 184 void NOINLINE DoRecycle(Cache *c, Callback cb) { 201 template<typename Callback> [all...] |
| /src/usr.sbin/ypserv/yptest/ |
| yptest.c | 55 struct ypall_callback Callback; 126 Callback.foreach = yptest_foreach; 127 Status = yp_all(Domain, Map, &Callback);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
| SnippetGenerator.h | 153 const function_ref<bool(ArrayRef<choice_type>)> Callback) const { 180 // Temporary buffer to store each combination before performing Callback. 188 // And pass the new combination into callback, as intended. 189 if (/*Abort=*/Callback(CurrentCombination)) 210 // This is at most how many times the callback will be called. 221 // Each result will be passed into the callback. 222 void generate(const function_ref<bool(ArrayRef<choice_type>)> Callback) { 223 performGeneration(Callback);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/ |
| GsymCreator.h | 220 /// \param Callback A callback function that will get called with each 221 /// FunctionInfo. If the callback returns false, stop iterating. 223 std::function<bool(FunctionInfo &)> const &Callback); 227 /// \param Callback A callback function that will get called with each 228 /// FunctionInfo. If the callback returns false, stop iterating. 230 std::function<bool(const FunctionInfo &)> const &Callback) const;
|