Searched refs:path_buffer (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/sys/xen/xenbus/ |
| H A D | xenbus.c | 78 char *path_buffer = malloc(strlen("error/") in error_path() local 81 strcpy(path_buffer, "error/"); in error_path() 82 strcpy(path_buffer + strlen("error/"), xenbus_get_node(dev)); in error_path() 84 return (path_buffer); in error_path() 110 char *printf_buffer = NULL, *path_buffer = NULL; in xenbus_dev_verror() local 120 path_buffer = error_path(dev); in xenbus_dev_verror() 122 if (path_buffer == NULL) { in xenbus_dev_verror() 128 if (xs_write(XST_NIL, path_buffer, "error", printf_buffer) != 0) { in xenbus_dev_verror() 137 if (path_buffer) in xenbus_dev_verror() 138 free(path_buffer,M_XENBUS); in xenbus_dev_verror()
|
| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_symbolizer_win.cc | 108 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local 109 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded() 113 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded() 115 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded() 118 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded() 125 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded() 128 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Expr.h | 3008 const CXXBaseSpecifier * const *path_buffer() const { in path_buffer() function 3009 return const_cast<CastExpr*>(this)->path_buffer(); in path_buffer() 3011 CXXBaseSpecifier **path_buffer(); 3075 path_iterator path_begin() { return path_buffer(); } in path_begin() 3076 path_iterator path_end() { return path_buffer() + path_size(); } in path_end() 3077 path_const_iterator path_begin() const { return path_buffer(); } in path_begin() 3078 path_const_iterator path_end() const { return path_buffer() + path_size(); } in path_end()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Expr.cpp | 1811 CXXBaseSpecifier **CastExpr::path_buffer() { in path_buffer() function in CastExpr
|