Searched refs:wcscat_s (Results 1 - 5 of 5) sorted by relevance
/third_party/bounds_checking_function/src/ |
H A D | wcscat_s.c | 11 * Description: wcscat_s function 34 SECUREC_ERROR_INVALID_PARAMTER("wcscat_s"); in SecDoCatW() 37 SECUREC_ERROR_BUFFER_OVERLAP("wcscat_s"); in SecDoCatW() 43 SECUREC_ERROR_INVALID_PARAMTER("wcscat_s"); in SecDoCatW() 46 SECUREC_ERROR_INVALID_RANGE("wcscat_s"); in SecDoCatW() 56 * The wcscat_s function appends a copy of the wide string pointed to by strSrc 59 * The arguments and return value of wcscat_s are wide-character strings. 61 * The wcscat_s function appends strSrc to strDest and terminates the resulting 63 * terminating null character of strDest. wcscat_s will return EOVERLAP_AND_RESET if the 89 errno_t wcscat_s(wchar_ function [all...] |
/third_party/python/PC/ |
H A D | launcher2.c | 788 if (wcscat_s(filename, MAXLEN, L".exe")) { in searchPath() 1676 wcscat_s(realTag, 32, L"-arm64"); in appxSearch() 2247 wcscat_s(buffer, bufferSize, L" *"); in _listAllEnvironments() 2344 exitCode = wcscat_s(buffer, bufferLength, L"\""); in calculateCommandLine() 2369 exitCode = wcscat_s(buffer, bufferLength, L"\""); in calculateCommandLine() 2383 exitCode = wcscat_s(buffer, bufferLength, L" "); in calculateCommandLine() 2385 exitCode = wcscat_s(buffer, bufferLength, launch->executableArgs); in calculateCommandLine() 2391 exitCode = wcscat_s(buffer, bufferLength, search->executableArgs); in calculateCommandLine() 2402 exitCode = wcscat_s(buffer, bufferLength, search->restOfCmdLine); in calculateCommandLine()
|
H A D | launcher.c | 1819 wcscat_s(venv_cfg_path, newlen, L"\\pyvenv.cfg"); in process() 1827 wcscat_s(venv_cfg_path, newlen, L"\\pyvenv.cfg"); in process() 1850 wcscat_s(launcher_ini_path, MAX_PATH, L"\\py.ini"); in process() 1895 wcscat_s(newcommand, newlen, L" "); in process() 1896 wcscat_s(newcommand, newlen, command); in process() 1947 if (wcscat_s(&executable[1], cch - 1, PYTHON_EXECUTABLE)) { in process() 1956 wcscat_s(executable, cch, L"\""); in process()
|
/third_party/bounds_checking_function/include/ |
H A D | securec.h | 453 * Description: The wcscat_s function appends a copy of the wide string pointed to by strSrc (including the 460 SECUREC_API errno_t wcscat_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc);
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 8862 if (dest_path[0] && wcscat_s(dest_path, MAX_PATH, L"\\")) { in _joinW() 8866 return wcscat_s(dest_path, MAX_PATH, rest); in _joinW()
|
Completed in 23 milliseconds