HomeSort by relevance Sort by last modified time
    Searched defs:path_buffer (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_win.cc 65 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; local
66 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) {
70 size_t sz = wcslen(path_buffer);
72 CHECK_EQ(0, wcscat_s(path_buffer, L";"));
75 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH);
81 // directory of the main module at the end of path_buffer.
82 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\');
85 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) {
  /external/webrtc/test/testsupport/
fileutils.cc 84 char path_buffer[FILENAME_MAX]; local
85 if (!GET_CURRENT_DIR(path_buffer, sizeof(path_buffer))) {
89 return std::string(path_buffer);
  /external/clang/lib/AST/
Expr.cpp 1719 CXXBaseSpecifier **CastExpr::path_buffer() { function in class:CastExpr
    [all...]
  /external/clang/include/clang/AST/
Expr.h 2665 const CXXBaseSpecifier * const *path_buffer() const { function in class:clang::StringLiteral::OffsetOfExpr::CastExpr
    [all...]

Completed in 284 milliseconds