Lines Matching refs:status
51 #include "status.h"
157 bool RebuildManifest(const char* input_file, string* err, Status* status);
165 int RunBuild(int argc, char** argv, Status* status);
228 " --quiet don't show progress status, just command output\n"
261 Status* status) {
274 status, start_time_millis_);
1049 const LoadStatus status = build_log_.Load(log_path, &err);
1050 if (status == LOAD_ERROR) {
1054 if (status == LOAD_NOT_FOUND) {
1266 const LoadStatus status = build_log_.Load(log_path, &err);
1267 if (status == LOAD_ERROR) {
1278 if (status == LOAD_NOT_FOUND) {
1305 const LoadStatus status = deps_log_.Load(path, &state_, &err);
1306 if (status == LOAD_ERROR) {
1317 if (status == LOAD_NOT_FOUND) {
1358 int NinjaMain::RunBuild(int argc, char** argv, Status* status) {
1362 status->Error("%s", err.c_str());
1369 status, start_time_millis_);
1373 status->Error("%s", err.c_str());
1387 status->Info("no work to do.");
1393 status->Info("build stopped: %s.", err.c_str());
1554 Status* status = new StatusPrinter(config);
1563 status->Info("Entering directory `%s'", options.working_dir);
1591 status->Error("%s", err.c_str());
1608 if (ninja.RebuildManifest(options.input_file, &err, status)) {
1616 status->Error("rebuilding '%s': %s", options.input_file, err.c_str());
1622 int result = ninja.RunBuild(argc, argv, status);
1628 status->Error("manifest '%s' still dirty after %d tries, perhaps system time is not set",