Home
last modified time | relevance | path

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

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_win.cc74 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
75 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
79 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
81 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
84 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
91 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
94 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/external/pdfium/testing/utils/
Dpath_service.cpp29 char path_buffer[MAX_PATH]; in GetExecutableDir() local
30 path_buffer[0] = 0; in GetExecutableDir()
32 if (GetModuleFileNameA(NULL, path_buffer, MAX_PATH) == 0) in GetExecutableDir()
34 *path = std::string(path_buffer); in GetExecutableDir()
/external/webrtc/webrtc/test/testsupport/
Dfileutils.cc155 char path_buffer[FILENAME_MAX]; in WorkingDir() local
156 if (!GET_CURRENT_DIR(path_buffer, sizeof(path_buffer))) { in WorkingDir()
160 return std::string(path_buffer); in WorkingDir()
/external/grpc-grpc/src/core/lib/security/security_connector/
Dload_system_roots_linux.cc74 const char* file_entry_name, char* path_buffer) { in GetAbsoluteFilePath() argument
76 int path_len = snprintf(path_buffer, MAXPATHLEN, "%s/%s", valid_file_dir, in GetAbsoluteFilePath()
Dload_system_roots_linux.h38 const char* file_entry_name, char* path_buffer);
/external/autotest/client/site_tests/platform_ToolchainTests/src/
Dclang-fortify-tests.cpp608 char path_buffer[PATH_MAX - 1]; in TestStdlib() local
611 EXPECT_DEATH(realpath("/", path_buffer)); in TestStdlib()
632 char path_buffer[PATH_MAX - 1]; in TestStdlib() member
639 EXPECT_DEATH_STRUCT(realpath("/", split.path_buffer)); in TestStdlib()
/external/clang/include/clang/AST/
DExpr.h2638 const CXXBaseSpecifier * const *path_buffer() const { in path_buffer() function
2639 return const_cast<CastExpr*>(this)->path_buffer(); in path_buffer()
2641 CXXBaseSpecifier **path_buffer();
2700 path_iterator path_begin() { return path_buffer(); } in path_begin()
2701 path_iterator path_end() { return path_buffer() + path_size(); } in path_end()
2702 path_const_iterator path_begin() const { return path_buffer(); } in path_begin()
2703 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end()
/external/clang/lib/AST/
DExpr.cpp1639 CXXBaseSpecifier **CastExpr::path_buffer() { in path_buffer() function in CastExpr