Lines Matching refs:name
49 * The first argument is the module's structure name (look at the end of the
81 * of the GNU libtool 1.2 package. Search for your platform name inside the
104 * loaded modules and the corresponding module name.
142 modi->name = NULL;
159 cmd->cmd->name, filename);
211 if (modi->name != NULL && strcmp(modi->name, modname) == 0) {
227 * make sure name of preloaded module is mod_FOO.c
228 * make sure name of structure being loaded is FOO_module
231 if (memcmp(modp->name, "mod_", 4)) {
235 preload_name = modp->name + strlen("mod_");
258 modi->name = modname;
270 * Retrieve the pointer to the module structure through the module name:
272 * symbol name.
355 if (modi->name != NULL && strcmp(modi->name, modname) == 0) {
382 if (modi->name != NULL) {
383 apr_file_printf(out, " %s (static)\n", modi->name);
393 if (modi->name != NULL) {
394 apr_file_printf(out, " %s (shared)\n", modi->name);
428 "a module name and the name of a shared object file to load it from"),