| /trueos/contrib/binutils/ |
| HD | Makefile.def | 24 // "missing" indicates that that module doesn't supply 268 // Inter-module dependencies 271 dependencies = { module=all-build-bison; on=all-build-texinfo; }; 272 dependencies = { module=all-build-byacc; on=all-build-texinfo; }; 273 dependencies = { module=all-build-flex; on=all-build-texinfo; }; 274 dependencies = { module=all-build-flex; on=all-build-bison; }; 275 dependencies = { module=all-build-flex; on=all-build-byacc; }; 276 dependencies = { module=all-build-flex; on=all-build-m4; }; 277 dependencies = { module=all-build-libiberty; on=all-build-texinfo; }; 278 dependencies = { module=all-build-m4; on=all-build-texinfo; }; [all …]
|
| HD | Makefile.tpl | 385 IF lib_path +]$(TARGET_LIB_PATH_[+module+])[+ ENDIF lib_path +][+ 388 @if target-[+module+] 389 TARGET_LIB_PATH_[+module+] = $$r/$(TARGET_SUBDIR)/[+module+]/[+lib_path+]: 390 @endif target-[+module+] 397 IF lib_path +]$(HOST_LIB_PATH_[+module+])[+ ENDIF lib_path +][+ 406 @if [+module+] 407 HOST_LIB_PATH_[+module+] = \ 408 $$r/$(HOST_SUBDIR)/[+module+]/[+lib_path+]:[+ IF bootstrap 409 +]$$r/$(HOST_SUBDIR)/prev-[+module+]/[+lib_path+]:[+ ENDIF bootstrap +] 410 @endif [+module+] [all …]
|
| /trueos/contrib/libc++/include/ |
| D | module.modulemap | 1 module std [system] { 6 module algorithm { 11 module array { 16 module atomic { 21 module bitset { 28 module ccomplex { 33 module cctype { 37 module cerrno { 57 module cfenv { 66 module cfloat { [all …]
|
| /trueos/contrib/llvm/tools/clang/lib/Headers/ |
| HD | module.map | 1 module _Builtin_intrinsics [system] { 2 explicit module altivec { 7 explicit module arm { 10 explicit module neon { 17 explicit module intel { 24 explicit module mm_malloc { 29 explicit module cpuid { 34 explicit module mmx { 39 explicit module f16c { 44 explicit module sse { [all …]
|
| /trueos/contrib/openpam/lib/libpam/ |
| HD | openpam_load.c | 57 pam_module_t *module; in openpam_load_module() local 59 module = openpam_dynamic(modulename); in openpam_load_module() 61 (module == NULL) ? "no" : "using", modulename); in openpam_load_module() 65 if (module == NULL && strchr(modulename, '/') == NULL) { in openpam_load_module() 66 module = openpam_static(modulename); in openpam_load_module() 68 (module == NULL) ? "no" : "using", modulename); in openpam_load_module() 71 if (module == NULL) { in openpam_load_module() 75 return (module); in openpam_load_module() 85 openpam_release_module(pam_module_t *module) in openpam_release_module() argument 87 if (module == NULL) in openpam_release_module() [all …]
|
| HD | openpam_dynamic.c | 125 pam_module_t *module; in try_module() local 128 if ((module = calloc(1, sizeof *module)) == NULL || in try_module() 129 (module->path = strdup(modpath)) == NULL || in try_module() 130 (module->dlh = try_dlopen(modpath)) == NULL) in try_module() 132 dlmodule = dlsym(module->dlh, "_pam_module"); in try_module() 135 module->func[i] = dlmodule->func[i]; in try_module() 137 module->func[i] = (pam_func_t)dlfunc(module->dlh, in try_module() 149 if (module->func[i] == NULL) in try_module() 155 return (module); in try_module() 158 if (module != NULL) { in try_module() [all …]
|
| /trueos/sys/dev/nxge/include/ |
| HD | xge-debug.h | 149 #define xge_debug(module, level, fmt) { \ argument 150 if (((level >= XGE_TRACE && ((module & XGE_DEBUG_TRACE_MASK) == module)) || \ 151 (level >= XGE_ERR && ((module & XGE_DEBUG_ERR_MASK) == module))) && \ 152 level >= *g_level && module & *(unsigned int *)g_module_mask) { \ 164 #define xge_debug(module, level, fmt...) { \ argument 165 if (((level >= XGE_TRACE && ((module & XGE_DEBUG_TRACE_MASK) == module)) || \ 166 (level >= XGE_ERR && ((module & XGE_DEBUG_ERR_MASK) == module))) && \ 167 level >= *g_level && module & *(unsigned int *)g_module_mask) { \ 176 u32 module = XGE_COMPONENT_HAL_STATS; in xge_debug_stats() local 177 xge_debug(module, level, fmt); in xge_debug_stats() [all …]
|
| /trueos/crypto/openssl/crypto/objects/ |
| HD | objects.pl | 35 $module = $1."-"; 36 $module =~ s/\./_/g; 37 $module =~ s/-/_/g; 40 { $module = ""; } 45 $Cname = $module.$1; 75 if ($Cname ne "" && defined($ln{$module.$Cname})) 76 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.… 82 if ($Cname ne "" && defined($sn{$module.$Cname})) 83 …txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.… 91 if ($Cname ne "" && defined($ln{$module.$Cname})) [all …]
|
| /trueos/sys/boot/forth/ |
| HD | loader.4th | 196 \ show, enable, disable, toggle module loading. They all take module from 199 : set-module-flag ( module_addr val -- ) \ set and print flag 200 over module.flag ! 201 dup module.name strtype 202 module.flag @ if ." will be loaded" else ." will not be loaded" then cr 205 : enable-module find-module ?dup if true set-module-flag then ; 207 : disable-module find-module ?dup if false set-module-flag then ; 209 : toggle-module find-module ?dup if dup module.flag @ 0= set-module-flag then ; 211 \ ***** show-module 213 \ Show loading information about a module. [all …]
|
| HD | support.4th | 43 \ module module loading information structure 44 \ cell module.flag should we load it? 45 \ string module.name module's name 46 \ string module.loadname name to be used in loading the module 47 \ string module.type module's type 48 \ string module.args flags to be passed during load 49 \ string module.beforeload command to be executed before load 50 \ string module.afterload command to be executed after load 51 \ string module.loaderror command to be executed if load fails 52 \ cell module.next list chain [all …]
|
| /trueos/sys/sys/ |
| HD | module.h | 49 typedef struct module *module_t; 108 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax) \ argument 109 static struct mod_depend _##module##_depend_on_##mdepend \ 115 MODULE_METADATA(_md_##module##_on_##mdepend, MDT_DEPEND, \ 116 &_##module##_depend_on_##mdepend, #mdepend) 133 SYSINIT(name##module, sub, order, module_register_init, &data); \ 149 #define MODULE_VERSION(module, version) \ argument 150 static struct mod_version _##module##_version \ 154 MODULE_METADATA(_##module##_version, MDT_VERSION, \ 155 &_##module##_version, #module)
|
| HD | jail.h | 337 #define SYSCTL_JAIL_PARAM(module, param, type, fmt, descr) \ argument 338 SYSCTL_PROC(_security_jail_param ## module, OID_AUTO, param, \ 340 #define SYSCTL_JAIL_PARAM_STRING(module, param, access, len, descr) \ argument 341 SYSCTL_PROC(_security_jail_param ## module, OID_AUTO, param, \ 344 #define SYSCTL_JAIL_PARAM_STRUCT(module, param, access, len, fmt, descr)\ argument 345 SYSCTL_PROC(_security_jail_param ## module, OID_AUTO, param, \ 348 #define SYSCTL_JAIL_PARAM_NODE(module, descr) \ argument 349 SYSCTL_NODE(_security_jail_param, OID_AUTO, module, 0, 0, descr) 350 #define SYSCTL_JAIL_PARAM_SUBNODE(parent, module, descr) \ argument 351 SYSCTL_NODE(_security_jail_param_##parent, OID_AUTO, module, 0, 0, descr) [all …]
|
| /trueos/contrib/llvm/tools/lldb/source/Core/ |
| HD | DynamicLoader.cpp | 122 DynamicLoader::UpdateLoadedSections(ModuleSP module, addr_t link_map_addr, addr_t base_addr) in UpdateLoadedSections() argument 124 UpdateLoadedSectionsCommon(module, base_addr); in UpdateLoadedSections() 128 DynamicLoader::UpdateLoadedSectionsCommon(ModuleSP module, addr_t base_addr) in UpdateLoadedSectionsCommon() argument 132 module->SetLoadAddress(m_process->GetTarget(), base_addr, base_addr_is_offset, changed); in UpdateLoadedSectionsCommon() 136 DynamicLoader::UnloadSections(const ModuleSP module) in UnloadSections() argument 138 UnloadSectionsCommon(module); in UnloadSections() 142 DynamicLoader::UnloadSectionsCommon(const ModuleSP module) in UnloadSectionsCommon() argument 145 const SectionList *sections = GetSectionListFromModule(module); in UnloadSectionsCommon() 159 DynamicLoader::GetSectionListFromModule(const ModuleSP module) const in GetSectionListFromModule() 162 if (module.get()) in GetSectionListFromModule() [all …]
|
| /trueos/contrib/bsnmp/ |
| HD | oid-list | 13 2 BEGEMOT-NETGRAPH snmpd netgraph module 18 100 BEGEMOT-ILMID snmpd ILMID module 19 101 BEGEMOT-ATM snmpd ATM module 20 200 BEGEMOT-PF snmpd PF module (phillip@freebsd.org) 21 201 BEGEMOT-NTP snmpd NTP module 22 202 BEGEMOT-HOSTRES snmpd HOSTRES module private stuff 25 205 begemotBridge bridge module 26 210 begemotWlan WLAN module 27 220 begemotHast HAST module
|
| /trueos/tools/tools/bus_autoconf/ |
| HD | bus_autoconf.c | 64 char *module; in main() local 77 module = strchr(fname, ','); in main() 78 if (module == NULL) { in main() 83 *module++ = 0; in main() 86 postfix = strchr(module, '.'); in main() 95 usb_import_entries(section, module, ptr, len); in main()
|
| /trueos/usr.bin/make/ |
| HD | util.h | 83 #define DEBUG(module) (debug & CONCAT(DEBUG_,module)) argument 84 #define DEBUGF(module,args) \ argument 86 if (DEBUG(module)) { \ 90 #define DEBUGM(module, args) do { \ argument 91 if (DEBUG(module)) { \
|
| /trueos/contrib/top/ |
| HD | INSTALL | 18 appropriate machine-specific module. The Configure script gives you a 20 appropriate. Each module is contained in a separate c file in the 21 directory "machine". The module contains all of the machine-specific code 24 strives to be). Hints for some module choices that are not obvious are 28 AND a detailed description of the machines for which that module is 29 appropriate. It also contains a list of authors for that module. If you 38 a different module) you need to reconfigure top. A short cut is available 40 configuration questions (except for the module name of course) are 43 using the new module and all the answers you gave last time. It will 81 . on any machine, run Configure and choose the module that is [all …]
|
| HD | Configure | 8 set vars = (module LoadMax topn NominalTopn delay owner group mode random \ 58 set module = $1 64 set module = $1 66 set module = "" 87 grep -s $module $$.n >/dev/null 89 echo "$module is not recognized. To see a list of available modules" 103 Module $module 139 ./getans "What module is appropriate for this machine? " string "$module" .$$ 140 set module = `cat .$$` 142 if ("$module" == "") then [all …]
|
| /trueos/etc/pam.d/ |
| HD | README | 5 Each file details the module chain for a single service, and must be 17 module-type control-flag module-path arguments 24 module-type: 32 control-flag: How libpam handles success or failure of the module. 38 module failed, no remaining modules are run. 49 preceding auth module. 51 the preceding auth module, and if that fails 57 Note that having a "sufficient" module as the last entry for a 58 particular service and module type may result in surprising behaviour. 60 pam_deny module at the end of the chain.
|
| /trueos/sys/dev/digi/ |
| HD | digi_pci.c | 123 sc->module = "EPCX_PCI"; in digi_pci_attach() 129 sc->module = "Xem"; in digi_pci_attach() 135 sc->module = "Xr"; in digi_pci_attach() 141 sc->module = "CX_PCI"; in digi_pci_attach() 147 sc->module = "Xr"; in digi_pci_attach() 153 sc->module = "EPCX_PCI"; in digi_pci_attach() 159 sc->module = "Xr"; in digi_pci_attach() 165 sc->module = "Xr"; in digi_pci_attach() 171 sc->module = "Xr"; in digi_pci_attach()
|
| /trueos/crypto/heimdal/lib/kadm5/ |
| HD | password_quality.c | 413 char *module = NULL; in find_func() local 421 module = malloc(len); in find_func() 422 if (module == NULL) in find_func() 424 strlcpy(module, name, len); in find_func() 430 if (module && strcmp(module, verifiers[i]->name) != 0) in find_func() 434 if (module) in find_func() 435 free(module); in find_func() 440 if (module == NULL || strcmp(module, "builtin") == 0) { in find_func() 443 if (module) in find_func() 444 free(module); in find_func() [all …]
|
| /trueos/contrib/llvm/tools/lldb/include/lldb/Target/ |
| HD | DynamicLoader.h | 242 GetThreadLocalData (const lldb::ModuleSP module, const lldb::ThreadSP thread) in GetThreadLocalData() argument 265 UpdateLoadedSections(lldb::ModuleSP module, 271 UpdateLoadedSectionsCommon(lldb::ModuleSP module, 278 UnloadSections(const lldb::ModuleSP module); 282 UnloadSectionsCommon(const lldb::ModuleSP module); 290 GetSectionListFromModule(const lldb::ModuleSP module) const;
|
| /trueos/contrib/llvm/tools/lldb/source/Expression/ |
| HD | IRInterpreter.cpp | 149 bool EvaluateValue (lldb_private::Scalar &scalar, const Value *value, Module &module) in EvaluateValue() argument 164 lldb::addr_t process_address = ResolveValue(value, module); in EvaluateValue() 186 bool AssignValue (const Value *value, lldb_private::Scalar &scalar, Module &module) in AssignValue() argument 188 lldb::addr_t process_address = ResolveValue (value, module); in AssignValue() 394 lldb::addr_t ResolveValue (const Value *value, Module &module) in ResolveValue() argument 432 IRInterpreter::CanInterpret (llvm::Module &module, in CanInterpret() argument 440 for (Module::iterator fi = module.begin(), fe = module.end(); in CanInterpret() 562 IRInterpreter::Interpret (llvm::Module &module, in Interpret() argument 577 module.print(oss, NULL); in Interpret() 584 DataLayout data_layout(&module); in Interpret() [all …]
|
| /trueos/contrib/file/magic/Magdir/ |
| HD | os9 | 29 # OS9/6809 module descriptions: 31 0 beshort 0x87CD OS9/6809 module: 43 >6 byte&0xf0 0x30 multi-module 44 >6 byte&0xf0 0x40 data module 46 >6 byte&0xf0 0xC0 system module 53 0 beshort 0x4AFC OS9/68K module: 74 >0x12 byte 3 multi-module 75 >0x12 byte 4 data module 77 >0x12 byte 12 system module
|
| /trueos/contrib/apr-util/misc/ |
| HD | apu_dso.c | 112 const char *module, argument 125 *dsoptr = apr_hash_get(dsos, module, APR_HASH_KEY_STRING); 163 apr_cpystrn(eos, module, sizeof(path) - (eos - path)); 182 apr_cpystrn(eos, module, sizeof(path) - (eos - path)); 202 module = apr_pstrdup(global, module); 203 apr_hash_set(dsos, module, APR_HASH_KEY_STRING, *dsoptr);
|