Home
last modified time | relevance | path

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

123456789

/dports/textproc/raptor2/raptor2-2.0.15/src/
H A Draptor_rfc2396.c372 s = path_buffer; in raptor_uri_normalize_path()
404 for(p = path_buffer; p; ) { in raptor_uri_normalize_path()
443 unsigned char *path_buffer = NULL; in raptor_uri_resolve_uri_reference() local
509 if(!path_buffer) { in raptor_uri_resolve_uri_reference()
516 result.path = path_buffer; in raptor_uri_resolve_uri_reference()
553 if(!path_buffer) { in raptor_uri_resolve_uri_reference()
557 result.path = path_buffer; in raptor_uri_resolve_uri_reference()
586 if(!path_buffer) { in raptor_uri_resolve_uri_reference()
590 result.path = path_buffer; in raptor_uri_resolve_uri_reference()
591 *path_buffer = '\0'; in raptor_uri_resolve_uri_reference()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/esl/
H A Divrd.c52 char path_buffer[1024] = { 0 }; in my_forking_callback() local
76 strncpy(path_buffer, path, sizeof(path_buffer) - 1); in my_forking_callback()
90 execl(path_buffer, path_buffer, arg, (char *)NULL); in my_forking_callback()
99 char path_buffer[1024] = { 0 }; in mycallback() local
113 snprintf(path_buffer, sizeof(path_buffer), "%s %d", path, client_sock); in mycallback()
116 if (system(path_buffer)) { in mycallback()
/dports/textproc/raptor/raptor-1.4.21/src/
H A Draptor_rfc2396.c268 unsigned char *path_buffer=NULL; in raptor_uri_resolve_uri_reference() local
370 if(!path_buffer) in raptor_uri_resolve_uri_reference()
372 result.path = path_buffer; in raptor_uri_resolve_uri_reference()
373 *path_buffer = '\0'; in raptor_uri_resolve_uri_reference()
383 path_buffer[result.path_len]='\0'; in raptor_uri_resolve_uri_reference()
389 path_buffer[result.path_len]='\0'; in raptor_uri_resolve_uri_reference()
394 for(p=(prev=path_buffer); *p; p++) { in raptor_uri_resolve_uri_reference()
440 for(s=path_buffer; *s; last_char=*s++) { in raptor_uri_resolve_uri_reference()
503 s=path_buffer; in raptor_uri_resolve_uri_reference()
592 if(path_buffer) in raptor_uri_resolve_uri_reference()
[all …]
/dports/databases/libdrizzle-redux/libdrizzle-5.1.4/libdrizzle/
H A Dconn_uds.cc56 if (con->socket.uds.path_buffer[0] != 0) in drizzle_uds()
58 return con->socket.uds.path_buffer; in drizzle_uds()
80 con->socket.uds.path_buffer[0]= 0; in drizzle_set_uds()
84 strncpy(con->socket.uds.path_buffer, uds, sizeof(con->socket.uds.path_buffer)); in drizzle_set_uds()
/dports/converters/pdf2djvu/pdf2djvu-0.9.17.1/
H A Dsystem.cc322 TemporaryPathTemplate path_buffer; in TemporaryDirectory() local
323 if (mkdtemp(path_buffer) == nullptr) in TemporaryDirectory()
327 char path_buffer[PATH_MAX]; in TemporaryDirectory()
332 if (unlink(path_buffer) < 0) in TemporaryDirectory()
333 throw_posix_error(path_buffer); in TemporaryDirectory()
334 if (mkdir(path_buffer) < 0) in TemporaryDirectory()
335 throw_posix_error(path_buffer); in TemporaryDirectory()
337 this->name += path_buffer; in TemporaryDirectory()
425 TemporaryPathTemplate path_buffer; in construct() local
426 int fd = mkstemp(path_buffer); in construct()
[all …]
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/google/gops/vendor/github.com/keybase/go-ps/darwincgo/
H A Dprocess_darwin.c77 char path_buffer[PROC_PIDPATHINFO_MAXSIZE]; in darwinProcessPaths() local
81 bzero(path_buffer, PROC_PIDPATHINFO_MAXSIZE); in darwinProcessPaths()
82 if (proc_pidpath(pids[i], path_buffer, sizeof(path_buffer)) > 0) { in darwinProcessPaths()
83 goDarwinSetPath(pids[i], path_buffer); in darwinProcessPaths()
/dports/security/keybase/client-v5.7.1/go/vendor/github.com/keybase/go-ps/darwincgo/
H A Dprocess_darwin.c77 char path_buffer[PROC_PIDPATHINFO_MAXSIZE]; in darwinProcessPaths() local
81 bzero(path_buffer, PROC_PIDPATHINFO_MAXSIZE); in darwinProcessPaths()
82 if (proc_pidpath(pids[i], path_buffer, sizeof(path_buffer)) > 0) { in darwinProcessPaths()
83 goDarwinSetPath(pids[i], path_buffer); in darwinProcessPaths()
/dports/lang/gnat_util/gcc-6-20180516/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc72 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
73 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
77 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
79 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
82 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
89 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
92 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/lang/gcc6-aux/gcc-6-20180516/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc72 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
73 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
77 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
79 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
82 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
89 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
92 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/emulators/mess/mame-mame0226/src/osd/modules/file/
H A Dposixfile.cpp391 std::vector<char> path_buffer(MAX_PATH); in osd_get_full_path() local
392 if (::_fullpath(&path_buffer[0], path.c_str(), MAX_PATH)) in osd_get_full_path()
394 dst = &path_buffer[0]; in osd_get_full_path()
409 std::vector<char> path_buffer(PATH_MAX); in osd_get_full_path()
410 if (::realpath(path.c_str(), &path_buffer[0])) in osd_get_full_path()
412 dst = &path_buffer[0]; in osd_get_full_path()
422 while (!::getcwd(&path_buffer[0], path_buffer.size())) in osd_get_full_path()
427 path_buffer.resize(path_buffer.size() * 2); in osd_get_full_path()
429 dst.assign(&path_buffer[0]).push_back(PATHSEPCH); in osd_get_full_path()
/dports/emulators/mame/mame-mame0226/src/osd/modules/file/
H A Dposixfile.cpp391 std::vector<char> path_buffer(MAX_PATH); in osd_get_full_path() local
392 if (::_fullpath(&path_buffer[0], path.c_str(), MAX_PATH)) in osd_get_full_path()
394 dst = &path_buffer[0]; in osd_get_full_path()
409 std::vector<char> path_buffer(PATH_MAX); in osd_get_full_path()
410 if (::realpath(path.c_str(), &path_buffer[0])) in osd_get_full_path()
412 dst = &path_buffer[0]; in osd_get_full_path()
422 while (!::getcwd(&path_buffer[0], path_buffer.size())) in osd_get_full_path()
427 path_buffer.resize(path_buffer.size() * 2); in osd_get_full_path()
429 dst.assign(&path_buffer[0]).push_back(PATHSEPCH); in osd_get_full_path()
/dports/editors/texmaker/texmaker-5.0.3/pdfium/testing/utils/
H A 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()
/dports/sysutils/dupd/dupd-1.7/src/
H A Dhashlist.c43 static char * path_buffer = NULL; variable
248 if (path_buffer != NULL) { free(path_buffer); } in free_hashlist()
326 path_buffer = (char *)realloc(path_buffer, path_buffer_size); in publish_duplicate_hash_list()
335 pos += sprintf(path_buffer + pos, "%s%c", file, path_separator); in publish_duplicate_hash_list()
337 sprintf(path_buffer + pos, "%s%c", file, 0); in publish_duplicate_hash_list()
358 duplicate_to_db(dbh, p->next_index, size, path_buffer); in publish_duplicate_hash_list()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
115 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
117 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/devel/tinygo/tinygo-0.14.1/lib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc108 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()
/dports/lang/gcc8/gcc-8.5.0/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc106 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
107 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
111 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
113 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
116 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
123 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
126 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
115 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
117 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/lang/gcc10/gcc-10.3.0/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
115 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
117 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc106 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
107 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
111 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
113 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
116 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
123 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
126 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc106 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
107 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
111 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
113 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
116 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
123 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
126 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
115 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
117 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/lang/gcc11/gcc-11.2.0/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
115 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
117 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/lang/gcc11-devel/gcc-11-20211009/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
115 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
117 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/devel/avr-gcc/gcc-10.2.0/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp110 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
111 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
115 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
117 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
120 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
127 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
130 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()
/dports/lang/gcc9-devel/gcc-9-20211007/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc106 static wchar_t path_buffer[kSymPathSize + 1 + MAX_PATH]; in InitializeDbgHelpIfNeeded() local
107 if (!SymGetSearchPathW(GetCurrentProcess(), path_buffer, kSymPathSize)) { in InitializeDbgHelpIfNeeded()
111 size_t sz = wcslen(path_buffer); in InitializeDbgHelpIfNeeded()
113 CHECK_EQ(0, wcscat_s(path_buffer, L";")); in InitializeDbgHelpIfNeeded()
116 DWORD res = GetModuleFileNameW(NULL, path_buffer + sz, MAX_PATH); in InitializeDbgHelpIfNeeded()
123 wchar_t *last_bslash = wcsrchr(path_buffer + sz, L'\\'); in InitializeDbgHelpIfNeeded()
126 if (!SymSetSearchPathW(GetCurrentProcess(), path_buffer)) { in InitializeDbgHelpIfNeeded()

123456789