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

  /external/pdfium/testing/utils/
path_service.cpp 27 char path_buffer[MAX_PATH]; local
28 path_buffer[0] = 0;
30 if (GetModuleFileNameA(NULL, path_buffer, MAX_PATH) == 0)
32 *path = std::string(path_buffer);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_win.cc 74 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; local
75 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) {
79 size_t sz = wcslen(path_buffer);
81 CHECK_EQ(0, wcscat_s(path_buffer, L";"));
84 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH);
90 // directory of the main module at the end of path_buffer.
91 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\');
94 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) {
  /external/webrtc/webrtc/test/testsupport/
fileutils.cc 155 char path_buffer[FILENAME_MAX]; local
156 if (!GET_CURRENT_DIR(path_buffer, sizeof(path_buffer))) {
160 return std::string(path_buffer);
  /external/clang/include/clang/AST/
Expr.h 2712 const CXXBaseSpecifier * const *path_buffer() const { function in class:clang::StringLiteral::OffsetOfExpr::CastExpr
    [all...]
  /external/clang/lib/AST/
Expr.cpp 1756 CXXBaseSpecifier **CastExpr::path_buffer() { function in class:CastExpr
    [all...]

Completed in 251 milliseconds