Home
last modified time | relevance | path

Searched refs:module_name_len (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cpp169 int GetModuleAndOffsetForPc(uptr pc, char *module_name, uptr module_name_len, in GetModuleAndOffsetForPc() argument
177 if (module_name && module_name_len) { in GetModuleAndOffsetForPc()
178 internal_strncpy(module_name, found_module_name, module_name_len); in GetModuleAndOffsetForPc()
179 module_name[module_name_len - 1] = '\x00'; in GetModuleAndOffsetForPc()
220 uptr module_name_len, in __sanitizer_get_module_and_offset_for_pc() argument
223 reinterpret_cast<uptr>(pc), module_name, module_name_len, in __sanitizer_get_module_and_offset_for_pc()
H A Dsanitizer_linux.cpp1185 uptr module_name_len = Size; in ReadBinaryName()
1188 uptr module_name_len = internal_readlink( in ReadBinaryName()
1191 bool IsErr = internal_iserror(module_name_len, &readlink_error); in ReadBinaryName()
1197 module_name_len = internal_snprintf(buf, buf_len, "%s", in ReadBinaryName()
1199 CHECK_LT(module_name_len, buf_len); in ReadBinaryName()
1201 return module_name_len; in ReadBinaryName()
H A Dsanitizer_win.cpp688 int module_name_len = ::WideCharToMultiByte( in init() local
691 module_name[module_name_len] = '\0'; in init()
H A Dsanitizer_common.h759 int GetModuleAndOffsetForPc(uptr pc, char *module_name, uptr module_name_len,
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/
H A Dsymbols.py440 module_name_len = self.ulong.value
441 module_name = (c_char * module_name_len)()
442 …etModuleNameString(self.symbols, whichname, DEBUG_ANY_ID, base, module_name, module_name_len, None)