HomeSort by: relevance | last modified time | path
    Searched refs:path_buffer (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/arch/xen/xenbus/
xenbus_client.c 134 char *path_buffer = kmem_alloc(*len, KM_NOSLEEP); local
135 if (path_buffer == NULL)
138 strcpy(path_buffer, "error/");
139 strcpy(path_buffer + strlen("error/"), dev->xbusd_path);
141 return path_buffer;
151 char *printf_buffer = NULL, *path_buffer = NULL; local
165 path_buffer = error_path(dev, &path_buffer_sz);
166 if (path_buffer == NULL) {
172 if (xenbus_write(NULL, path_buffer, "error", printf_buffer) != 0) {
181 if (path_buffer)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_symbolizer_win.cc 108 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; local
109 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) {
113 size_t sz = wcslen(path_buffer);
115 CHECK_EQ(0, wcscat_s(path_buffer, L";"));
118 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH);
124 // directory of the main module at the end of path_buffer.
125 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\');
128 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) {
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer_win.cpp 110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) {
115 size_t sz = wcslen(path_buffer);
117 CHECK_EQ(0, wcscat_s(path_buffer, L";"));
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH);
126 // directory of the main module at the end of path_buffer.
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\');
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) {
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_symbolizer_win.cpp 110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) {
115 size_t sz = wcslen(path_buffer);
117 CHECK_EQ(0, wcscat_s(path_buffer, L";"));
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH);
126 // directory of the main module at the end of path_buffer.
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\');
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) {
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
dirent.c 116 char path_buffer[1024]=""; local
120 filespec = filespec_from_dir_path(path, path_buffer, sizeof(path_buffer)/sizeof(char));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 3404 const CXXBaseSpecifier * const *path_buffer() const { function in class:clang::final::CastExpr
3405 return const_cast<CastExpr*>(this)->path_buffer();
3407 CXXBaseSpecifier **path_buffer();
3470 path_iterator path_begin() { return path_buffer(); }
3471 path_iterator path_end() { return path_buffer() + path_size(); }
3472 path_const_iterator path_begin() const { return path_buffer(); }
3473 path_const_iterator path_end() const { return path_buffer() + path_size(); }
  /src/external/apache2/llvm/dist/clang/lib/AST/
Expr.cpp 1884 CXXBaseSpecifier **CastExpr::path_buffer() { function in class:CastExpr

Completed in 33 milliseconds