/development/ndk/samples/module-exports/jni/foo/ |
foo.c | 2 #include <android/log.h>
|
/development/tutorials/MoarRam/jni/ |
df.c | 19 #include <cutils/log.h>
|
/device/asus/flo/conn_init/ |
wfc_util_log.h | 22 #include <cutils/log.h>
|
/device/generic/goldfish/camera/ |
EmulatedQemuCamera2.cpp | 25 #include <cutils/log.h>
|
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/ |
ErrorLog.h | 20 # include <cutils/log.h>
|
/device/lge/mako/conn_init/ |
wfc_util_log.h | 22 #include <cutils/log.h>
|
/device/samsung/manta/libsensors/ |
LightSensor.cpp | 17 #include <cutils/log.h>
|
PressureSensor.cpp | 17 #include <cutils/log.h>
|
/external/apache-http/src/org/apache/http/client/protocol/ |
RequestProxyAuthentication.java | 36 import org.apache.commons.logging.Log; 62 private final Log log = LogFactory.getLog(getClass()); field in class:RequestProxyAuthentication 95 this.log.debug("User credentials not available"); 102 if (this.log.isErrorEnabled()) { 103 this.log.error("Proxy authentication error: " + ex.getMessage());
|
RequestTargetAuthentication.java | 36 import org.apache.commons.logging.Log; 62 private final Log log = LogFactory.getLog(getClass()); field in class:RequestTargetAuthentication 95 this.log.debug("User credentials not available"); 103 if (this.log.isErrorEnabled()) { 104 this.log.error("Authentication error: " + ex.getMessage());
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/ |
tests.js | 7 window.runTests = function(log) { 254 if (log || typeof log === 'undefined') 255 run.log();
|
/external/chromium_org/chrome/test/chromedriver/chrome/ |
console_logger.h | 12 class Log; 14 // Translates DevTools Console.messageAdded events into Log messages. 19 // Translates the level into Log::Level, drops all other fields. 22 // Creates a ConsoleLogger that creates entries in the given Log object. 23 // The log is owned elsewhere and must not be null. 24 explicit ConsoleLogger(Log* log); 28 // Translates an event into a log entry. 34 Log* log_; // The log where to create entries [all...] |
/external/chromium_org/components/autofill/content/renderer/ |
renderer_save_password_progress_logger.h | 32 virtual void SendLog(const std::string& log) OVERRIDE;
|
/external/chromium_org/components/password_manager/core/browser/ |
browser_save_password_progress_logger.h | 26 virtual void SendLog(const std::string& log) OVERRIDE;
|
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/ |
spyware.cc | 14 void POCDLL_API TestSpyKeys(HANDLE log) { 16 FILE *output = handle2file.Translate(log, "w"); 50 void POCDLL_API TestSpyScreen(HANDLE log) { 52 FILE *output = handle2file.Translate(log, "w");
|
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/ |
voe_test_common.h | 15 #include <android/log.h>
|
/external/chromium_org/v8/test/mjsunit/es6/debug-promises/ |
throw-with-throw-in-reject.js | 16 var log = []; variable 19 log.push("resolve"); 25 log.push("throw in reject"); 29 log.push("construct"); 38 log.push("throw caught"); 49 "throw caught"], log); 67 log.push("end main"); 75 "throw caught", "throw in reject"], log);
|
/external/deqp/framework/opengl/ |
gluCallLogWrapper.hpp | 41 CallLogWrapper (const glw::Functions& gl, tcu::TestLog& log);
|
/external/deqp/modules/gles3/functional/ |
es3fSyncTests.cpp | 173 TestLog& log = m_testCtx.getLog(); local 178 log << TestLog::Section(header, header); 198 log << TestLog::Message << "// Primitives drawn." << TestLog::EndMessage; 204 log << TestLog::Message << "// Sync object created." << TestLog::EndMessage; 221 log << TestLog::Message << "// Wait command glWaitSync called with GL_TIMEOUT_IGNORED." << TestLog::EndMessage; 227 log << TestLog::Message << "// glClientWaitSync return value:" << TestLog::EndMessage; 230 case GL_ALREADY_SIGNALED: log << TestLog::Message << "// GL_ALREADY_SIGNALED" << TestLog::EndMessage; break; 231 case GL_TIMEOUT_EXPIRED: log << TestLog::Message << "// GL_TIMEOUT_EXPIRED" << TestLog::EndMessage; break; 232 case GL_CONDITION_SATISFIED: log << TestLog::Message << "// GL_CONDITION_SATISFIED" << TestLog::EndMessage; break; 233 case GL_WAIT_FAILED: log << TestLog::Message << "// GL_WAIT_FAILED" << TestLog::EndMessage; testOk = false; break [all...] |
/external/deqp/modules/internal/ |
ditTestLogTests.cpp | 21 * \brief Test log output tests. 49 TestLog& log = m_testCtx.getLog(); local 51 log << TestLog::SampleList("TestSamples", "Test Sample List") 58 log << TestLog::Sample << 1 << 2 << 2.3 << TestLog::EndSample 65 log << TestLog::EndSampleList; 73 : TestCaseGroup(testCtx, "testlog", "Test Log Tests")
|
/external/eigen/unsupported/doc/examples/ |
MatrixLogarithm.cpp | 14 std::cout << "The matrix logarithm of A is:\n" << A.log() << "\n";
|
/external/lldb/source/Core/ |
AddressResolverFileLine.cpp | 13 #include "lldb/Core/Log.h" 17 #include "lldb/lldb-private-log.h" 55 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_BREAKPOINTS)); 70 if (log) 74 //log->Printf ("Added address: %s\n", s.GetData()); 79 if (log) 80 log->Printf ("error: Unable to resolve address at file address 0x%" PRIx64 " for %s:%d\n",
|
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
DYLDRendezvous.cpp | 15 #include "lldb/Core/Log.h" 303 DYLDRendezvous::DumpToLog(Log *log) const 307 if (!log) 310 log->PutCString("DYLDRendezvous:"); 311 log->Printf(" Address: %" PRIx64, GetRendezvousAddress()); 312 log->Printf(" Version: %" PRIu64, GetVersion()); 313 log->Printf(" Link : %" PRIx64, GetLinkMapAddress()); 314 log->Printf(" Break : %" PRIx64, GetBreakAddress()); 315 log->Printf(" LDBase : %" PRIx64, GetLDBase()) [all...] |
/external/llvm/utils/ |
GetSourceVersion | 22 git log -1 --pretty=format:%H
|
/external/apache-http/src/org/apache/http/impl/conn/ |
Wire.java | 36 import org.apache.commons.logging.Log; 39 * Logs data to the wire LOG. 52 private final Log log; field in class:Wire 54 public Wire(Log log) { 55 this.log = log; 69 log.debug(buffer.toString()); 83 log.debug(buffer.toString()) [all...] |