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

12

/external/compiler-rt/lib/asan/
H A Dasan_interface_internal.h48 const char *module_name; // Module name as a C string. This pointer is a member in struct:__asan_global
65 void __asan_before_dynamic_init(const char *module_name);
H A Dasan_globals.cc86 g.module_name, g.has_dynamic_init);
254 void __asan_before_dynamic_init(const char *module_name) { argument
260 CHECK(module_name);
264 Printf("DynInitPoison module: %s\n", module_name);
270 if (g->module_name != module_name)
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_mapping_libcdep.cc82 const char *module_name = StripModuleName(modules[i].full_name()); local
89 text.append("%zx %zx %zx %s\n", start, end, base, module_name);
H A Dsanitizer_symbolizer_libcdep.cc65 const char *module_name; local
68 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset))
71 res->info.FillModuleInfo(module_name, module_offset);
84 const char *module_name; local
86 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset))
89 info->module = internal_strdup(module_name);
101 bool Symbolizer::GetModuleNameAndOffsetForPC(uptr pc, const char **module_name, argument
109 if (module_name)
110 *module_name = module_names_.GetOwnedCopy(internal_module_name);
140 const char **module_name,
139 FindModuleNameAndOffsetForAddress(uptr address, const char **module_name, uptr *module_offset) argument
[all...]
H A Dsanitizer_symbolizer.h90 bool GetModuleNameAndOffsetForPC(uptr pc, const char **module_name,
93 const char *module_name = nullptr; local
95 if (GetModuleNameAndOffsetForPC(pc, &module_name, &unused))
96 return module_name;
140 bool FindModuleNameAndOffsetForAddress(uptr address, const char **module_name,
H A Dsanitizer_symbolizer_posix_libcdep.cc119 // <module_name> <module_offset>
184 const char *SendCommand(bool is_data, const char *module_name, argument
186 CHECK(module_name);
188 is_data ? "DATA " : "", module_name, module_offset);
199 Addr2LineProcess(const char *path, const char *module_name) argument
200 : SymbolizerProcess(path), module_name_(internal_strdup(module_name)) {}
202 const char *module_name() const { return module_name_; } function in class:__sanitizer::Addr2LineProcess
245 const char *SendCommand(const char *module_name, uptr module_offset) { argument
249 internal_strcmp(module_name, addr2line_pool_[i]->module_name())) {
[all...]
H A Dsanitizer_common.cc251 void LoadedModule::set(const char *module_name, uptr base_address) { argument
253 full_name_ = internal_strdup(module_name);
H A Dsanitizer_coverage_libcdep.cc27 // this will create a file module_name.PID.sancov.
96 void InitializeGuards(s32 *guards, uptr n, const char *module_name,
340 const char *module_name = sym->GetModuleNameForPc(caller_pc); local
341 if (!module_name) return;
343 module_name_vec.back().copied_module_name != module_name)
344 module_name_vec.push_back({module_name, range_beg, range_end});
589 const char *module_name = "<unknown>"; local
591 sym->GetModuleNameAndOffsetForPC(UnbundlePc(pc_array[i]), &module_name, local
593 out.append("%s 0x%zx\n", module_name, module_address);
630 // lines like "module_name offse
770 const char *module_name = StripModuleName(r.copied_module_name); local
773 CovWritePacked(internal_getpid(), module_name, offsets.data(), local
[all...]
H A Dsanitizer_win.cc358 char module_name[MAX_PATH]; local
360 GetModuleFileNameA(handle, module_name, sizeof(module_name));
362 module_name[0] = '\0';
364 if (filter && !filter(module_name))
370 cur_module->set(module_name, base_address);
/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);
64 void CPDF_ModuleMgr::NotifyModuleAvailable(FX_LPCSTR module_name) argument
66 if (FXSYS_strcmp(module_name, ADDIN_NAME_CJK) == 0) {
68 } else if (FXSYS_strcmp(module_name, ADDIN_NAME_DECODER) == 0) {
/external/elfutils/src/libdwfl/
H A Doffline.c194 char *module_name = NULL; local
197 else if (unlikely (asprintf (&module_name, "%s:%s", name, h->ar_name) < 0))
203 name = module_name;
212 free (module_name);
227 free (module_name);
H A Dlinux-proc-maps.c343 const char *module_name, Dwarf_Addr base,
347 if (module_name[0] == '/')
355 if (stat (module_name, &sb) == -1 || (sb.st_mode & S_IFMT) != S_IFREG)
357 if (strcmp (strrchr (module_name, ' ') ?: "", " (deleted)") == 0)
365 int fd = open64 (module_name, O_RDONLY);
368 *file_name = strdup (module_name);
379 if (pid != -1 || sscanf (module_name, "[vdso: %d]", &pid) == 1)
341 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 */
198 /* module_name :: The name of the module. */
217 const FT_String* module_name; member in struct:FT_Module_Class_
267 /* module_name :: The module's name (as an ASCII string). */
278 const char* module_name );
318 * module_name ::
337 * If `module_name' isn't a valid module name, or `property_name'
368 const FT_String* module_name,
385 * module_name ::
403 * If `module_name' is
[all...]
/external/libdrm/tests/modeprint/
H A Dmodeprint.c54 char *module_name; variable
345 module_name = argv[1];
408 fd = drmOpen(module_name, NULL);
/external/pdfium/third_party/freetype/include/
H A Dftmodapi.h52 /* Here is a list of possible values of the `module_name' field in */
198 /* module_name :: The name of the module. */
217 const FT_String* module_name; member in struct:FT_Module_Class_
267 /* module_name :: The module's name (as an ASCII string). */
278 const char* module_name );
318 * module_name ::
337 * If `module_name' isn't a valid module name, or `property_name'
368 const FT_String* module_name,
385 * module_name ::
403 * If `module_name' is
[all...]
/external/selinux/libsemanage/src/
H A Dmodules.c50 * Sets reference variables 'module_name' to module's name and
52 * free()ing 'module_name' and 'version'; they will be
57 size_t data_len, char **module_name, char **version)
71 sepol_module_package_info(pf, &file_type, module_name, version) == -1) {
127 const char *module_name) {
142 return sh->funcs->install_file(sh, module_name);
159 const char *module_name)
161 return semanage_module_install_file(sh, module_name);
177 const char *module_name)
179 return semanage_module_install_file(sh, module_name);
56 parse_module_headers(semanage_handle_t * sh, char *module_data, size_t data_len, char **module_name, char **version) argument
126 semanage_module_install_file(semanage_handle_t * sh, const char *module_name) argument
158 semanage_module_upgrade_file(semanage_handle_t * sh, const char *module_name) argument
176 semanage_module_install_base_file(semanage_handle_t * sh, const char *module_name) argument
182 semanage_module_remove(semanage_handle_t * sh, char *module_name) argument
861 semanage_module_disable(semanage_handle_t *sh, char *module_name) argument
[all...]
H A Ddirect_api.c67 size_t data_len, const char *module_name, const char *lang_ext);
68 static int semanage_direct_install_file(semanage_handle_t * sh, const char *module_name);
69 static int semanage_direct_remove(semanage_handle_t * sh, char *module_name);
1377 const char *module_name, const char *lang_ext)
1395 ret = semanage_module_info_set_name(sh, &modinfo, module_name);
1496 static int semanage_direct_remove(semanage_handle_t * sh, char *module_name) argument
1514 ret = semanage_module_key_set_name(sh, &modkey, module_name);
1375 semanage_direct_install(semanage_handle_t * sh, char *data, size_t data_len, const char *module_name, const char *lang_ext) argument
/external/google-breakpad/src/client/solaris/handler/
H A Dminidump_generator.cc454 const char *module_name = module_path ? module_path : "<Unknown>"; local
455 snprintf(path, sizeof(path), "/proc/self/object/%s", module_name);
/external/lldb/source/Interpreter/
H A DOptions.cpp957 const char *module_name = input.GetArgumentAtIndex(cur_arg_pos); local
958 if (module_name)
960 FileSpec module_spec(module_name, false);
/external/selinux/checkpolicy/test/
H A Ddismod.c749 char module_name[80] = { 0 }; local
758 if (fgets(module_name, sizeof(module_name), stdin) == NULL) {
764 module_name[strlen(module_name) - 1] = '\0'; /* remove LF */
765 if (module_name[0] == '\0') {
771 if (read_policy(module_name, mods)) {
774 module_name);
/external/google-breakpad/src/client/mac/handler/
H A Dminidump_generator.cc1407 const char *module_name = strrchr(module_path, '/'); local
1410 if (module_name)
1411 ++module_name;
1413 module_name = "<Unknown>";
1415 size_t module_name_length = strlen(module_name);
1420 if (!cv.CopyIndexAfterObject(0, module_name, module_name_length))
/external/linux-tools-perf/src/tools/perf/util/
H A Dprobe-finder.c154 const char *module_name,
159 const char *path = kernel_get_module_path(module_name);
161 pr_debug2("Use file %s for %s\n", path, module_name);
170 return dwfl_linux_kernel_find_elf(mod, userdata, module_name, base,
152 __linux_kernel_find_elf(Dwfl_Module *mod, void **userdata, const char *module_name, Dwarf_Addr base, char **file_name, Elf **elfp) argument
/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.cc266 string module_name = ModuleName(file->name()); local
267 string filename = module_name;
312 string module_name = ModuleName(file_->dependency(i)->name()); local
314 module_name);
320 string module_name = ModuleName(file_->public_dependency(i)->name()); local
321 printer_->Print("from $module$ import *\n", "module", module_name);
345 string module_name = ModuleName(file_->dependency(i)->name()); local
346 printer_->Print("$module_name$.DESCRIPTOR,", "module_name", module_name);
[all...]
/external/freetype/src/base/
H A Dftobjs.c2153 if ( ft_strcmp( cur[0]->clazz->module_name, "truetype" ) == 0 &&
4266 if ( ft_strcmp( module->clazz->module_name, clazz->module_name ) == 0 )
4354 const char* module_name )
4361 if ( !library || !module_name )
4368 if ( ft_strcmp( cur[0]->clazz->module_name, module_name ) == 0 )
4483 const FT_String* module_name,
4506 if ( !module_name || !property_name || !value )
4514 if ( !ft_strcmp( cur[0]->clazz->module_name, module_nam
4482 ft_property_do( FT_Library library, const FT_String* module_name, const FT_String* property_name, void* value, FT_Bool set ) argument
4751 const char* module_name = module->clazz->module_name; local
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftobjs.c2157 if ( ft_strcmp( cur[0]->clazz->module_name, "truetype" ) == 0 &&
4277 if ( ft_strcmp( module->clazz->module_name, clazz->module_name ) == 0 )
4381 const char* module_name )
4388 if ( !library || !module_name )
4395 if ( ft_strcmp( cur[0]->clazz->module_name, module_name ) == 0 )
4510 const FT_String* module_name,
4533 if ( !module_name || !property_name || !value )
4541 if ( !ft_strcmp( cur[0]->clazz->module_name, module_nam
4509 ft_property_do( FT_Library library, const FT_String* module_name, const FT_String* property_name, void* value, FT_Bool set ) argument
4781 const char* module_name = module->clazz->module_name; local
[all...]

Completed in 743 milliseconds

12