HomeSort by relevance Sort by last modified time
    Searched refs:LOG_IF (Results 1 - 25 of 41) 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)) \
  /device/google/cuttlefish_common/common/libs/glog/
logging.h 27 #define LOG_IF(LEVEL, CONDITION) if (CONDITION) LOG(LEVEL)
  /device/google/cuttlefish_common/host/libs/ivserver/
ivserver.cc 31 LOG_IF(WARNING, unlink(options.qemu_socket_path.c_str()) == 0)
36 LOG_IF(FATAL, !qemu_channel_->IsOpen())
39 LOG_IF(WARNING, unlink(options.client_socket_path.c_str()) == 0)
44 LOG_IF(FATAL, !client_channel_->IsOpen())
vsocsharedmem.cc 70 LOG_IF(WARNING, unlink(path.c_str()) == 0)
75 LOG_IF(FATAL, !shared_mem_fd_->IsOpen())
80 LOG_IF(FATAL, truncate_res == -1)
99 LOG_IF(FATAL, mmap_addr == MAP_FAILED)
  /system/bt/tools/mcap_tool/
mcap_test_mdl.cc 66 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
78 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
88 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
95 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
103 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
111 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
mcap_test_mdep.cc 36 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
43 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
mcap_test_mcl.cc 38 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
48 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
97 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
126 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
132 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << (int)ret;
mcap_test_app.cc 298 LOG_IF(WARNING, mcap_mdl && mcap_mdl->IsConnected())
301 LOG_IF(WARNING, !mcap_mdl) << "No MDL for mdl_id "
312 LOG_IF(INFO, ret != MCA_SUCCESS) << "ret=" << ret;
  /hardware/libhardware/modules/camera/3_4/arc/
common.h 15 #define LOGF_IF(level, res) LOG_IF(level, res) << __FUNCTION__ << "(): "
  /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 121 LOG_IF(WARNING,
124 LOG_IF(WARNING,
real_system_state.cc 74 LOG_IF(INFO, !hardware_->IsNormalBootMode()) << "Booted in dev mode.";
75 LOG_IF(INFO, !hardware_->IsOfficialBuild()) << "Booted non-official build.";
  /system/update_engine/payload_generator/
generate_delta_main.cc 66 LOG_IF(FATAL, !parsing_successful)
69 LOG_IF(FATAL, size != (2048 / 8)) <<
113 LOG_IF(FATAL, in_file.empty())
115 LOG_IF(FATAL, out_hash_file.empty())
148 LOG_IF(FATAL, in_file.empty())
150 LOG_IF(FATAL, out_file.empty())
152 LOG_IF(FATAL, payload_signature_file.empty())
172 LOG_IF(FATAL, in_file.empty())
174 LOG_IF(FATAL, public_key.empty())
415 LOG_IF(WARNING, FLAGS_public_key_version != -1
    [all...]
  /system/update_engine/payload_consumer/
extent_writer.h 39 LOG_IF(ERROR, !end_called_) << "End() not called on ExtentWriter.";
  /device/google/cuttlefish_common/host/commands/record_audio/
main.cc 44 LOG_IF(FATAL, FLAGS_output_file.empty())
  /external/libmojo/mojo/edk/embedder/
platform_channel_pair_posix.cc 131 LOG_IF(WARNING, command_line->HasSwitch(kMojoPlatformChannelHandleSwitch))
platform_channel_pair_win.cc 99 LOG_IF(WARNING, command_line->HasSwitch(kMojoPlatformChannelHandleSwitch))
  /system/update_engine/common/
file_fetcher.cc 51 LOG_IF(ERROR, transfer_in_progress_)
hash_calculator.cc 32 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 59 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
72 // compiles. LOG_IF and development flags also work well together
80 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
310 // by LOG() and LOG_IF, etc. Since these are used all over our code, it's
378 #define LOG_IF(severity, condition) \
412 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
729 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
    [all...]
logging_unittest.cc 83 LOG_IF(INFO, true) << mock_log_source.Log();
149 LOG_IF(INFO, false) << mock_log_source.Log();
  /system/update_engine/update_manager/
update_manager-inl.h 131 LOG_IF(WARNING, EvalStatus::kAskMeAgainLater == ret)

Completed in 597 milliseconds

1 2