Home
last modified time | relevance | path

Searched refs:path_buffer (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
115 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
117 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h3480 const CXXBaseSpecifier * const *path_buffer() const { in path_buffer() function
3481 return const_cast<CastExpr*>(this)->path_buffer(); in path_buffer()
3483 CXXBaseSpecifier **path_buffer();
3545 path_iterator path_begin() { return path_buffer(); } in path_begin()
3546 path_iterator path_end() { return path_buffer() + path_size(); } in path_end()
3547 path_const_iterator path_begin() const { return path_buffer(); } in path_begin()
3548 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end()
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp1927 CXXBaseSpecifier **CastExpr::path_buffer() { in path_buffer() function in CastExpr