Home
last modified time | relevance | path

Searched refs:module_name (Results 1 – 25 of 28) sorted by relevance

12

/external/bluetooth/glib/gmodule/
Dgmodule-win32.c243 const gchar *module_name) in _g_module_build_path() argument
247 k = strlen (module_name); in _g_module_build_path()
250 if (k > 4 && g_ascii_strcasecmp (module_name + k - 4, ".dll") == 0) in _g_module_build_path()
251 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, NULL); in _g_module_build_path()
253 else if (strncmp (module_name, "lib", 3) == 0 || strncmp (module_name, "cyg", 3) == 0) in _g_module_build_path()
254 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, ".dll", NULL); in _g_module_build_path()
256 return g_strconcat (directory, G_DIR_SEPARATOR_S, "cyg", module_name, ".dll", NULL); in _g_module_build_path()
258 else if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
259 return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, ".dll", NULL); in _g_module_build_path()
261 return g_strconcat (directory, G_DIR_SEPARATOR_S, "lib", module_name, ".dll", NULL); in _g_module_build_path()
[all …]
Dgmodule-dld.c152 const gchar *module_name) in _g_module_build_path() argument
155 if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
156 return g_strconcat (directory, "/", module_name, NULL); in _g_module_build_path()
158 return g_strconcat (directory, "/lib", module_name, ".sl", NULL); in _g_module_build_path()
159 else if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
160 return g_strdup (module_name); in _g_module_build_path()
162 return g_strconcat ("lib", module_name, ".sl", NULL); in _g_module_build_path()
Dgmodule-dl.c157 const gchar *module_name) in _g_module_build_path() argument
160 if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
161 return g_strconcat (directory, "/", module_name, NULL); in _g_module_build_path()
163 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL); in _g_module_build_path()
164 } else if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
165 return g_strdup (module_name); in _g_module_build_path()
167 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL); in _g_module_build_path()
Dgmodule-os2.c132 const gchar *module_name) in _g_module_build_path() argument
134 gchar *suffix = strrchr(module_name, '.'); in _g_module_build_path()
137 return g_strconcat (directory, "/", module_name, NULL); in _g_module_build_path()
139 return g_strconcat (directory, "/", module_name, ".dll", NULL); in _g_module_build_path()
141 return g_strdup (module_name); in _g_module_build_path()
143 return g_strconcat (module_name, ".dll", NULL); in _g_module_build_path()
Dgmodule-dyld.c141 const gchar *module_name) in _g_module_build_path() argument
145 if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
146 return g_strconcat (directory, "/", module_name, NULL); in _g_module_build_path()
148 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL); in _g_module_build_path()
150 else if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
151 return g_strdup (module_name); in _g_module_build_path()
153 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL); in _g_module_build_path()
Dgmodule-ar.c176 const gchar *module_name) in _g_module_build_path() argument
179 if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
180 return g_strconcat (directory, "/", module_name, NULL); in _g_module_build_path()
182 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL); in _g_module_build_path()
183 } else if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
184 return g_strdup (module_name); in _g_module_build_path()
186 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL); in _g_module_build_path()
Dgmodule-beos.c189 const gchar *module_name) in _g_module_build_path() argument
195 if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
196 return g_strconcat (directory, "/", module_name, NULL); in _g_module_build_path()
198 return g_strconcat (directory, "/lib", module_name, "." G_MODULE_SUFFIX, NULL); in _g_module_build_path()
200 else if (strncmp (module_name, "lib", 3) == 0) in _g_module_build_path()
201 return g_strdup (module_name); in _g_module_build_path()
203 return g_strconcat ("lib", module_name, "." G_MODULE_SUFFIX, NULL); in _g_module_build_path()
Dgmodule.c85 const gchar *module_name);
190 const gchar *module_name) in _g_module_build_path() argument
681 const gchar *module_name) in g_module_build_path() argument
683 g_return_val_if_fail (module_name != NULL, NULL); in g_module_build_path()
685 return _g_module_build_path (directory, module_name); in g_module_build_path()
Dgmodule.h96 const gchar *module_name);
/external/chromium/base/win/
Dpe_image.cc347 LPCSTR module_name = reinterpret_cast<LPCSTR>(RVAToAddr(import->Name)); in EnumImportChunks() local
353 if (!callback(*this, module_name, name_table, iat, cookie)) in EnumImportChunks()
361 LPCSTR module_name, in EnumOneImportChunk() argument
382 if (!callback(*this, module_name, ordinal, name, hint, iat, cookie)) in EnumOneImportChunk()
409 LPCSTR module_name; in EnumDelayImportChunks() local
416 module_name = reinterpret_cast<LPCSTR>( in EnumDelayImportChunks()
430 module_name = reinterpret_cast<LPCSTR>(delay_descriptor->rvaDLLName); in EnumDelayImportChunks()
441 if (!callback(*this, delay_descriptor, module_name, name_table, iat, in EnumDelayImportChunks()
451 LPCSTR module_name, in EnumOneDelayImportChunk() argument
487 if (!callback(*this, module_name, ordinal, name, hint, iat, cookie)) in EnumOneDelayImportChunk()
Dpe_image.h174 bool EnumOneImportChunk(EnumImportsFunction callback, LPCSTR module_name,
195 LPCSTR module_name,
/external/dbus/dbus/
Ddbus-internals.c321 static char module_name[1024]; variable
341 GetModuleFileName(0,module_name,sizeof(module_name)-1); in _dbus_verbose_init()
342 last_period = _mbsrchr(module_name,'.'); in _dbus_verbose_init()
345 last_slash = _mbsrchr(module_name,'\\'); in _dbus_verbose_init()
347 strcpy(module_name,last_slash+1); in _dbus_verbose_init()
348 strcat(module_name,": "); in _dbus_verbose_init()
459 strcpy(buf,module_name); in _dbus_verbose_real()
/external/oprofile/daemon/liblegacy/
Dopd_kernel.c446 char const * module_name = 0; in opd_add_kernel_map() local
448 module_name = module->image->name; in opd_add_kernel_map()
449 if (!module_name) { in opd_add_kernel_map()
452 module_name = module->name; in opd_add_kernel_map()
454 image = opd_get_kernel_image(module_name, app_name, proc->tid, proc->tgid); in opd_add_kernel_map()
/external/oprofile/daemon/
Dopd_kernel.c147 char module_name[256+1]; in opd_reread_module_info() local
179 module_name, &module_size, ref_count, in opd_reread_module_info()
187 image = opd_create_module(module_name, start_address, in opd_reread_module_info()
/external/webkit/Tools/Scripts/
Dtest-webkitpy238 module_name = os.path.basename(module_path)
239 __import__(module_name)
243 if module_name.endswith("QueueStatusServer"):
/external/chromium/chrome/common/
Dsandbox_policy.cc176 bool IsExpandedModuleName(HMODULE module, const wchar_t* module_name) { in IsExpandedModuleName() argument
186 return (fname.BaseName().value() == module_name); in IsExpandedModuleName()
192 void BlacklistAddOneDll(const wchar_t* module_name, in BlacklistAddOneDll() argument
194 HMODULE module = ::GetModuleHandleW(module_name); in BlacklistAddOneDll()
198 std::wstring name(module_name); in BlacklistAddOneDll()
211 if (!IsExpandedModuleName(module, module_name)) in BlacklistAddOneDll()
216 policy->AddDllToUnload(module_name); in BlacklistAddOneDll()
217 VLOG(1) << "dll to unload found: " << module_name; in BlacklistAddOneDll()
/external/freetype/include/freetype/
Dftmodapi.h163 const FT_String* module_name; member
224 const char* module_name );
/external/freetype/src/raster/
Dftrend1.c144 if ( render->clazz->root.module_name[6] == '1' ) in ft_raster1_render()
150 if ( render->clazz->root.module_name[6] == '5' ) in ft_raster1_render()
/external/chromium/chrome/browser/ui/
Dcrypto_module_password_dialog.h43 void ShowCryptoModulePasswordDialog(const std::string& module_name,
/external/kernel-headers/original/linux/
Dmodule.h438 #define module_name(mod) \ macro
521 #define module_name(mod) "kernel" macro
/external/protobuf/src/google/protobuf/compiler/python/
Dpython_generator.cc245 string module_name = ModuleName(file->name()); in Generate() local
246 string filename = module_name; in Generate()
288 string module_name = ModuleName(file_->dependency(i)->name()); in PrintImports() local
290 module_name); in PrintImports()
/external/chromium/base/
Dlogging.cc180 wchar_t module_name[MAX_PATH]; in GetDefaultLogFile() local
181 GetModuleFileName(NULL, module_name, MAX_PATH); in GetDefaultLogFile()
183 PathString log_file = module_name; in GetDefaultLogFile()
/external/freetype/src/base/
Dftinit.c194 (*cur)->module_name, error )); in FT_Add_Default_Modules()
Dftobjs.c2081 if ( ft_strcmp( cur[0]->clazz->module_name, "truetype" ) == 0 && in FT_Open_Face()
4077 if ( ft_strcmp( module->clazz->module_name, clazz->module_name ) == 0 ) in FT_Add_Module()
4180 const char* module_name ) in FT_Get_Module() argument
4187 if ( !library || !module_name ) in FT_Get_Module()
4194 if ( ft_strcmp( cur[0]->clazz->module_name, module_name ) == 0 ) in FT_Get_Module()
4469 const char* module_name = module->clazz->module_name; in FT_Done_Library() local
4474 ft_strcmp( module_name, driver_name[m] ) != 0 ) in FT_Done_Library()
4480 FT_TRACE7(( "FT_Done_Library: close faces for %s\n", module_name )); in FT_Done_Library()
/external/llvm/include/llvm/Support/
DMachO.h490 uint32_t module_name; member
506 uint32_t module_name; member

12