Searched refs:registry (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/plugins/CheckerDependencyHandling/
H A DCheckerDependencyHandling.cpp19 extern "C" void clang_registerCheckers(CheckerRegistry &registry) { argument
20 registry.addChecker<Dependency>("example.Dependency", "", "");
21 registry.addChecker<DependendentChecker>("example.DependendentChecker", "",
24 registry.addDependency("example.DependendentChecker", "example.Dependency");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/plugins/CheckerOptionHandling/
H A DCheckerOptionHandling.cpp29 extern "C" void clang_registerCheckers(CheckerRegistry &registry) { argument
30 registry.addChecker(registerMyChecker, shouldRegisterMyChecker,
35 registry.addCheckerOption(/*OptionType*/ "bool",
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/plugins/SampleAnalyzer/
H A DMainCallChecker.cpp47 extern "C" void clang_registerCheckers(CheckerRegistry &registry) { argument
48 registry.addChecker<MainCallChecker>(
/freebsd-11-stable/usr.bin/clang/llvm-xray/
H A DMakefile15 SRCS+= xray-registry.cpp
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dport-aix.c325 * If we have setauthdb, retrieve the password registry for the user's
334 char *registry; local
341 if (getuserattr((char *)user, S_REGISTRY, &registry, SEC_CHAR) == 0) {
342 if (setauthdb(registry, old_registry) == 0)
343 debug3("AIX/setauthdb set registry '%s'", registry);
345 debug3("AIX/setauthdb set registry '%s' failed: %s",
346 registry, strerror(errno));
355 * Restore the user's registry settings from old_registry.
365 debug3("%s: restoring old registry '
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DLayoutPass.cpp72 static void showCycleDetectedError(const Registry &registry, argument
81 if (!registry.referenceKindToString(ref->kindNamespace(), ref->kindArch(),
96 static void checkNoCycleInFollowonChain(const Registry &registry, argument
105 showCycleDetectedError(registry, followOnNexts, tortoise);
263 LayoutPass::LayoutPass(const Registry &registry, SortOverride sorter) argument
264 : _registry(registry), _customSorter(std::move(sorter)) {}
482 ctx.registry(), [&](const DefinedAtom * left, const DefinedAtom * right,
H A DLayoutPass.h65 LayoutPass(const Registry &registry, SortOverride sorter);
H A DMachONormalizedFileBinaryReader.cpp543 const Registry &registry) const override {
569 const Registry &registry) const override {
H A DMachOLinkingContext.cpp682 registry().loadFile(std::move(mbOrErr.get()));
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlstate.c161 ** Create registry table and its predefined values
165 /* create registry */
166 Table *registry = luaH_new(L); local
167 sethvalue(L, &g->l_registry, registry);
168 luaH_resize(L, registry, LUA_RIDX_LAST, 0);
169 /* registry[LUA_RIDX_MAINTHREAD] = L */
171 luaH_setint(L, registry, LUA_RIDX_MAINTHREAD, &mt);
172 /* registry[LUA_RIDX_GLOBALS] = table of globals */
174 luaH_setint(L, registry, LUA_RIDX_GLOBALS, &mt);
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DLinkingContext.h187 const Registry &registry() const { return _registry; } function in class:lld::LinkingContext
188 Registry &registry() { return _registry; } function in class:lld::LinkingContext
/freebsd-11-stable/contrib/lua/src/
H A Dlstate.c182 ** Create registry table and its predefined values
186 /* create registry */
187 Table *registry = luaH_new(L); local
188 sethvalue(L, &g->l_registry, registry);
189 luaH_resize(L, registry, LUA_RIDX_LAST, 0);
190 /* registry[LUA_RIDX_MAINTHREAD] = L */
192 luaH_setint(L, registry, LUA_RIDX_MAINTHREAD, &temp);
193 /* registry[LUA_RIDX_GLOBALS] = table of globals */
195 luaH_setint(L, registry, LUA_RIDX_GLOBALS, &temp);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBReproducer.cpp166 SBRegistry registry; local
167 registry.Replay(file);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DReproducerInstrumentation.h430 /// The registry contains a unique mapping between functions and their ID. The
432 /// to be registered with the registry for this to work.
604 InstrumentationData(Serializer &serializer, Registry &registry) argument
605 : m_serializer(&serializer), m_registry(&registry){};
636 void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...), argument
642 unsigned id = registry.GetID(uintptr_t(f));
662 void Record(Serializer &serializer, Registry &registry, void (*f)(Args...), argument
668 unsigned id = registry.GetID(uintptr_t(f));
/freebsd-11-stable/sys/dev/bxe/
H A Decore_sp.c1522 /* Check the registry */
1525 ECORE_MSG(sc, "ADD command is not allowed considering current registry state.\n");
1576 ECORE_MSG(sc, "DEL command is not allowed considering current registry state\n");
1631 /* Check if we can perform this operation based on the current registry
1636 ECORE_MSG(sc, "MOVE command is not allowed considering current registry state\n");
1891 * ecore_vlan_mac_get_registry_elem - prepare a registry element
1899 * prepare a registry element according to the current command request.
1911 /* Allocate a new registry element if needed. */
1968 /* If DRIVER_ONLY execution is requested, cleanup a registry
1997 /* Push a new entry into the registry */
[all...]
H A Decore_sp.h484 /* Don't send a ramrod, only update a registry */
705 * Element in the VLAN_MAC registry list having all current configured
1026 } registry; member in struct:ecore_mcast_obj
1059 * @return -1 if we handled the whole registry or index of the last
1060 * handled registry element.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc756 // Look to see if a dump type is specified in the registry; first with the
765 // Look to see if a dump location is specified in the registry; first with the
/freebsd-11-stable/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp124 ctx.registry().loadFile(std::move(mbOrErr.get()));
594 ctx.registry().addSupportMachOObjects(ctx);
595 ctx.registry().addSupportArchives(ctx.logInputFiles());
596 ctx.registry().addSupportYamlFiles();
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/YAML/
H A DReaderWriterYAML.cpp1309 yamlContext._registry = &_ctx.registry();
1351 YAMLReader(const Registry &registry) : _registry(registry) {} argument
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdbarch.sh1807 /* Keep a registry of per-architecture data-pointers required by GDB
1901 /* Keep a registry of swapped data required by GDB modules. */
2001 /* Keep a registry of the architectures known by GDB. */

Completed in 341 milliseconds