Searched refs:moduleName (Results 1 - 21 of 21) sorted by relevance

/haiku/headers/private/screen_saver/
H A DDefaultSettingsView.h17 BuildDefaultSettingsView(BView* view, const char* moduleName, const char* info);
/haiku/src/kits/screensaver/
H A DDefaultSettingsView.cpp22 BuildDefaultSettingsView(BView* view, const char* moduleName, const char* info) argument
26 BStringView* nameStringView = new BStringView("module", moduleName);
H A DScreenSaverRunner.cpp98 const char* moduleName = fSettings.ModuleName(); local
99 if (moduleName == NULL || *moduleName == '\0') {
137 fSettings.GetModuleState(moduleName, &state);
/haiku/headers/private/kernel/
H A Dkmodule.h35 extern status_t module_get_path(const char* moduleName, char** path);
H A Dvfs.h140 status_t vfs_get_module_path(const char *basePath, const char *moduleName,
/haiku/src/add-ons/network_settings/dialup/
H A DGeneralAddon.h46 DialUpAddon *FindDevice(const BString& moduleName) const;
75 bool GetAuthenticator(const BString& moduleName, BMessage *entry) const;
76 bool MarkAuthenticatorAsValid(const BString& moduleName);
H A DGeneralAddon.cpp76 GeneralAddon::FindDevice(const BString& moduleName) const
81 if(addon && moduleName == addon->KernelModuleName())
331 GeneralAddon::GetAuthenticator(const BString& moduleName, BMessage *entry) const argument
340 if (name == moduleName)
349 GeneralAddon::MarkAuthenticatorAsValid(const BString& moduleName) argument
358 if(name == moduleName) {
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddevice_manager.cpp73 const char* moduleName);
102 device_node(const char* moduleName,
143 device_node* FindChild(const char* moduleName) const;
356 register_node(device_node* parent, const char* moduleName, argument
360 if ((parent == NULL && sRootNode != NULL) || moduleName == NULL)
370 device_node *newNode = new(std::nothrow) device_node(moduleName, attrs,
375 TRACE(("%p: register node \"%s\", parent %p\n", newNode, moduleName,
525 publish_device(device_node *node, const char *path, const char *moduleName) argument
527 if (path == NULL || !path[0] || moduleName == NULL || !moduleName[
864 Device(device_node* node, const char* path, const char* moduleName) argument
960 device_node(const char* moduleName, const device_attr* attrs, const io_resource* resources) argument
[all...]
H A Ddevice_manager.h69 status_t (*register_node)(device_node *parent, const char *moduleName,
/haiku/src/add-ons/kernel/network/stack/
H A Ddevice_interfaces.cpp407 const char* moduleName = device->module->info.name; local
410 put_module(moduleName);
468 char moduleName[B_FILE_NAME_LENGTH]; local
469 size_t length = sizeof(moduleName);
470 if (read_next_module_name(cookie, moduleName, &length) != B_OK)
473 TRACE(("get_device_interface: ask \"%s\" for %s\n", moduleName, name));
476 if (get_module(moduleName, (module_info**)&module) == B_OK) {
488 put_module(moduleName);
H A Dstack.cpp718 register_domain_receiving_protocol(int family, int type, const char* moduleName) argument
721 moduleName));
730 chain = chain::Add(sReceivingProtocolChains, family, type, 0, moduleName,
/haiku/src/system/kernel/device_manager/
H A Ddevice_manager.cpp82 Device(device_node* node, const char* moduleName);
112 device_node(const char* moduleName,
158 device_node* FindChild(const char* moduleName) const;
587 register_node(device_node* parent, const char* moduleName, argument
591 if ((parent == NULL && sRootNode != NULL) || moduleName == NULL)
601 device_node* newNode = new(std::nothrow) device_node(moduleName, attrs);
605 TRACE(("%p: register node \"%s\", parent %p\n", newNode, moduleName,
736 publish_device(device_node *node, const char *path, const char *moduleName) argument
738 if (path == NULL || !path[0] || moduleName == NULL || !moduleName[
1154 Device(device_node* node, const char* moduleName) argument
1281 device_node(const char* moduleName, const device_attr* attrs) argument
[all...]
/haiku/src/tools/fs_shell/
H A Dvfs.h100 const char *moduleName, char *pathBuffer,
H A Dvfs.cpp2497 /** Finds the full path to the file that contains the module \a moduleName,
2506 vfs_get_module_path(const char *basePath, const char *moduleName, char *pathBuffer, argument
2529 while (moduleName) {
2530 char *nextPath = fssh_strchr(moduleName, '/');
2532 length = fssh_strlen(moduleName);
2534 length = nextPath - moduleName;
2543 fssh_memcpy(path, moduleName, length);
2545 moduleName = nextPath;
2574 // if we got here, the moduleName just pointed to a directory, not to
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A DHaikuKernelFileSystem.cpp396 char moduleName[B_PATH_NAME_LENGTH]; local
397 snprintf(moduleName, sizeof(moduleName), "file_systems/%s/v1", fsName);
402 if (strcmp(modules[i]->name, moduleName) == 0) {
/haiku/headers/os/drivers/
H A Ddevice_manager.h69 status_t (*register_node)(device_node *parent, const char *moduleName,
/haiku/headers/private/net/
H A Dnet_stack.h109 const char* moduleName);
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPInterface.cpp1509 char *moduleName = new char[B_PATH_NAME_LENGTH]; local
1511 sprintf(moduleName, "%s/%s", PPP_MODULES_PATH, name);
1514 if (get_module(moduleName, (module_info**) &module) != B_OK) {
1515 delete[] moduleName;
1521 fModules.AddItem(moduleName);
/haiku/src/system/kernel/
H A Dmodule.cpp1746 module_get_path(const char* moduleName, char** filePath) argument
1748 if (moduleName == NULL || filePath == NULL)
1754 module* foundModule = sModulesHash->Lookup(moduleName);
/haiku/src/system/kernel/fs/
H A Dvfs.cpp4355 /*! Finds the full path to the file that contains the module \a moduleName,
4364 vfs_get_module_path(const char* basePath, const char* moduleName, argument
4389 while (moduleName) {
4390 char* nextPath = strchr(moduleName, '/');
4392 length = strlen(moduleName);
4394 length = nextPath - moduleName;
4401 memcpy(path, moduleName, length);
4403 moduleName = nextPath;
4428 // if we got here, the moduleName just pointed to a directory, not to
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp186 register_domain_receiving_protocol(int family, int type, const char *moduleName) argument

Completed in 195 milliseconds