/hardware/qcom/gps/msm8994/core/ |
MsgTask.h | 43 inline virtual void log() const {} function in struct:loc_core::LocMsg
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/analytics/ |
NetworkTypeLogger.java | 29 * Utility class to log the network type used while provisioning. 56 public void log() { method in class:NetworkTypeLogger
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
AddressListField.java | 23 import org.apache.james.mime4j.Log; 48 private static Log log = LogFactory.getLog(Parser.class); field in class:AddressListField.Parser 57 if (log.isDebugEnabled()) { 58 log.debug("Parsing value '" + body + "': "+ e.getMessage());
|
DateTimeField.java | 26 import org.apache.james.mime4j.Log; 53 private static Log log = LogFactory.getLog(Parser.class); field in class:DateTimeField.Parser 65 if (log.isDebugEnabled()) { 66 log.debug("Parsing value '" + body + "': "+ e.getMessage());
|
MailboxField.java | 23 import org.apache.james.mime4j.Log; 50 private static Log log = LogFactory.getLog(Parser.class); field in class:MailboxField.Parser 62 if (log.isDebugEnabled()) { 63 log.debug("Parsing value '" + body + "': "+ e.getMessage());
|
MailboxListField.java | 23 import org.apache.james.mime4j.Log; 50 private static Log log = LogFactory.getLog(Parser.class); field in class:MailboxListField.Parser 59 if (log.isDebugEnabled()) { 60 log.debug("Parsing value '" + body + "': "+ e.getMessage());
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/ |
TempStorage.java | 23 import org.apache.james.mime4j.Log; 32 private static Log log = LogFactory.getLog(TempStorage.class); field in class:TempStorage 45 log.warn("Unable to create or instantiate TempStorage class '"
|
/prebuilts/go/darwin-x86/test/ |
reorder2.go | 11 var log string var 16 log += "a(" + s + ")" 21 log += "b(" + s + ")" 28 log += "a(" + s + ")" 33 log += "b(" + s + ")" 45 log += "a(" + s + ")" 50 log += "b(" + s + ")" 58 log += "f(" + x + ", " + y + ")" 63 log += "ff(" + x + ", " + y + ")" 67 log += "h(" + x + ") [all...] |
/prebuilts/go/linux-x86/test/ |
reorder2.go | 11 var log string var 16 log += "a(" + s + ")" 21 log += "b(" + s + ")" 28 log += "a(" + s + ")" 33 log += "b(" + s + ")" 45 log += "a(" + s + ")" 50 log += "b(" + s + ")" 58 log += "f(" + x + ", " + y + ")" 63 log += "ff(" + x + ", " + y + ")" 67 log += "h(" + x + ") [all...] |
/system/core/libutils/ |
CallStack.cpp | 25 #include <utils/Log.h> 36 this->log(logtag); 54 void CallStack::log(const char* logtag, android_LogPriority priority, const char* prefix) const { function in class:android::CallStack
|
/system/security/keystore/ |
test-keystore | 20 log_file=$prefix.log 28 function log() { function 61 log "comparing $baseline_file and $log_file" 62 diff $baseline_file $log_file || (log $tag FAILED && exit 1) 70 log "reset keystore as system user" 78 log "root does not have permission to run test" 82 log "but system user does" 87 log "password is now bar" 93 log "no error implies initialized and unlocked" 97 log "saw with no argument [all...] |
/system/tools/aidl/tests/java_app/src/android/aidl/tests/ |
TestLogger.java | 19 import android.util.Log; 31 "test-client.log", Context.MODE_PRIVATE)); 33 throw new RuntimeException("Failed to open log file for writing."); 37 public void log(String line) { method in class:TestLogger 38 Log.i(TAG, line); 43 Log.e(TAG, line);
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
bt_gatt_utils.py | 33 log = logging variable 45 log.info("Gatt Connect to mac address {}.".format(mac_address)) 56 self.log.debug("Failed to close gatt client.") 64 self.log.debug("Failed to close gatt client.") 114 log.info("Starting continuous write") 126 log.info(characteristic_uuids) 131 log.info(descriptor_uuids) 133 log.info( 147 log.error( 154 log.error [all...] |
/tools/tradefederation/core/src/com/android/tradefed/log/ |
ILeveledLogOutput.java | 16 package com.android.tradefed.log; 18 import com.android.ddmlib.Log.ILogOutput; 19 import com.android.ddmlib.Log.LogLevel; 26 * Classes which implement this interface provides methods that deal with outputting log 32 * Initialize the log, creating any required IO resources. 37 * Gets the minimum log level to display. 44 * Sets the minimum log level to display. 51 * Grabs a snapshot stream of the log data. 58 * @return a {@link InputStreamSource} of the log data 59 * @throws IllegalStateException if called when log has been closed [all...] |
StdoutLogger.java | 16 package com.android.tradefed.log; 18 import com.android.ddmlib.Log.LogLevel; 28 * A {@link ILeveledLogOutput} that directs log messages to stdout. 33 @Option(name="log-level", description="minimum log level to display.",
|
/prebuilts/tools/common/m2/repository/logkit/logkit/1.0.1/ |
logkit-1.0.1.jar | |
/external/v8/src/js/ |
prologue.js | 290 extrasUtils.log = function log() { function
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
Main.java | 63 Log log = new Log(); local 68 if (!processArgs(log, args, osJarPath, osDestJar)) { 69 log.error("Usage: layoutlib_create [-v] output.jar input.jar ..."); 70 log.error("Usage: layoutlib_create [-v] [--list-deps|--missing-deps] input.jar ..."); 75 System.exit(listDeps(osJarPath, log)); 78 System.exit(createLayoutLib(osDestJar[0], osJarPath, log)); 85 private static int createLayoutLib(String osDestJar, ArrayList<String> osJarPath, Log log) { [all...] |
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
PromoteClassClassAdapterTest.java | 70 private void log(String method, String format, Object...args) { method in class:LoggingClassVisitor 78 log( 89 log( 101 log( 122 LoggingClassVisitor log = new LoggingClassVisitor(); local 124 PromoteClassClassAdapter adapter = new PromoteClassClassAdapter(log, new HashSet<String>() { 132 assertTrue(log.mLog.contains( 140 log.mLog.clear(); 144 assertTrue(log.mLog.contains("[visitInnerClass] - " + 156 LoggingClassVisitor log = new LoggingClassVisitor() local [all...] |
/libcore/ojluni/src/main/java/sun/util/logging/ |
LoggingSupport.java | 42 * @see sun.util.logging.PlatformLogger if you want to log messages even 118 public static void log(Object logger, Object level, String msg) { method in class:LoggingSupport 120 proxy.log(logger, level, msg); 123 public static void log(Object logger, Object level, String msg, Throwable t) { method in class:LoggingSupport 125 proxy.log(logger, level, msg, t); 128 public static void log(Object logger, Object level, String msg, Object... params) { method in class:LoggingSupport 130 proxy.log(logger, level, msg, params);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RefactoringUtil.java | 92 AdtPlugin.log(IStatus.INFO, AdtPlugin.PLUGIN_ID, message); 100 public static void log(Throwable e) { method in class:RefactoringUtil 101 AdtPlugin.log(e, e.getMessage());
|
/art/tools/dexfuzz/src/dexfuzz/ |
Log.java | 22 public class Log { 26 private Log() { } 45 log(LogTag.DEBUG, msg); method 49 log(LogTag.INFO, msg); method 53 log(LogTag.WARN, msg); method 57 log(LogTag.ERROR, msg); method 64 private static void log(LogTag tag, String msg) { method in class:Log
|
/cts/hostsidetests/bootstats/src/android/bootstats/cts/ |
BootStatsHostTest.java | 51 final String log = getDevice().executeShellCommand("logcat --buffer=events -d"); local 53 int counterNameIndex = log.indexOf(counterNamePattern); 56 int multiLogStart = log.lastIndexOf(multiActionPattern, counterNameIndex); 58 int multiLogEnd = log.indexOf("]", multiLogStart); 59 String[] multiLogDataStrings = log.substring(multiLogStart, multiLogEnd).split(","); 71 Assert.assertTrue("log line did not contain a tag " + bucketTag, foundBucket);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
log.py | 1 """A simple log mechanism styled after PEP 282."""
14 class Log:
21 raise ValueError('%s wrong log level' % str(level))
33 def log(self, level, msg, *args):
member in class:Log 51 _global_log = Log()
52 log = _global_log.log
variable
|
/external/apache-http/src/org/apache/http/client/protocol/ |
ResponseProcessCookies.java | 37 import org.apache.commons.logging.Log; 69 private final Log log = LogFactory.getLog(getClass()); field in class:ResponseProcessCookies 88 this.log.info("Cookie store not available in HTTP context"); 95 this.log.info("CookieSpec not available in HTTP context"); 102 this.log.info("CookieOrigin not available in HTTP context"); 131 if (this.log.isDebugEnabled()) { 133 this.log.debug("Cookie accepted: \"" 138 if (this.log.isWarnEnabled()) { 140 this.log.warn("Cookie rejected: \" [all...] |