Symbol: fssh_strlcpy
headers/private/fs_shell/fssh_api_wrapper.h
1406
#define strlcpy fssh_strlcpy
headers/private/fs_shell/fssh_api_wrapper.h
1414
#define user_strlcpy fssh_strlcpy
headers/private/fs_shell/fssh_string.h
77
extern fssh_size_t fssh_strlcpy(char *dest, const char *source,
src/tools/fs_shell/driver_settings.cpp
388
fssh_strlcpy(handle->name, driverName, sizeof(handle->name));
src/tools/fs_shell/vfs.cpp
1023
if (fssh_strlcpy(filename, path, FSSH_B_FILE_NAME_LENGTH) >= FSSH_B_FILE_NAME_LENGTH)
src/tools/fs_shell/vfs.cpp
1033
if (fssh_strlcpy(filename, p, FSSH_B_FILE_NAME_LENGTH)
src/tools/fs_shell/vfs.cpp
1049
if (fssh_strlcpy(clonedName, name, FSSH_B_FILE_NAME_LENGTH) >= FSSH_B_FILE_NAME_LENGTH)
src/tools/fs_shell/vfs.cpp
1413
if (fssh_strlcpy(name, dirent->d_name, nameSize) >= nameSize)
src/tools/fs_shell/vfs.cpp
2408
fssh_strlcpy(buffer, path, pathBuffer.BufferSize());
src/tools/fs_shell/vfs.cpp
2515
fssh_strlcpy(buffer, path, pathBuffer.BufferSize());
src/tools/fs_shell/vfs.cpp
2563
if (bufferSize == 0 || fssh_strlcpy(pathBuffer, basePath, bufferSize) >= bufferSize)
src/tools/fs_shell/vfs.cpp
2571
length = fssh_strlcpy(pathBuffer, basePath, bufferSize);
src/tools/fs_shell/vfs.cpp
2671
if (fssh_strlcpy(mutablePath, path, FSSH_B_PATH_NAME_LENGTH) >= FSSH_B_PATH_NAME_LENGTH)
src/tools/fs_shell/vfs.cpp
4993
fssh_strlcpy(info->fsh_name, mount->fs_name, sizeof(info->fsh_name));
src/tools/fs_shell/vfs.cpp
4995
fssh_strlcpy(info->device_name, mount->device_name,
src/tools/fs_shell/vfs.cpp
534
fssh_strlcpy(name, fsName, end + 1 - fsName);