Searched refs:module (Results 1 - 25 of 251) sorted by relevance

1234567891011

/haiku/src/tools/fs_shell/
H A Dmodule.cpp11 #include "module.h"
47 /* Each known module will have this structure which is put in the
51 struct module { struct in namespace:FSShell
52 struct module *next;
58 module_state state; /* state of module */
67 * they have to wait for each other, i.e. we need one lock per module;
72 /* we store the loaded modules by directory path, and all known modules by module name
78 /** calculates hash for a module using its name */
83 module *module local
101 module *module = (struct module *)_module; local
111 inc_module_ref_count(struct module *module) argument
118 dec_module_ref_count(struct module *module) argument
131 module *module; local
184 init_module(module *module) argument
233 uninit_module(module *module) argument
294 struct module *module; local
345 module *module; local
383 module *module; local
[all...]
/haiku/headers/os/drivers/
H A Dbus_manager.h9 #include <module.h>
H A Ddpc.h1 /* DPC module API
10 #include <module.h>
H A Dmime_table.h5 / Description: Kernel mime table and matcher module API
14 #include <module.h>
H A Dcpufreq.h9 #include <module.h>
H A Dcpuidle.h9 #include <module.h>
/haiku/src/bin/unzip/
H A Dunreduce.c13 Copyright-clean dummy module, without any real code.
15 If you really need unreduce support, replace this module by the full
21 #define __UNREDUCE_C /* identifies this source module */
33 #error This dummy-module does not support the unreduce method!
/haiku/headers/private/drivers/
H A Dsmbios.h10 #include <module.h>
/haiku/src/libs/compat/freebsd_iflib/
H A Ddevice_if.c8 #include <sys/haiku-module.h>
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/
H A Dglue.c6 #include <sys/haiku-module.h>
/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/
H A Dglue.c6 #include <sys/haiku-module.h>
/haiku/src/add-ons/kernel/drivers/network/ether/rtl8125/
H A Dglue.c6 #include <sys/haiku-module.h>
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dmodule.h8 typedef struct module* module_t;
21 #define MODULE_DEPEND(module, mdepend, vmin, vpref, vmax)
/haiku/src/system/kernel/
H A Dmodule.cpp83 /* Each loaded module image (which can export several modules) is put
94 char* path; // the full path for the module
99 /* Each known module will have this structure which is put in the
103 struct module { struct
104 struct module* next;
134 // within a module we're addressing.
281 typedef module ValueType;
283 size_t Hash(ValueType* module) const
284 { return HashKey(module->name); }
293 bool Compare(KeyType key, ValueType* module) cons
515 module* module; local
587 struct module* module = sModulesHash->Lookup((*info)->name); local
665 put_dependent_modules(struct module* module) argument
686 get_dependent_modules(struct module* module) argument
714 init_module(module* module) argument
777 uninit_module(module* module) argument
909 struct module* module = hashIterator.Next(); local
1135 struct module* module = NULL; local
1163 struct module* module = iterator.Next(); local
1862 struct module* module; local
2166 struct module* module = iterator.Next(); local
2183 module* module; local
2244 module* module; local
[all...]
/haiku/src/system/libroot/os/arch/m68k/
H A Dtls.c22 unsigned long int module; member in struct:tls_index
63 return __gRuntimeLoader->get_tls_address(ti->module, ti->offset);
/haiku/headers/private/net/
H A Dnet_notifications.h9 #include <module.h>
H A Ddns_resolver.h15 #include <module.h>
22 module_info module; member in struct:dns_resolver_module
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPModule.h9 #include <module.h>
17 //!< Default kernel module structure.
22 /*! \brief Signals your module to add its handlers to the PPP interface.
36 \param settings The settings for your module.
37 \param type Specifies which key caused loading the module. This would be
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dmodule.cpp18 #include <module.h>
102 bool AddModule(Module *module);
103 bool RemoveModule(Module *module);
171 TRACE(("ModuleAddOn::Load(): searching module `%s'...\n", path));
175 // get the module dir relative path
362 ModuleList::AddModule(Module *module) argument
365 if (module && !FindModule(module->Info()->name))
366 result = fModules.AddItem(module);
372 ModuleList::RemoveModule(Module *module) argument
416 Module *module = fModules.FindModule(path); local
643 Module *module = fModules.ModuleAt(i); local
[all...]
/haiku/src/add-ons/kernel/network/ppp/ppp_frame/
H A Dppp_frame.cpp93 TRACE("%s: next module is %s\n", __func__, protocol->next->module->info.name);
94 return protocol->next->module->send_data(protocol->next, buffer);
103 return protocol->next->module->interface_up(protocol->next);
111 protocol->next->module->interface_down(protocol->next);
122 return protocol->next->module->change_address(protocol->next, address,
201 return protocol->next->module->control(protocol->next, option, argument,
211 return protocol->next->module->join_multicast(protocol->next, address);
220 return protocol->next->module->leave_multicast(protocol->next, address);
/haiku/src/system/libroot/os/arch/x86_64/
H A Dtls.cpp19 unsigned long int module; member in struct:tls_index
73 return __gRuntimeLoader->get_tls_address(ti->module, ti->offset);
/haiku/src/system/libroot/os/arch/x86/
H A Dtls.c17 unsigned long int module; member in struct:tls_index
79 return __gRuntimeLoader->get_tls_address(ti->module, ti->offset);
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddriver.cpp32 bus_for_driver_module_info* module; local
34 gDeviceManager->get_driver(parent, (driver_module_info**)&module, &data);
36 if (strcmp(module->info.info.name, BUS_FOR_DRIVER_NAME))
40 if (module->get_bus_info(data, &info) == B_OK
H A Dspecific_video_driver.cpp25 bus_for_driver_module_info* module; local
27 gDeviceManager->get_driver(parent, (driver_module_info**)&module, &data);
29 if (strcmp(module->info.info.name, BUS_FOR_DRIVER_NAME))
33 if (module->get_bus_info(data, &info) == B_OK
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dproto_module.h17 #include <module.h>
45 module_info module; member in struct:__anon5
62 module_info module; member in struct:__anon6

Completed in 441 milliseconds

1234567891011