HomeSort by: relevance | last modified time | path
    Searched refs:modules (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_procmaps_test.cc 40 InternalMmapVector<LoadedModule> modules; local in function:__sanitizer::TEST
41 modules.reserve(kMaxModules);
42 memory_mapping.DumpListOfModules(&modules);
43 EXPECT_GT(modules.size(), 0U);
45 for (uptr i = 0; i < modules.size(); ++i) {
46 if (modules[i].containsAddress((uptr)&noop)) {
48 if (strstr(modules[i].full_name(), binary_name) != 0)
51 modules[i].clear();
60 InternalMmapVector<LoadedModule> modules; local in function:__sanitizer::TEST
61 modules.reserve(kMaxModules)
    [all...]
  /src/lib/libpam/
Makefile 28 # The static modules must be built before libpam, because they are built
29 # into the static version of libpam. The dynamic modules must be built after
31 SUBDIR= staticmodules .WAIT libpam .WAIT modules
  /src/sys/external/bsd/drm2/dist/drm/amd/display/
Makefile 32 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/inc
33 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/freesync
34 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/color
35 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/info_packet
36 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/power
40 subdir-ccflags-y += -I$(FULL_AMD_DISPLAY_PATH)/modules/hdcp
46 DAL_LIBS = amdgpu_dm dc modules/freesync modules/color modules/info_packet modules/power dmub/sr
    [all...]
  /src/lib/libpam/staticmodules/
Makefile 6 SUBDIR=${.CURDIR}/../modules
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/color/
Makefile 28 AMD_DAL_MOD_COLOR = $(addprefix $(AMDDALPATH)/modules/color/,$(MOD_COLOR))
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/freesync/
Makefile 28 AMD_DAL_FREESYNC = $(addprefix $(AMDDALPATH)/modules/freesync/,$(FREESYNC))
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/info_packet/
Makefile 28 AMD_DAL_INFO_PACKET = $(addprefix $(AMDDALPATH)/modules/info_packet/,$(INFO_PACKET))
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/power/
Makefile 28 AMD_DAL_MOD_POWER = $(addprefix $(AMDDALPATH)/modules/power/,$(MOD_POWER))
  /src/etc/rc.d/
modules 3 # $NetBSD: modules,v 1.2 2015/04/06 15:07:50 mlelstv Exp $
6 # PROVIDE: modules
12 name="modules"
19 if [ -f /etc/modules.conf ]; then
20 echo "Loading modules."
33 done < /etc/modules.conf
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/hdcp/
Makefile 30 AMD_DAL_HDCP = $(addprefix $(AMDDALPATH)/modules/hdcp/,$(HDCP))
  /src/sys/modules/examples/luareadhappy/
Makefile 11 -I${S}/modules/lua \
  /src/tests/modules/k_helper/
Makefile 6 KMODULEDIR= ${TESTSBASE}/modules/${KMOD}
  /src/tests/modules/k_helper2/
Makefile 6 KMODULEDIR= ${TESTSBASE}/modules/${KMOD}
  /src/tests/modules/k_helper3/
Makefile 7 BINDIR= ${TESTSBASE}/modules
  /src/tests/modules/k_uvm/
Makefile 6 KMODULEDIR= ${TESTSBASE}/modules/${KMOD}
  /src/tests/modules/threadpool_tester/
Makefile 6 KMODULEDIR= ${TESTSBASE}/modules/${KMOD}
  /src/tests/modules/ufetchstore/
Makefile 6 KMODULEDIR= ${TESTSBASE}/modules/${KMOD}
  /src/tests/modules/x86_pte_tester/
Makefile 6 KMODULEDIR= ${TESTSBASE}/modules/${KMOD}
  /src/distrib/i386/cdroms/installdvd/
Makefile 16 CD_SETS+= modules
  /src/distrib/sun2/liveimage/emuimage/
Makefile 18 SETS= modules base etc games misc text
  /src/sys/external/bsd/compiler_rt/dist/lib/stats/
stats.cc 30 InternalMmapVectorNoCtor<StatModule **> modules; variable in namespace:__anonef28f1ee0110
88 modules.push_back(mod);
89 return modules.size() - 1;
96 WriteModuleReport(modules[index]);
97 modules[index] = 0;
104 for (StatModule **mod : modules) {
  /src/sys/arch/usermode/modules/syscallemu/
Makefile 6 M?= ${S}/modules
  /src/sys/modules/arch/
compatsubdir.mk 3 # Build netbsd kernel modules.
24 SUBDIR= ../../../../modules
  /src/doc/
TODO.modules 1 /* $NetBSD: TODO.modules,v 1.24 2021/08/09 20:49:08 andvar Exp $ */
11 modules which depend on them. At load time, a module's
22 "registration" mechanism for the "child" modules, and then when
34 correspond to which modules.
44 to load other modules. This can be accomplished by having the
55 modules are needed, and thus to load the required modules.
64 8. Even for existing modules, there are "surprise" dependencies with
84 9. As a corollary to #8 above, having dependencies on modules from code
90 10. The current /stand/$ARCH/$VERSION/modules/ hierarchy won't scale a
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common_mac.cc 124 InternalMmapVector<LoadedModule> modules; local in function:__lsan::ProcessGlobalRegions
125 modules.reserve(128);
126 memory_mapping.DumpListOfModules(&modules);
127 for (uptr i = 0; i < modules.size(); ++i) {
130 if (!flags()->use_globals && modules[i].instrumented()) continue;
133 modules[i].ranges()) {

Completed in 27 milliseconds

1 2 3 4