reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
  236 static char binary_name_cache_str[kMaxPathLength];
  237 static char process_name_cache_str[kMaxPathLength];
projects/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cpp
   42   internal_snprintf(path, kMaxPathLength, "%s/%s.%zd.%s",
   60   char* file_path = static_cast<char*>(InternalAlloc(kMaxPathLength));
   61   char* module_name = static_cast<char*>(InternalAlloc(kMaxPathLength));
   90       __sanitizer_get_module_and_offset_for_pc(pc, module_name, kMaxPathLength,
projects/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
   56     internal_snprintf(full_path, kMaxPathLength, "%s.%s.%zu", path_prefix,
   59     internal_snprintf(full_path, kMaxPathLength, "%s.%zu", path_prefix, pid);
   91     internal_snprintf(path_prefix, kMaxPathLength, "%s", path);
  181   InternalMmapVector<char> buffer(kMaxPathLength);
  186     if (prefix_len + name_len + 2 <= kMaxPathLength) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_file.h
   39   char path_prefix[kMaxPathLength];
   41   char full_path[kMaxPathLength];
projects/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
   84       char *buf = (char *)MmapOrDie(kMaxPathLength, "FlagHandlerInclude");
   85       SubstituteForFlagValue(value, buf, kMaxPathLength);
   87       UnmapOrDie(buf, kMaxPathLength);
projects/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cpp
   41   InternalScopedString buf(kMaxPathLength);
projects/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
  543   InternalScopedString module_name(kMaxPathLength);
projects/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
  276   InternalScopedString buff(kMaxPathLength);
  277   MemoryMappedSegment segment(buff.data(), kMaxPathLength);
projects/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cpp
  123   InternalScopedString module_name(kMaxPathLength);
projects/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
   37   InternalScopedString exec(kMaxPathLength);
   72   InternalScopedString new_file_path(kMaxPathLength);
projects/compiler-rt/lib/stats/stats.cpp
   44   InternalMmapVector<char> path(kMaxPathLength);
   45   SubstituteForFlagValue(path_env, path.data(), kMaxPathLength);
projects/compiler-rt/lib/tsan/rtl/tsan_rtl.cpp
  163       InternalScopedString filename(kMaxPathLength);