Searched defs:module_name (Results 1 - 25 of 52) sorted by relevance

123

/external/chromium_org/chrome/browser/install_verification/win/
H A Dmodule_verification_common.cc15 std::string CalculateModuleNameDigest(const base::string16& module_name) { argument
17 base::FilePath(module_name).BaseName().value())));
H A Dmodule_info.h16 ModuleInfo(const base::char16* const module_name, argument
21 name(module_name) {
/external/compiler-rt/lib/asan/
H A Dasan_interface_internal.h39 const char *module_name; // Module name as a C string. This pointer is a member in struct:__asan_global
56 void __asan_before_dynamic_init(const char *module_name);
H A Dasan_globals.cc77 g.module_name, g.has_dynamic_init);
211 void __asan_before_dynamic_init(const char *module_name) { argument
217 CHECK(module_name);
221 Printf("DynInitPoison module: %s\n", module_name);
227 if (g->module_name != module_name)
/external/chromium_org/chrome/browser/ui/views/status_icons/
H A Dstatus_tray_state_changer_win.cc54 wchar_t module_name[MAX_PATH]; local
55 ::GetModuleFileName(NULL, module_name, MAX_PATH);
57 file_name_ = module_name;
/external/chromium_org/sandbox/win/src/
H A Dtarget_interceptions.cc47 UNICODE_STRING* module_name = local
51 if ((!module_name) && (image_flags & MODULE_HAS_CODE)) {
54 module_name = ExtractModuleName(file_name);
60 if (!agent->OnDllLoad(file_name, module_name, *base)) {
67 if (module_name)
68 operator delete(module_name, NT_ALLOC);
/external/chromium_org/ui/base/cursor/
H A Dcursor_loader_win.cc164 const base::string16& module_name) {
165 g_cursor_resource_module_name.Get() = module_name;
163 SetCursorResourceModule( const base::string16& module_name) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_mapping_libcdep.cc83 char *module_name = StripModuleName(modules[i].full_name()); local
89 text.append("%zx %zx %zx %s\n", start, end, base, module_name);
94 InternalFree(module_name);
H A Dsanitizer_symbolizer.h98 virtual bool GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, argument
H A Dsanitizer_symbolizer_libbacktrace.cc90 const char *module_name; member in struct:__sanitizer::__anon18831::SymbolizeCodeData
102 info->FillAddressAndModuleInfo(addr, cdata->module_name,
120 info->FillAddressAndModuleInfo(addr, cdata->module_name,
153 const char *module_name,
159 data.module_name = module_name;
184 const char *module_name,
151 SymbolizeCode(uptr addr, AddressInfo *frames, uptr max_frames, const char *module_name, uptr module_offset) argument
/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/chromium_org/base/debug/
H A Dprofiler.cc144 const base::win::PEImage &image, const char* module_name,
143 FindResolutionFunctionInImports( const base::win::PEImage &image, const char* module_name, PIMAGE_THUNK_DATA unused_name_table, PIMAGE_THUNK_DATA import_address_table, PVOID cookie) argument
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftmodapi.h52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' is
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dpreamble_patcher.h183 // exactly match the function you specify using module_name and
186 // @param module_name The name of the module from which the function
202 static SideStepError Patch(LPCTSTR module_name, argument
206 SIDESTEP_ASSERT(module_name && function_name);
207 if (!module_name || !function_name) {
212 HMODULE module = ::GetModuleHandle(module_name);
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dpreamble_patcher.h183 // exactly match the function you specify using module_name and
186 // @param module_name The name of the module from which the function
202 static SideStepError Patch(LPCTSTR module_name, argument
206 SIDESTEP_ASSERT(module_name && function_name);
207 if (!module_name || !function_name) {
212 HMODULE module = ::GetModuleHandle(module_name);
/external/elfutils/0.153/libdwfl/
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-proc-maps.c305 const char *module_name, Dwarf_Addr base,
308 if (module_name[0] == '/')
310 int fd = open64 (module_name, O_RDONLY);
313 *file_name = strdup (module_name);
324 if (sscanf (module_name, "[vdso: %d]", &pid) == 1)
303 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
/external/freetype/include/
H A Dftmodapi.h52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' is
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftmodapi.h52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' is
[all...]
/external/pdfium/core/src/fpdfapi/
H A Dfpdf_basic_module.cpp53 void CPDF_ModuleMgr::SetDownloadCallback(FX_BOOL (*callback)(FX_LPCSTR module_name)) argument
57 FX_BOOL CPDF_ModuleMgr::DownloadModule(FX_LPCSTR module_name) argument
62 return m_pDownloadCallback(module_name);
81 void CPDF_ModuleMgr::SetModulePath(FX_LPCSTR module_name, FX_LPCSTR path) argument
83 if (module_name == NULL || module_name[0] == 0) {
86 m_ModulePathList.SetAt(module_name, FX_NEW CFX_ByteString(path, -1));
89 CFX_ByteString CPDF_ModuleMgr::GetModuleFilePath(FX_LPCSTR module_name, FX_LPCSTR name) argument
92 if (m_ModulePathList.Lookup(module_name, (FX_LPVOID&)pPath)) {
115 void CPDF_ModuleMgr::NotifyModuleAvailable(FX_LPCSTR module_name) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftmodapi.h52 /* Here is a list of possible values of the `module_name' field in */
171 /* module_name :: The name of the module. */
190 const FT_String* module_name; member in struct:FT_Module_Class_
240 /* module_name :: The module's name (as an ASCII string). */
251 const char* module_name );
291 * module_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
341 const FT_String* module_name,
358 * module_name ::
376 * If `module_name' is
[all...]
/external/chromium_org/chrome/browser/profile_resetter/
H A Dautomatic_profile_resetter_delegate.cc113 std::string module_name; local
114 if (!module_dictionary->GetString("name", &module_name))
116 StringToLowerASCII(&module_name);
117 module_name_digests->AppendString(base::MD5String(module_name));
/external/chromium_org/chrome/test/base/
H A Dmodule_system_test.cc177 void ModuleSystemTest::RegisterTestFile(const std::string& module_name, argument
185 source_map_->RegisterModule(module_name, test_js);
/external/chromium_org/chrome_elf/blacklist/
H A Dblacklist_interceptions.cc38 int DllMatch(const base::string16& module_name) { argument
40 if (_wcsicmp(module_name.c_str(), blacklist::g_troublesome_dlls[i]) == 0)
197 base::string16 module_name(GetImageInfoFromLoadedModule(
201 if (module_name.empty() && (image_flags & sandbox::MODULE_HAS_CODE)) {
204 module_name = ExtractLoadedModuleName(file_name);
207 if (!module_name.empty()) {
208 int blocked_index = DllMatch(module_name);
/external/chromium_org/content/public/renderer/
H A Dcontent_renderer_client.cc153 const std::string& module_name) {
152 IsExternalPepperPlugin( const std::string& module_name) argument

Completed in 1211 milliseconds

123