Lines Matching full:path_
333 : path_(path) {
334 CHECK(!path_.empty());
339 return base::GetFileSize(path_, &file_size) && file_size != 0;
344 LOG(INFO) << "Creating a new key file at |" << path_.value() << "|.";
349 if (!base::ReadFileToString(path_, &json_string)) {
350 LOG(ERROR) << "Failed to read data from |" << path_.value() << "|.";
361 LOG(ERROR) << "Failed to parse JSON data from |" << path_.value() <<"|.";
457 if (!base::ImportantFileWriter::WriteFileAtomically(path_, json_string)) {
458 LOG(ERROR) << "Failed to write JSON file: |" << path_.value() << "|.";
466 LOG(INFO) << "In " << __func__ << " for " << path_.value();
467 string corrupted_path = path_.value() + kCorruptSuffix;
468 path_.value().c_str(), corrupted_path.c_str());