/system/core/libunwindstack/tests/ |
D | DwarfCfaLogTest.cpp | 82 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2000, 0x2001)); in TYPED_TEST_P() 93 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2000, 0x2001)); in TYPED_TEST_P() 104 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2000, 0x2002)); in TYPED_TEST_P() 114 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2100, 0x2103)); in TYPED_TEST_P() 125 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x500, 0x503)); in TYPED_TEST_P() 135 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x1500, 0x1505)); in TYPED_TEST_P() 146 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x500, 0x503)); in TYPED_TEST_P() 157 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x1500, 0x1505)); in TYPED_TEST_P() 168 ASSERT_TRUE(this->cfa_->Log(0, this->fde_.pc_start, 0x2000, 0x2001)); in TYPED_TEST_P() 178 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/extras/simpleperf/demo/JavaApi/app/src/main/java/simpleperf/demo/java_api/ |
D | MainActivity.java | 21 import android.util.Log; 50 Log.e("simpleperf", "startRecording"); in createProfileThread() 54 Log.e("simpleperf", "pauseRecording"); in createProfileThread() 57 Log.e("simpleperf", "resumeRecording"); in createProfileThread() 61 Log.e("simpleperf", "stopRecording"); in createProfileThread() 63 Log.e("simpleperf", "stopRecording successfully"); in createProfileThread() 65 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/core/libnativeloader/test/src/android/test/app/ |
D | TestActivity.java | 21 import android.util.Log; 39 Log.d(getPackageName(), "library " + name + " is successfully loaded"); in tryLoadingLib() 41 Log.d(getPackageName(), "failed to load libarary " + name, e); in tryLoadingLib()
|
/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()
|
D | scan_result.cc | 128 void ScanResult::Log() const { in Log() function in wifi_offload::ScanResult 130 ssid_.Log(); in Log()
|
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/ |
D | HidlTestJava.java | 36 import android.util.Log; 57 Log.e(TAG, "Error ", e); in main() 68 Log.e(TAG, "Usage: HidlTestJava -c(lient) | -s(erver)"); in run() 129 Log.e(TAG, "Expected '" + s + "', got '" + result + "'"); in Expect() 1130 Log.d(TAG, "OK, exiting"); in client() 1137 Log.d(TAG, "Baz someBaseMethod"); in someBaseMethod() 1141 Log.d(TAG, "Baz someOtherBaseMethod " + foo.toString()); in someOtherBaseMethod() 1146 Log.d(TAG, "Baz someMethodWithFooArrays " + fooInput.toString()); in someMethodWithFooArrays() 1157 Log.d(TAG, "Baz someMethodWithFooVectors " + fooInput.toString()); in someMethodWithFooVectors() 1168 Log.d(TAG, "Baz someMethodWithVectorOfArray " + in.toString()); in someMethodWithVectorOfArray() [all …]
|
/system/tools/aidl/tests/java_app/src/android/aidl/tests/ |
D | TestLogger.java | 19 import android.util.Log; 38 Log.i(TAG, line); in log() 43 Log.e(TAG, line); in logAndThrow()
|
/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/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/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;
|
D | preferred_network.h | 55 void Log() const;
|
D | ssid.h | 52 void Log() const;
|
/system/netd/resolv/ |
D | DnsResolver.h | 46 extern netdutils::Log gDnsResolverLog;
|
/system/bt/doc/ |
D | log_tags.md | 1 Log Tags
|