| /development/tools/axl/ |
| axl.py | 29 import singletonmixin, log namespace 33 self.log = log.Log.getInstance() 36 self.log("BaseProtocol.write()", len(data), data) 40 self.log("BaseProtocol.dataReceived()", len(data), data) 43 self.log("BaseProtocol.connectionMade()") 47 self.log("BaseProtocol.connectionLost():", reason) 239 # Initialize log 240 log.Log.getInstance(sys.stdout [all...] |
| /external/apache-http/src/org/apache/commons/logging/impl/ |
| Jdk14Logger.java | 25 import org.apache.commons.logging.Log; 29 * <p>Implementation of the <code>org.apache.commons.logging.Log</code> 39 public class Jdk14Logger implements Log, Serializable { 82 private void log( Level level, String msg, Throwable ex ) { method in class:Jdk14Logger 109 * @param message to log 110 * @see org.apache.commons.logging.Log#debug(Object) 113 log(Level.FINE, String.valueOf(message), null); method 120 * @param message to log 121 * @param exception log this cause 122 * @see org.apache.commons.logging.Log#debug(Object, Throwable 125 log(Level.FINE, String.valueOf(message), exception); method 136 log(Level.SEVERE, String.valueOf(message), null); method 148 log(Level.SEVERE, String.valueOf(message), exception); method 159 log(Level.SEVERE, String.valueOf(message), null); method 171 log(Level.SEVERE, String.valueOf(message), exception); method 193 log(Level.INFO, String.valueOf(message), null); method 205 log(Level.INFO, String.valueOf(message), exception); method 264 log(Level.FINEST, String.valueOf(message), null); method 276 log(Level.FINEST, String.valueOf(message), exception); method 287 log(Level.WARNING, String.valueOf(message), null); method 299 log(Level.WARNING, String.valueOf(message), exception); method [all...] |
| /external/apache-http/src/org/apache/http/impl/conn/ |
| DefaultClientConnection.java | 38 import org.apache.commons.logging.Log; 69 private final Log log = LogFactory.getLog(getClass()); field in class:DefaultClientConnection 70 private final Log headerLog = LogFactory.getLog("org.apache.http.headers"); 71 private final Log wireLog = LogFactory.getLog("org.apache.http.wire"); 147 log.debug("Connection shut down"); 160 log.debug("Connection closed");
|
| IdleConnectionHandler.java | 38 import org.apache.commons.logging.Log; 54 private final Log log = LogFactory.getLog(getClass()); field in class:IdleConnectionHandler 77 if (log.isDebugEnabled()) { 78 log.debug("Adding connection at: " + timeAdded); 95 log.warn("Removing a connection that never existed!"); 120 if (log.isDebugEnabled()) { 121 log.debug("Checking for connections, idleTimeout: " + idleTimeout); 132 if (log.isDebugEnabled()) { 133 log.debug("Closing connection, connection time: " + connectionTime) [all...] |
| /external/apache-http/src/org/apache/http/impl/conn/tsccm/ |
| ConnPoolByRoute.java | 42 import org.apache.commons.logging.Log; 71 private final Log log = LogFactory.getLog(getClass()); field in class:ConnPoolByRoute 288 if (log.isDebugEnabled()) { 289 log.debug("Total connections kept alive: " + freeConnections.size()); 290 log.debug("Total issued connections: " + issuedConnections.size()); 291 log.debug("Total allocated connection: " + numConnections + " out of " + maxTotalConnections); 307 if (log.isDebugEnabled()) { 308 log.debug("Available capacity: " + rospl.getCapacity() 324 if (log.isDebugEnabled()) [all...] |
| RouteSpecificPool.java | 38 import org.apache.commons.logging.Log; 52 private final Log log = LogFactory.getLog(getClass()); field in class:RouteSpecificPool 167 log.debug("I/O error closing connection", ex);
|
| /external/ceres-solver/internal/ceres/ |
| gradient_checking_cost_function_test.cc | 48 #include "gmock/mock-log.h" 115 LOG(INFO) << "Poisoning jacobian for parameter block " << j 217 LOG(INFO) << "Bad gradient"; 226 ScopedMockLog log; local 227 EXPECT_CALL(log, Log(_, _, _)).Times(AnyNumber()); 228 EXPECT_CALL(log, Log(WARNING, _, 238 LOG(INFO) << "Good gradient"; 247 ScopedMockLog log; local [all...] |
| /external/chromium/chrome/browser/ |
| omnibox_search_hint.cc | 191 AutocompleteLog* log = Details<AutocompleteLog>(details).ptr(); local 193 log->result.match_at(log->selected_index).type;
|
| /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
| irc.js | 13 function log(message) { console.log(message); }; function 63 log("<< " + message); 184 log(">> " + line);
|
| /external/chromium/testing/gmock/test/ |
| gmock-internal-utils_test.cc | 380 // Tests the Log() function. 382 // Verifies that Log() behaves correctly for the given verbosity level 383 // and log severity. 389 Log(severity, "Test log.\n", 0); 394 "^\nGMOCK WARNING:\nTest log\\.\nStack trace:\n" : 395 "^\nTest log\\.\nStack trace:\n")); 403 // Log() doesn't include the stack trace in the output. 408 Log(INFO, "Test log.\n", -1) 418 const String log = GetCapturedStdout(); local [all...] |
| /external/dropbear/libtommath/demo/ |
| timing.c | 84 FILE *log, *logb, *logc, *logd; local 108 log = fopen("logs/add.log", "w"); 124 fprintf(log, "%d %9llu\n", cnt * DIGIT_BIT, tt); 125 fflush(log); 127 fclose(log); 129 log = fopen("logs/sub.log", "w"); 146 fprintf(log, "%d %9llu\n", cnt * DIGIT_BIT, tt); 147 fflush(log); [all...] |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/ |
| director-ant.jar | |
| /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/ |
| DesignerPlugin.java | 158 * Logs given {@link IStatus} into Eclipse .log. 160 public static void log(IStatus status) { method in class:DesignerPlugin 161 getDefault().getLog().log(status); 165 * Logs {@link IStatus} with given message into Eclipse .log. 167 public static void log(String message) { method in class:DesignerPlugin 168 log(new Status(IStatus.INFO, sPluginId, IStatus.INFO, message, null)); method 172 * Logs {@link IStatus} with given exception into Eclipse .log. 174 public static void log(Throwable e) { method in class:DesignerPlugin 176 getDefault().getLog().log(status); 180 * Logs {@link IStatus} with given message and exception into Eclipse .log 182 public static void log(String message, Throwable e) { method in class:DesignerPlugin [all...] |
| /external/emma/core/java12/com/vladium/emma/rt/ |
| AppRunner.java | 84 final Logger log = AppLoggers.create (m_appName, toolProperties, current); local 86 if (log.atTRACE1 ()) 88 log.trace1 ("run", "complete tool properties:"); 89 toolProperties.list (log.getWriter ()); 94 Logger.push (log); 95 m_log = log; 267 final Logger log = m_log; local 269 final boolean verbose = log.atVERBOSE (); 272 log.verbose (IAppConstants.APP_VERBOSE_BUILD_ID); 275 log.verbose ("coverage path:") [all...] |
| RT.java | 98 // else TODO: log/warn 154 if (stopDataCollection) s_cdata = null; // TODO: log this NOTE: this does not really stop data collection, merely prevents new class registration 164 if (stopDataCollection) s_cdata = null; // TODO: log this NOTE: this does not really stop data collection, merely prevents new class registration 241 final Logger log = Logger.getLogger (); typedefs 242 if (log.atINFO ()) 244 log.info ("collecting runtime coverage data ...");
|
| /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/ |
| RemoteAcceptThread.java | 10 import ch.ethz.ssh2.log.Logger; 20 private static final Logger log = Logger.getLogger(RemoteAcceptThread.class); field in class:RemoteAcceptThread 44 log.debug("RemoteAcceptThread: " + remoteConnectedAddress + "/" + remoteConnectedPort + ", R: " 86 log.warning("IOException in proxy code: " + e.getMessage());
|
| /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/signature/ |
| RSASHA1Verify.java | 12 import ch.ethz.ssh2.log.Logger; 24 private static final Logger log = Logger.getLogger(RSASHA1Verify.class); field in class:RSASHA1Verify 74 if (log.isDebugEnabled()) 76 log.debug("Decoding ssh-rsa signature string (length: " + s.length + ")"); 159 log.warning("ssh-rsa signature: n.compareTo(s) <= 0"); 169 log.warning("ssh-rsa signature: rsa_block_len < 1"); 182 log.warning("ssh-rsa signature: (v.length - startpos) != (rsa_block_len - 1)"); 188 log.warning("ssh-rsa signature: v[startpos] != 0x01"); 198 log.warning("ssh-rsa signature: pos >= v.length"); 205 log.warning("ssh-rsa signature: v[pos] != (byte) 0xff") [all...] |
| /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/ |
| TimeoutService.java | 14 import ch.ethz.ssh2.log.Logger; 29 private static final Logger log = Logger.getLogger(TimeoutService.class); field in class:TimeoutService 92 log.warning("Exeception in Timeout handler:" + e.getMessage() + "(" + sw.toString() + ")");
|
| /external/guava/guava/src/com/google/common/base/ |
| FinalizableReferenceQueue.java | 114 logger.log(Level.INFO, "Failed to start reference finalizer thread." 143 logger.log(Level.SEVERE, "Error cleaning up after reference.", t); 230 logger.log(Level.WARNING, LOADING_ERROR, e);
|
| /external/guava/guava/src/com/google/common/base/internal/ |
| Finalizer.java | 111 logger.log(Level.INFO, "Failed to clear thread local values inherited" 156 logger.log(Level.SEVERE, "Error cleaning up after reference.", t); 197 logger.log(Level.INFO, "Couldn't access Thread.inheritableThreadLocals."
|
| /external/guava/guava/src/com/google/common/eventbus/ |
| EventBus.java | 83 * catch and log the exception. This is rarely the right solution for error 315 logger.log(Level.SEVERE,
|
| /external/guava/guava-tests/test/com/google/common/testing/ |
| TestLogHandlerTest.java | 65 // stored log records causes a ConcurrentModificationException 94 logger.log(Level.INFO, "message", EXCEPTION);
|
| /external/jmdns/src/javax/jmdns/impl/constants/ |
| DNSRecordClass.java | 116 logger.log(Level.WARNING, "Could not find record class for name: " + name); 129 logger.log(Level.WARNING, "Could not find record class for index: " + index);
|
| /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/ |
| AbstractBlenderLoader.java | 92 LOGGER.log(Level.SEVERE, e.getLocalizedMessage(), e);
|
| /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
| ModifierHelper.java | 101 LOGGER.log(Level.WARNING, "Unsupported modifier type: {0}", modifierStructure.getType());
|