Searched refs:wcscpy_s (Results 1 - 7 of 7) sorted by relevance
/third_party/bounds_checking_function/src/ |
H A D | wcscpy_s.c | 11 * Description: wcscpy_s function 24 SECUREC_ERROR_INVALID_RANGE("wcscpy_s"); in SecDoCpyW() 37 SECUREC_ERROR_BUFFER_OVERLAP("wcscpy_s"); in SecDoCpyW() 44 * The wcscpy_s function copies the wide string pointed to by strSrc 70 errno_t wcscpy_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc) in wcscpy_s() function 73 SECUREC_ERROR_INVALID_RANGE("wcscpy_s"); in wcscpy_s() 77 SECUREC_ERROR_INVALID_PARAMTER("wcscpy_s"); in wcscpy_s()
|
/third_party/python/PC/ |
H A D | launcher.c | 383 wcscpy_s(ip->exe_display, MAX_PATH, name+1); in _locate_pythons_for_key() 390 wcscpy_s(ip->exe_display, MAX_PATH, ip->executable); in _locate_pythons_for_key() 492 wcscpy_s(ip->executable, MAX_PATH, venv_python); in locate_venv_python() 494 wcscpy_s(ip->version, MAX_VERSION_SIZE, L"venv"); in locate_venv_python() 935 wcscpy_s(path_command.key, MAX_PATH, name); in find_on_path() 1609 wcscpy_s(version, BUFSIZ, L"(venv)"); in show_python_list() 1679 if (wcscpy_s(r, len, s)) { in wcsdup_pad() 1838 if (wcscpy_s(launcher_ini_path, MAX_PATH, argv0)) { in process() 1894 wcscpy_s(newcommand, newlen, wrapped_script_path); in process()
|
H A D | launcher2.c | 825 if (!buf || wcscpy_s(buf, n + 1, buffer)) { in searchPath() 888 wcscpy_s(path, n + 1, buffer); in _findCommand() 940 wcscpy_s(path, n + 1, buffer); in _useShebangAsExecutable() 1157 wcscpy_s(tag, n + 1, buffer); in checkDefaults() 1674 wcscpy_s(realTag, 32, tag); in appxSearch() 2342 exitCode = wcscpy_s(&buffer[1], bufferLength - 1, executablePath); in calculateCommandLine() 2347 exitCode = wcscpy_s(buffer, bufferLength, executablePath); in calculateCommandLine() 2364 exitCode = wcscpy_s(&buffer[1], bufferLength - 1, launch->installDir); in calculateCommandLine() 2372 exitCode = wcscpy_s(buffer, bufferLength, launch->installDir); in calculateCommandLine()
|
/third_party/python/Python/ |
H A D | dynload_win.c | 211 wcscpy_s(py3path, MAXPATHLEN, config->prefix);
|
/third_party/bounds_checking_function/include/ |
H A D | securec.h | 13 * such as memcpy_s, strcpy_s, wcscpy_s,strcat_s, strncat_s, sprintf_s, scanf_s, and so on. 428 * Description: The wcscpy_s function copies the wide string pointed to by strSrc(including the terminating 435 SECUREC_API errno_t wcscpy_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc);
|
/third_party/python/Parser/ |
H A D | myreadline.c | 171 wcscpy_s(wbuf, wbuflen, wbuf_local); in _PyOS_WindowsConsoleReadline()
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 8855 return wcscpy_s(dest_path, MAX_PATH, rest); in _joinW() 8858 if (wcscpy_s(dest_path, MAX_PATH, root)) { in _joinW() 8878 if (wcscpy_s(dest_parent, MAX_PATH, dest) || in _check_dirW() 11569 wcscpy_s(dir_path, path->length + 1, path->wide); in os__getdiskusage_impl()
|
Completed in 29 milliseconds