HomeSort by relevance Sort by last modified time
    Searched defs:ReadFileToString (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/base/json/
json_file_value_serializer.cc 46 int JSONFileValueSerializer::ReadFileToString(std::string* json_string) {
48 if (!base::ReadFileToString(json_file_path_, json_string)) {
86 int error = ReadFileToString(&json_string);
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
shader_utils.cpp 13 static std::string ReadFileToString(const std::string &source)
63 std::string source = ReadFileToString(sourcePath);
117 std::string vsSource = ReadFileToString(vsPath);
118 std::string fsSource = ReadFileToString(fsPath);
  /external/chromium_org/chrome/browser/ui/webui/extensions/
extension_error_ui_util.cc 40 std::string ReadFileToString(const base::FilePath& path) {
42 base::ReadFileToString(path, &data);
136 base::Bind(&ReadFileToString, path),
extension_loader_handler.cc 39 std::string ReadFileToString(const base::FilePath& path) {
43 base::ReadFileToString(path, &data);
217 base::Bind(&ReadFileToString, file_path.Append(kManifestFilename)),
  /external/chromium_org/third_party/leveldatabase/src/util/
env.cc 68 Status ReadFileToString(Env* env, const std::string& fname, std::string* data) {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
file.cc 65 bool File::ReadFileToString(const string& name, string* output) {
82 GOOGLE_CHECK(ReadFileToString(name, output)) << "Could not read: " << name;
  /external/protobuf/src/google/protobuf/testing/
file.cc 65 bool File::ReadFileToString(const string& name, string* output) {
82 GOOGLE_CHECK(ReadFileToString(name, output)) << "Could not read: " << name;
  /external/chromium_org/base/
file_util.cc 130 bool ReadFileToString(const FilePath& path,
166 bool ReadFileToString(const FilePath& path, std::string* contents) {
167 return ReadFileToString(path, contents, std::numeric_limits<size_t>::max());
  /art/runtime/
utils.cc 77 if (ReadFileToString(StringPrintf("/proc/self/task/%d/comm", tid), &result)) {
113 bool ReadFileToString(const std::string& file_name, std::string* result) {
1026 if (!ReadFileToString(StringPrintf("/proc/self/task/%d/stat", tid), &stats)) {
1046 if (!ReadFileToString(StringPrintf("/proc/self/task/%d/cgroup", tid), &cgroup_file)) {
    [all...]

Completed in 499 milliseconds