Lines Matching refs:exists
116 std::vector<char> ReadCharsFromFile(FILE* file, bool* exists, bool verbose,
122 *exists = false;
135 *exists = false;
140 *exists = true;
144 std::vector<char> ReadCharsFromFile(const char* filename, bool* exists,
147 std::vector<char> result = ReadCharsFromFile(file, exists, verbose, filename);
174 std::string ReadFile(const char* filename, bool* exists, bool verbose) {
175 std::vector<char> result = ReadCharsFromFile(filename, exists, verbose);
179 std::string ReadFile(FILE* file, bool* exists, bool verbose) {
180 std::vector<char> result = ReadCharsFromFile(file, exists, verbose, "");