Lines Matching refs:filePath
41 bool RustLoadStringFromFile(const rust::String& filePath, rust::String& content);
43 bool RustLoadBufferFromFile(const rust::String& filePath, rust::vec<char>& content);
44 bool RustSaveBufferToFile(const rust::String& filePath, const rust::vec<char>& content, bool truncated);
45 bool RustSaveStringToFile(const rust::String& filePath, const rust::String& content, bool truncated);
55 * @param filePath Indicates the path of the target file.
62 bool LoadStringFromFile(const std::string& filePath, std::string& content);
68 * @param filePath Indicates the path of the target file.
74 bool SaveStringToFile(const std::string& filePath, const std::string& content, bool truncated = true);
103 * @param filePath Indicates the path of the target file.
109 bool LoadBufferFromFile(const std::string& filePath, std::vector<char>& content);
115 * @param filePath Indicates the path of the target file.
120 bool SaveBufferToFile(const std::string& filePath, const std::vector<char>& content, bool truncated = true);
126 * @param filePath Indicates the file to check.