HomeSort by relevance Sort by last modified time
    Searched refs:LOG_IF (Results 1 - 25 of 32) sorted by null

1 2

  /bionic/tools/relocation_packer/src/
debug_unittest.cc 34 LOG_IF(INFO, true) << "INFO log message";
35 LOG_IF(INFO, false) << "INFO log message, SHOULD NOT PRINT";
36 LOG_IF(WARNING, true) << "WARNING log message";
37 LOG_IF(WARNING, false) << "WARNING log message, SHOULD NOT PRINT";
38 LOG_IF(ERROR, true) << "ERROR log message";
39 LOG_IF(ERROR, false) << "ERROR log message, SHOULD NOT PRINT";
40 LOG_IF(FATAL, false) << "FATAL log message, SHOULD NOT PRINT";
106 LOG_IF(FATAL, true) << "FATAL log message", "FATAL: FATAL log message");
debug.h 10 // LOG_IF(tag, predicate) logs if predicate evaluates to true, else silent.
86 // severity is FATAL. LOG_IF(severity, predicate) does the same but only if
93 #define LOG_IF(severity, predicate) \
109 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
  /system/update_engine/
daemon.cc 56 LOG_IF(ERROR, !real_system_state->Initialize())
61 LOG_IF(ERROR, !daemon_state_android->Initialize())
daemon_state_android.cc 43 LOG_IF(INFO, !hardware_->IsNormalBootMode()) << "Booted in dev mode.";
44 LOG_IF(INFO, !hardware_->IsOfficialBuild()) << "Booted non-official build.";
omaha_response_handler_action.cc 100 LOG_IF(WARNING, !DeltaPerformer::ResetUpdateProgress(
103 LOG_IF(WARNING, !system_state_->prefs()->SetString(
real_system_state.cc 63 LOG_IF(INFO, !hardware_->IsNormalBootMode()) << "Booted in dev mode.";
64 LOG_IF(INFO, !hardware_->IsOfficialBuild()) << "Booted non-official build.";
boot_control_chromeos.cc 55 LOG_IF(WARNING, ret > 0) << "rootdev found a device name with no device node";
update_engine_client.cc 467 LOG_IF(WARNING, FLAGS_reboot) << "-reboot flag ignored.";
omaha_request_action.cc 153 LOG_IF(WARNING, !prefs->SetString(kPrefsPreviousVersion, ""))
    [all...]
  /system/update_engine/payload_generator/
generate_delta_main.cc 64 LOG_IF(FATAL, !parsing_successful)
67 LOG_IF(FATAL, size != (2048 / 8)) <<
111 LOG_IF(FATAL, in_file.empty())
113 LOG_IF(FATAL, out_hash_file.empty())
146 LOG_IF(FATAL, in_file.empty())
148 LOG_IF(FATAL, out_file.empty())
150 LOG_IF(FATAL, payload_signature_file.empty())
171 LOG_IF(FATAL, in_file.empty())
173 LOG_IF(FATAL, public_key.empty())
187 LOG_IF(FATAL, old_rootfs.empty()
    [all...]
  /system/update_engine/payload_consumer/
extent_writer.h 38 LOG_IF(ERROR, !end_called_) << "End() not called on ExtentWriter.";
download_action.cc 299 LOG_IF(WARNING, writer_->Close() != 0) << "Error closing the writer.";
delta_performer.cc 301 LOG_IF(ERROR, !payload_hash_calculator_.Finalize() ||
633 LOG_IF(WARNING, !prefs_->SetInt64(kPrefsManifestMetadataSize,
636 LOG_IF(WARNING, !prefs_->SetInt64(kPrefsManifestSignatureSize,
    [all...]
  /external/libmojo/mojo/edk/embedder/
platform_channel_pair_posix.cc 113 LOG_IF(WARNING, command_line->HasSwitch(kMojoPlatformChannelHandleSwitch))
platform_channel_pair_win.cc 99 LOG_IF(WARNING, command_line->HasSwitch(kMojoPlatformChannelHandleSwitch))
  /system/extras/perfprofd/quipper/base/
logging.h 27 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
40 // compiles. LOG_IF and development flags also work well together
48 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
141 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
189 #define LOG_IF(severity, condition) \
206 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
325 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
665 LOG_IF(ERROR, !logged_once) << NOTIMPLEMENTED_MSG;\
  /system/update_engine/common/
file_fetcher.cc 51 LOG_IF(ERROR, transfer_in_progress_)
hash_calculator.cc 33 LOG_IF(ERROR, !valid_) << "SHA256_Init failed";
multi_range_http_fetcher.cc 101 LOG_IF(WARNING, next_size <= 0) << "Asked to write length <= 0";
  /external/libchrome/base/
logging.h 58 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
71 // compiles. LOG_IF and development flags also work well together
79 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
337 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
404 #define LOG_IF(severity, condition) \
438 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
657 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
    [all...]
logging_unittest.cc 70 LOG_IF(INFO, true) << mock_log_source.Log();
136 LOG_IF(INFO, false) << mock_log_source.Log();
  /system/update_engine/update_manager/
update_manager-inl.h 131 LOG_IF(WARNING, EvalStatus::kAskMeAgainLater == ret)
  /external/libchrome/dbus/
object_manager.cc 238 LOG_IF(WARNING, !success) << service_name_ << " " << object_path_.value()
392 LOG_IF(WARNING, !success) << service_name_ << " " << object_path_.value()
417 LOG_IF(WARNING, !success) << service_name_ << " " << object_path_.value()
property.cc 95 LOG_IF(WARNING, !success) << "Failed to connect to " << signal_name
224 LOG_IF(WARNING, !response) << property->name() << ": Set: failed.";
  /external/libbrillo/brillo/glib/
dbus.cc 255 LOG_IF(WARNING, result == DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER)

Completed in 423 milliseconds

1 2