Lines Matching refs:content
41 bool RustLoadStringFromFile(const rust::String& filePath, rust::String& content);
42 bool RustLoadStringFromFd(int fd, 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);
46 bool RustSaveStringToFd(int fd, const rust::String& content);
56 * @param content Indicates the <b>std::string</b> object used to hold
62 bool LoadStringFromFile(const std::string& filePath, std::string& content);
69 * @param content Indicates the <b>std::string</b> object to write.
74 bool SaveStringToFile(const std::string& filePath, const std::string& content, bool truncated = true);
81 * @param content Indicates the <b>std::string</b> object used to hold
86 bool LoadStringFromFd(int fd, std::string& content);
93 * @param content Indicates the <b>std::string</b> object to write.
97 bool SaveStringToFd(int fd, const std::string& content);
104 * @param content Indicates the <b>std::vector</b> object used to hold
109 bool LoadBufferFromFile(const std::string& filePath, std::vector<char>& content);
116 * @param content Indicates the <b>std::vector</b> object to write.
120 bool SaveBufferToFile(const std::string& filePath, const std::vector<char>& content, bool truncated = true);