/system/core/libunwindstack/tests/ |
D | DwarfCfaLogTest.cpp | 83 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2000, 0x2001)); in TYPED_TEST_P() 94 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2000, 0x2001)); in TYPED_TEST_P() 105 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2000, 0x2002)); in TYPED_TEST_P() 115 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2100, 0x2103)); in TYPED_TEST_P() 126 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x500, 0x503)); in TYPED_TEST_P() 136 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x1500, 0x1505)); in TYPED_TEST_P() 147 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x500, 0x503)); in TYPED_TEST_P() 158 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x1500, 0x1505)); in TYPED_TEST_P() 169 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2000, 0x2001)); in TYPED_TEST_P() 179 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x3000, 0x3003)); in TYPED_TEST_P() [all …]
|
/system/keymaster/android_keymaster/ |
D | logger.cpp | 24 int Logger::Log(LogLevel level, const char* fmt, va_list args) { in Log() function in keymaster::Logger 31 int Logger::Log(LogLevel level, const char* fmt, ...) { in Log() function in keymaster::Logger 34 int result = Log(level, fmt, args); in Log() 43 int result = Log(DEBUG_LVL, fmt, args); in Debug() 52 int result = Log(INFO_LVL, fmt, args); in Info() 60 int result = Log(WARNING_LVL, fmt, args); in Warning() 68 int result = Log(ERROR_LVL, fmt, args); in Error() 76 int result = Log(SEVERE_LVL, fmt, args); in Severe()
|
/system/core/logd/ |
D | SerializedLogChunkTest.cpp | 39 auto* entry = chunk.Log(1234, time, 0, 1, 2, log_message, sizeof(log_message)); in TEST() 64 EXPECT_NE(nullptr, chunk.Log(1, log_time(), 1000, 1, 1, log_message, sizeof(log_message))); in TEST() 67 EXPECT_NE(nullptr, chunk.Log(2, log_time(), 1000, 2, 1, log_message, sizeof(log_message))); in TEST() 70 EXPECT_NE(nullptr, chunk.Log(3, log_time(), 1000, 3, 1, log_message, sizeof(log_message))); in TEST() 79 chunk.Log(2, log_time(0x1234, 0x5678), 0x111, 0x222, 0x333, "initial message", in TEST() 81 chunk.Log(3, log_time(0x2345, 0x6789), 0x444, 0x555, 0x666, "second message", in TEST() 85 chunk.Log(uint64_t_max, log_time(uint32_t_max, uint32_t_max), uint32_t_max, uint32_t_max, in TEST() 169 chunk.Log(1, log_time(), kOtherUid, 1, 2, msg, sizeof(msg)); in TEST_P() 184 chunk.Log(1, log_time(), kUidToClear, 1, 2, msg, sizeof(msg)); in TEST_P() 195 chunk.Log(2, log_time(), kUidToClear, 1, 2, msg, sizeof(msg)); in TEST_P() [all …]
|
D | ReplayMessages.cpp | 145 virtual void Log(const RecordedLogMessage& meta, const char* msg) = 0; 193 void Log(const RecordedLogMessage& meta, const char* msg) override { in Log() function in PrintInteresting 194 simple_log_buffer_.Log(static_cast<log_id_t>(meta.log_id), meta.realtime, meta.uid, in Log() 197 chatty_log_buffer_.Log(static_cast<log_id_t>(meta.log_id), meta.realtime, meta.uid, in Log() 200 serialized_log_buffer_.Log(static_cast<log_id_t>(meta.log_id), meta.realtime, meta.uid, in Log() 249 void Log(const RecordedLogMessage& meta, const char* msg) override { in Log() function in SingleBufferOperation 251 log_buffer_->Log(static_cast<log_id_t>(meta.log_id), meta.realtime, meta.uid, meta.pid, in Log() 448 operation->Log(*meta, msg); in main()
|
D | RecordingLogBuffer.cpp | 58 int RecordingLogBuffer::Log(log_id_t log_id, log_time realtime, uid_t uid, pid_t pid, pid_t tid, in Log() function in RecordingLogBuffer 61 return SimpleLogBuffer::Log(log_id, realtime, uid, pid, tid, msg, len); in Log()
|
D | README.replay.md | 12 Recording messages may delay the Log() function from completing and it is highly recommended to make 24 1. Log Entry Count 32 3. `latency BUFFER_TYPE` - this prints statistics of the latency of the Log() function for the given 45 5. `nothing BUFFER_TYPE` - this does nothing other than read the input file and call Log() for the
|
/system/extras/simpleperf/demo/JavaApi/app/src/main/java/simpleperf/demo/java_api/ |
D | MainActivity.java | 21 import android.util.Log; 55 Log.e("simpleperf", "startRecording"); in createProfileThread() 59 Log.e("simpleperf", "pauseRecording"); in createProfileThread() 62 Log.e("simpleperf", "resumeRecording"); in createProfileThread() 66 Log.e("simpleperf", "stopRecording"); in createProfileThread() 68 Log.e("simpleperf", "stopRecording successfully"); in createProfileThread() 70 Log.e("simpleperf", "exception: " + e.getMessage()); in createProfileThread()
|
/system/netd/libnetdutils/include/netdutils/ |
D | Log.h | 109 class Log { 111 Log() = delete; 112 Log(const std::string& tag) : Log(tag, MAX_ENTRIES) {} in Log() function 113 Log(const std::string& tag, size_t maxEntries) : mTag(tag), mMaxEntries(maxEntries) {} in Log() function 114 Log(const Log&) = delete; 115 Log(Log&&) = delete; 116 ~Log(); 117 Log& operator=(const Log&) = delete; 118 Log& operator=(Log&&) = delete;
|
/system/extras/boottime_tools/bootanalyze/stressfs/src/com/android/car/test/stressfs/ |
D | WritingService.java | 28 import android.util.Log; 94 Log.d(TAG, mLogTag + " thread started"); in run() 105 Log.e(TAG, "File not found: ", e); in run() 107 Log.e(TAG, "IO error: ", e); in run() 129 Log.i(TAG, "External storage state: " + in onBind() 134 Log.i(TAG, "Data: " + data.toString()); in onBind() 138 Log.i(TAG, "Block Size: " + blockSize); in onBind() 139 Log.i(TAG, "File Size: " + fileSize); in onBind() 142 Log.w(TAG, "File size should be a multiple of block size."); in onBind()
|
/system/chre/apps/wifi_offload/ |
D | scan_config.cc | 47 void ScanConfig::Log() const { in Log() function in wifi_offload::ScanConfig 48 scan_params_.Log(); in Log() 49 scan_filter_.Log(); in Log()
|
D | preferred_network.cc | 53 void PreferredNetwork::Log() const { in Log() function in wifi_offload::PreferredNetwork 54 ssid_.Log(); in Log()
|
D | scan_filter.cc | 54 void ScanFilter::Log() const { in Log() function in wifi_offload::ScanFilter 59 net.Log(); in Log()
|
D | scan_params.cc | 71 void ScanParams::Log() const { in Log() function in wifi_offload::ScanParams 77 ssid.Log(); in Log()
|
/system/tools/sysprop/stub/android/util/ |
D | Log.java | 20 public class Log { class 24 private Log() { in Log() method in Log
|
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/ |
D | HidlTestJava.java | 51 import android.util.Log; 73 Log.e(TAG, "Error ", e); in main() 86 Log.e(TAG, "Usage: HidlTestJava -c(lient) | -s(erver)"); in run() 147 Log.e(TAG, "Expected '" + s + "', got '" + result + "'"); in Expect() 1248 Log.d(TAG, "OK, exiting"); in client() 1254 Log.d(TAG, "Baz someBaseMethod"); in someBaseMethod() 1258 Log.d(TAG, "Baz someOtherBaseMethod " + foo.toString()); in someOtherBaseMethod() 1263 Log.d(TAG, "Baz someMethodWithFooArrays " + fooInput.toString()); in someMethodWithFooArrays() 1274 Log.d(TAG, "Baz someMethodWithFooVectors " + fooInput.toString()); in someMethodWithFooVectors() 1285 Log.d(TAG, "Baz someMethodWithVectorOfArray " + in.toString()); in someMethodWithVectorOfArray() [all …]
|
/system/netd/server/ |
D | Controllers.h | 74 extern netdutils::Log gLog; 75 extern netdutils::Log gUnsolicitedLog;
|
/system/netd/libnetdutils/ |
D | Log.cpp | 178 Log::~Log() { in ~Log() 183 void Log::forEachEntry(const std::function<void(const std::string&)>& perEntryFn) const { in forEachEntry() 195 void Log::record(Log::Level lvl, const std::string& entry) { in record()
|
/system/core/adb/fastdeploy/deployagent/src/com/android/fastdeploy/ |
D | ApkArchive.java | 19 import android.util.Log; 90 Log.e(TAG, "Mismatching signature sizes: " + sigLoc.size + " != " + size); in extractMetadata() 165 Log.e(TAG, "Unable to find Signature."); in getSignatureLocation() 178 Log.e(TAG, "Signature magic does not match: " + signAsString); in getSignatureLocation()
|
/system/keymaster/include/keymaster/ |
D | logger.h | 39 static int Log(LogLevel level, const char* fmt, va_list args); 40 static int Log(LogLevel level, const char* fmt, ...);
|
/system/extras/simpleperf/demo/SimpleperfExamplePureJava/app/src/main/java/com/example/simpleperf/simpleperfexamplepurejava/ |
D | MultiProcessActivity.java | 13 import android.util.Log; 41 Log.d(TAG, e.toString());
|
/system/core/adb/fastdeploy/deploypatchgenerator/ |
D | deploy_patch_generator.cpp | 40 void DeployPatchGenerator::Log(const char* fmt, ...) { in Log() function in DeployPatchGenerator 66 Log("MD5: %s", HexEncode(entry.md5().data(), entry.md5().size()).c_str()); in APKEntryToLog() 67 Log("Data Offset: %" PRId64, entry.dataoffset()); in APKEntryToLog() 68 Log("Data Size: %" PRId64, entry.datasize()); in APKEntryToLog() 75 Log("APK Metadata: %s", metadata.absolute_path().c_str()); in APKMetaDataToLog()
|
/system/chre/apps/wifi_offload/include/chre/apps/wifi_offload/ |
D | chre_scan_params_safe.h | 37 void Log() const;
|
D | scan_config.h | 44 void Log() const;
|
D | scan_filter.h | 48 void Log() const;
|
D | scan_params.h | 47 void Log() const;
|