Home
last modified time | relevance | path

Searched refs:loaded (Results 1 – 25 of 107) sorted by relevance

12345

/dragonfly/usr.sbin/mtree/
H A Donly.c55 static bool loaded; variable
134 loaded = true; in load_only()
142 if (!loaded) in find_only()
/dragonfly/lib/libc/stdlib/
H A Dnmalloc.c311 struct magazine *loaded; member
534 tmp = mp->loaded; in swap_mags()
535 mp->loaded = mp->prev; in swap_mags()
1283 mp = tp->mags[zi].loaded; in _slaballoc()
1775 mp = tp->mags[zi].loaded; in mtmagazine_alloc()
1799 mp = tp->mags[zi].loaded; in mtmagazine_alloc()
1826 tp->mags[zi].loaded = mp; in mtmagazine_alloc()
1914 tp->mags[zi].loaded = mp; in mtmagazine_free()
1924 tp->mags[zi].loaded = mp; in mtmagazine_free()
1984 mp = tp->mags[i].loaded; in mtmagazine_destructor()
[all …]
/dragonfly/crypto/libressl/crypto/err/
H A Derr_all.c177 static pthread_once_t loaded = PTHREAD_ONCE_INIT; in ERR_load_crypto_strings() local
178 (void) pthread_once(&loaded, ERR_load_crypto_strings_internal); in ERR_load_crypto_strings()
/dragonfly/usr.sbin/ppp/
H A Ddefs.c425 int loaded = 0; in loadmodules() local
435 loaded++; in loadmodules()
440 return loaded; in loadmodules()
/dragonfly/share/misc/
H A Dgdbinit184 Output list of loaded file systems, refcount, similar to the
189 Iterate the current list of mount structures loaded from the
190 memory core, there should be one per loaded VFS.
199 Output list of loaded kernel modules in kldstat(1) style.
/dragonfly/games/sail/
H A Dpl_6.c58 if (repaired || loaded || fired || changed || turned()) { in repair()
195 loaded = 1; in loadplayer()
H A Dplayer.h89 extern int loaded, fired, changed, repaired;
H A Dpl_2.c51 repaired = loaded = fired = changed = 0; in newturn()
/dragonfly/stand/boot/pc32/loader/
H A Dhelp.i3869 The ACPI kernel module is by default loaded automatically.
11 If the acpi_load variable is set, the ACPI module will be loaded.
/dragonfly/stand/boot/common/
H A Dhelp.common89 If the ahci_load variable is set, the AHCI module will be loaded.
122 has not already been loaded, it will be booted instead of the default
162 The EHCI kernel module is by default loaded automatically.
164 If the ehci_load variable is set, the EHCI module will be loaded.
180 The XHCI kernel module is by default loaded automatically.
182 If the xhci_load variable is set, the XHCI module will be loaded.
196 are loaded, <file> must be a kernel or the command will fail.
198 If -t is specified, the module is loaded as raw data of <type>, for
201 Any arguments passed after the name of the file to be loaded will be
230 List loaded modules. If -v is specified, print more details.
[all …]
/dragonfly/contrib/smbfs/
H A DINSTALL11 config file. smbfs can be either compiled in the kernel or loaded as module.
34 KLD module can be loaded either manually:
/dragonfly/contrib/gdb-7/gdb/
H A Dauto-load.c563 int loaded; member
663 maybe_add_script (struct auto_load_pspace_info *pspace_info, int loaded, in maybe_add_script() argument
697 (*slot)->loaded = loaded; in maybe_add_script()
907 ui_out_field_string (uiout, "loaded", script->loaded ? "Yes" : "No"); in print_script()
H A Dxcoffsolib.h49 unsigned loaded:1; /* True if symbols are loaded */ member
H A Dauto-load.h42 int loaded, const char *name,
/dragonfly/sys/kern/
H A Dkern_linker.c1253 TAILQ_INSERT_TAIL(&loaded_files, lf, loaded); in linker_preload()
1268 TAILQ_FOREACH(lf, &loaded_files, loaded) { in linker_preload()
1316 TAILQ_REMOVE(&loaded_files, lf, loaded); in linker_preload()
1324 TAILQ_REMOVE(&loaded_files, lf, loaded); in linker_preload()
1325 TAILQ_INSERT_TAIL(&depended_files, lf, loaded); in linker_preload()
1340 TAILQ_REMOVE(&loaded_files, lf, loaded); in linker_preload()
1348 TAILQ_FOREACH_MUTABLE(lf, &depended_files, loaded, nlf) { in linker_preload()
1377 TAILQ_REMOVE(&depended_files, lf, loaded); in linker_preload()
/dragonfly/contrib/gdb-7/gdb/config/tilegx/
H A Dlinux.mh10 # The dynamically loaded libthread_db needs access to symbols in the
/dragonfly/contrib/gdb-7/gdb/doc/
H A Dobserver.texi104 been modified since being loaded by the debugger (by being recompiled,
124 The shared library specified by @var{solib} has been loaded. Note that
126 haven't been loaded yet.
136 The symbol file specified by @var{objfile} has been loaded.
138 previously loaded symbol table data has now been invalidated.
/dragonfly/contrib/lvm2/dist/
H A DINSTALL11 To separate the LVM1 support into a shared library loaded by lvm.conf use:
/dragonfly/share/examples/kld/firmware/
H A DREADME11 loaded automatically if requested.
/dragonfly/contrib/binutils-2.34/gas/
H A Dread.c5042 int loaded = 0; in output_big_sleb128() local
5054 val |= (*bignum << loaded); in output_big_sleb128()
5055 loaded += LITTLENUM_NUMBER_OF_BITS; in output_big_sleb128()
5064 loaded -= 7; in output_big_sleb128()
5082 if (val & (1 << (loaded - 1))) in output_big_sleb128()
5083 val |= ~0U << loaded; in output_big_sleb128()
5097 int loaded = 0; in output_big_uleb128() local
5107 if (loaded < 7 && size > 0) in output_big_uleb128()
5109 val |= (*bignum << loaded); in output_big_uleb128()
5110 loaded += 8 * CHARS_PER_LITTLENUM; in output_big_uleb128()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/doc/
H A Dplugins.texi13 -rdynamic}. They are loaded by the compiler using @code{dlopen}
17 Plugins are loaded with
27 loaded from the @file{plugin} directory, so @option{-fplugin=@var{name}} is
65 is called right after the plugin is loaded. This function is
398 When your plugin is loaded, you can inspect the various
/dragonfly/contrib/binutils-2.27/gas/
H A Dread.c5164 int loaded = 0; in output_big_sleb128() local
5176 val |= (*bignum << loaded); in output_big_sleb128()
5177 loaded += LITTLENUM_NUMBER_OF_BITS; in output_big_sleb128()
5186 loaded -= 7; in output_big_sleb128()
5204 if (val & (1 << (loaded - 1))) in output_big_sleb128()
5205 val |= ~0U << loaded; in output_big_sleb128()
5219 int loaded = 0; in output_big_uleb128() local
5229 if (loaded < 7 && size > 0) in output_big_uleb128()
5231 val |= (*bignum << loaded); in output_big_uleb128()
5232 loaded += 8 * CHARS_PER_LITTLENUM; in output_big_uleb128()
[all …]
/dragonfly/contrib/lvm2/dist/doc/
H A Dpvmove_outline.txt48 8. 254:3 has new mapping table loaded:
/dragonfly/contrib/bmake/mk/
H A Dmeta.sys.mk154 .error ${.newline}ERROR: The filemon module (${_filemon}) is not loaded.
/dragonfly/sys/dev/disk/dm/doc/
H A Ddesign.txt157 Load table to selected device. Table is loaded to unused slot and than switched.
163 table loaded. Tables are stored in TAILQ. This ioctl also open physical
238 device can be found in more than one table loaded to different

12345