Searched refs:module_name (Results 1 - 25 of 37) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/Perl5/
H A DBuild.PL4 module_name => 'ANTLR::Runtime',
/external/bluetooth/glib/gmodule/
H A Dgmodule-dl.c157 const gchar *module_name)
160 if (strncmp (module_name, "lib", 3) == 0)
161 return g_strconcat (directory, "/", module_name, NULL);
163 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
164 } else if (strncmp (module_name, "lib", 3) == 0)
165 return g_strdup (module_name);
167 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL);
156 _g_module_build_path(const gchar *directory, const gchar *module_name) argument
H A Dgmodule-dld.c152 const gchar *module_name)
155 if (strncmp (module_name, "lib", 3) == 0)
156 return g_strconcat (directory, "/", module_name, NULL);
158 return g_strconcat (directory, "/lib", module_name, ".sl", NULL);
159 else if (strncmp (module_name, "lib", 3) == 0)
160 return g_strdup (module_name);
162 return g_strconcat ("lib", module_name, ".sl", NULL);
151 _g_module_build_path(const gchar *directory, const gchar *module_name) argument
H A Dgmodule-os2.c132 const gchar *module_name)
134 gchar *suffix = strrchr(module_name, '.');
137 return g_strconcat (directory, "/", module_name, NULL);
139 return g_strconcat (directory, "/", module_name, ".dll", NULL);
141 return g_strdup (module_name);
143 return g_strconcat (module_name, ".dll", NULL);
131 _g_module_build_path(const gchar *directory, const gchar *module_name) argument
H A Dgmodule-dyld.c141 const gchar *module_name)
145 if (strncmp (module_name, "lib", 3) == 0)
146 return g_strconcat (directory, "/", module_name, NULL);
148 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
150 else if (strncmp (module_name, "lib", 3) == 0)
151 return g_strdup (module_name);
153 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL);
140 _g_module_build_path(const gchar *directory, const gchar *module_name) argument
H A Dgmodule-win32.c243 const gchar *module_name)
247 k = strlen (module_name);
250 if (k > 4 && g_ascii_strcasecmp (module_name + k - 4, ".dll") == 0)
251 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, NULL);
253 else if (strncmp (module_name, "lib", 3) == 0 || strncmp (module_name, "cyg", 3) == 0)
254 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, ".dll", NULL);
256 return g_strconcat (directory, G_DIR_SEPARATOR_S, "cyg", module_name, ".dll", NULL);
258 else if (strncmp (module_name, "lib", 3) == 0)
259 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, "
242 _g_module_build_path(const gchar *directory, const gchar *module_name) argument
[all...]
H A Dgmodule-ar.c176 const gchar *module_name)
179 if (strncmp (module_name, "lib", 3) == 0)
180 return g_strconcat (directory, "/", module_name, NULL);
182 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
183 } else if (strncmp (module_name, "lib", 3) == 0)
184 return g_strdup (module_name);
186 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL);
175 _g_module_build_path(const gchar *directory, const gchar *module_name) argument
H A Dgmodule-beos.c189 const gchar *module_name)
195 if (strncmp (module_name, "lib", 3) == 0)
196 return g_strconcat (directory, "/", module_name, NULL);
198 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL);
200 else if (strncmp (module_name, "lib", 3) == 0)
201 return g_strdup (module_name);
203 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL);
188 _g_module_build_path(const gchar *directory, const gchar *module_name) argument
H A Dgmodule.h90 * if supplied, and `module_name' suitably decorated accoring to
96 const gchar *module_name);
H A Dgmodule.c85 const gchar *module_name);
190 const gchar *module_name)
681 const gchar *module_name)
683 g_return_val_if_fail (module_name != NULL, NULL);
685 return _g_module_build_path (directory, module_name);
189 _g_module_build_path(const gchar *directory, const gchar *module_name) argument
680 g_module_build_path(const gchar *directory, const gchar *module_name) argument
/external/chromium/chrome/browser/ui/
H A Dcrypto_module_password_dialog.h43 void ShowCryptoModulePasswordDialog(const std::string& module_name,
/external/freetype/include/freetype/
H A Dftmodapi.h144 /* module_name :: The name of the module. */
163 const FT_String* module_name; member in struct:FT_Module_Class_
213 /* module_name :: The module's name (as an ASCII string). */
224 const char* module_name );
/external/chromium/base/win/
H A Dpe_image.cc347 LPCSTR module_name = reinterpret_cast<LPCSTR>(RVAToAddr(import->Name)); local
353 if (!callback(*this, module_name, name_table, iat, cookie))
361 LPCSTR module_name,
382 if (!callback(*this, module_name, ordinal, name, hint, iat, cookie))
409 LPCSTR module_name; local
416 module_name = reinterpret_cast<LPCSTR>(
430 module_name = reinterpret_cast<LPCSTR>(delay_descriptor->rvaDLLName);
441 if (!callback(*this, delay_descriptor, module_name, name_table, iat,
451 LPCSTR module_name,
487 if (!callback(*this, module_name, ordina
360 EnumOneImportChunk(EnumImportsFunction callback, LPCSTR module_name, PIMAGE_THUNK_DATA name_table, PIMAGE_THUNK_DATA iat, PVOID cookie) const argument
449 EnumOneDelayImportChunk(EnumImportsFunction callback, PImgDelayDescr delay_descriptor, LPCSTR module_name, PIMAGE_THUNK_DATA name_table, PIMAGE_THUNK_DATA iat, PIMAGE_THUNK_DATA bound_iat, PIMAGE_THUNK_DATA unload_iat, PVOID cookie) const argument
[all...]
H A Dpe_image.h174 bool EnumOneImportChunk(EnumImportsFunction callback, LPCSTR module_name,
195 LPCSTR module_name,
/external/elfutils/libdwfl/
H A Dlinux-proc-maps.c293 const char *module_name, Dwarf_Addr base,
296 if (module_name[0] == '/')
298 int fd = open64 (module_name, O_RDONLY);
301 *file_name = strdup (module_name);
312 if (sscanf (module_name, "[vdso: %d]", &pid) == 1)
291 dwfl_linux_proc_find_elf(Dwfl_Module *mod __attribute__ ((unused)), void **userdata __attribute__ ((unused)), const char *module_name, Dwarf_Addr base, char **file_name, Elf **elfp) argument
H A Doffline.c212 char *module_name = NULL; local
215 else if (unlikely (asprintf (&module_name, "%s:%s", name, h->ar_name) < 0))
221 name = module_name;
230 free (module_name);
245 free (module_name);
H A Dlinux-kernel-modules.c592 const char *module_name,
608 if (!strcmp (module_name, KERNEL_MODNAME))
624 size_t namelen = strlen (module_name);
640 const char *n = memchr (module_name, from, namelen);
643 char *a = mempcpy (alternate_name, module_name, n - module_name);
647 while ((p = memchr (n, from, namelen - (n - module_name))) != NULL)
653 memcpy (a, n, namelen - (n - module_name) + 1);
672 && (!memcmp (f->fts_name, module_name, namelen)
/external/oprofile/daemon/liblegacy/
H A Dopd_kernel.c446 char const * module_name = 0; local
448 module_name = module->image->name;
449 if (!module_name) {
452 module_name = module->name;
454 image = opd_get_kernel_image(module_name, app_name, proc->tid, proc->tgid);
/external/oprofile/daemon/
H A Dopd_kernel.c135 * module_name 16480 1 dependencies Live 0xe091e000
147 char module_name[256+1]; local
179 module_name, &module_size, ref_count,
187 image = opd_create_module(module_name, start_address,
/external/webkit/Tools/Scripts/
H A Dtest-webkitpy238 module_name = os.path.basename(module_path)
239 __import__(module_name)
243 if module_name.endswith("QueueStatusServer"):
/external/dbus/dbus/
H A Ddbus-internals.c321 static char module_name[1024]; variable
341 GetModuleFileName(0,module_name,sizeof(module_name)-1);
342 last_period = _mbsrchr(module_name,'.');
345 last_slash = _mbsrchr(module_name,'\\');
347 strcpy(module_name,last_slash+1);
348 strcat(module_name,": ");
459 strcpy(buf,module_name);
/external/chromium/chrome/common/
H A Dsandbox_policy.cc175 // Compares the loaded |module| file name matches |module_name|.
176 bool IsExpandedModuleName(HMODULE module, const wchar_t* module_name) { argument
186 return (fname.BaseName().value() == module_name);
189 // Adds a single dll by |module_name| into the |policy| blacklist.
192 void BlacklistAddOneDll(const wchar_t* module_name, argument
194 HMODULE module = ::GetModuleHandleW(module_name);
198 std::wstring name(module_name);
211 if (!IsExpandedModuleName(module, module_name))
216 policy->AddDllToUnload(module_name);
217 VLOG(1) << "dll to unload found: " << module_name;
[all...]
/external/checkpolicy/test/
H A Ddismod.c749 char module_name[80] = { 0 }; local
758 fgets(module_name, sizeof(module_name), stdin);
759 module_name[strlen(module_name) - 1] = '\0'; /* remove LF */
760 if (module_name[0] == '\0') {
766 if (read_policy(module_name, mods)) {
769 module_name);
/external/freetype/src/raster/
H A Dftrend1.c144 if ( render->clazz->root.module_name[6] == '1' )
150 if ( render->clazz->root.module_name[6] == '5' )
/external/freetype/src/base/
H A Dftinit.c223 (*cur)->module_name, error ));

Completed in 356 milliseconds

12