Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DExpr.h3487 const CXXBaseSpecifier * const *path_buffer() const { in path_buffer() function
3488 return const_cast<CastExpr*>(this)->path_buffer(); in path_buffer()
3490 CXXBaseSpecifier **path_buffer();
3552 path_iterator path_begin() { return path_buffer(); } in path_begin()
3553 path_iterator path_end() { return path_buffer() + path_size(); } in path_end()
3554 path_const_iterator path_begin() const { return path_buffer(); } in path_begin()
3555 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end()
/openbsd/gnu/llvm/clang/lib/AST/
H A DExpr.cpp2014 CXXBaseSpecifier **CastExpr::path_buffer() { in path_buffer() function in CastExpr