HomeSort by relevance Sort by last modified time
    Searched refs:INFO (Results 51 - 75 of 346) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libsepol/src/
debug.h 54 #define INFO(handle, ...) \
  /external/webkit/Tools/Scripts/
webkit-patch 51 logging_level = logging.INFO
svn-create-patch 159 open INFO, "svn info '$infoPath' |" or die;
160 while (<INFO>) {
165 close INFO;
203 open INFO, "svn info '$file' |" or die;
204 while (<INFO>) {
211 close INFO;
  /system/core/init/
watchdogd.c 40 INFO("Starting watchdogd\n");
init.c 211 INFO("computing context for service '%s'\n", svc->args[0]);
307 INFO("args[%d] = '%s'\n", n, svc->args[n]);
310 INFO("env[%d] = '%s'\n", n, ENV[n]);
544 INFO("processing action %p (%s)\n", cur_action, cur_action->name);
554 INFO("command '%s' r=%d\n", cur_command->args[0], ret);
560 INFO("wait for %s\n", coldboot_done);
713 /* now propogate the info given on command line to internal variables
796 INFO("SELinux: Loaded property contexts from %s\n", seopts_prop[i - 1].value);
812 INFO("SELinux: Attempting to reload policy files\n");
897 INFO("loading selinux policy\n")
    [all...]
  /tools/motodev/src/plugins/preflighting.samplechecker.androidlabel/src/com/motorolamobility/preflighting/samplechecker/androidlabel/implementation/
AndroidLabelChecker.java 55 status.setStatusSeverity(Status.INFO);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
ObjectStore.java 115 public void clientDisconnected(Client c, DisconnectInfo info) {
178 logger.log(Level.INFO, "Client: Sending {0}", defMsg);
181 logger.log(Level.INFO, "Server: Sending {0}", defMsg);
227 logger.log(Level.INFO, "Server: Sending {0}", call);
230 logger.log(Level.INFO, "Client: Sending {0}", call);
300 logger.log(Level.INFO, "Server: Sending {0}", retMsg);
303 logger.log(Level.INFO, "Client: Sending {0}", retMsg);
336 logger.log(Level.INFO, "Client: Sending {0}", defMsg);
339 logger.log(Level.INFO, "Server: Sending {0}", defMsg);
  /external/markdown/markdown/
commandline.py 12 from logging import DEBUG, INFO, WARN, ERROR, CRITICAL
55 action="store_const", const=INFO, dest="verbose",
56 help="print info messages")
  /sdk/common/src/com/android/utils/
StdLogger.java 37 INFO(1),
121 * Prints an info message.
125 * This is displayed only if the logging {@link Level} is {@link Level#INFO} or higher.
131 public void info(@NonNull String msgFormat, Object... args) { method in class:StdLogger
132 if (mLevel.mLevel > Level.INFO.mLevel) {
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
StreamHandlerTest.java 103 assertSame(Level.INFO, h.getLevel());
154 assertSame(Level.INFO, h.getLevel());
179 assertSame(Level.INFO, h.getLevel());
233 assertSame(Level.INFO, h.getLevel());
380 LogRecord r = new LogRecord(Level.INFO, null);
400 LogRecord r = new LogRecord(Level.INFO, null);
420 LogRecord r = new LogRecord(Level.INFO, null);
457 LogRecord r = new LogRecord(Level.INFO, "testPublish_NoOutputStream");
478 LogRecord r = new LogRecord(Level.INFO, "testPublish_NoFilter");
479 h.setLevel(Level.INFO);
    [all...]
SocketHandlerTest.java 453 h.setLevel(Level.INFO);
478 h.setLevel(Level.INFO);
480 LogRecord r = new LogRecord(Level.INFO, "testPublish_NoFilter");
481 h.setLevel(Level.INFO);
516 h.setLevel(Level.INFO);
521 LogRecord r = new LogRecord(Level.INFO, "testPublish_WithFilter");
522 h.setLevel(Level.INFO);
546 h.setLevel(Level.INFO);
573 h.setLevel(Level.INFO);
574 LogRecord r = new LogRecord(Level.INFO, "");
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/app/
AndroidHarness.java 192 logger.log(Level.INFO, "Settings: Width {0} Height {1}", new Object[]{s.getWidth(), s.getHeight()});
208 logger.info("onRestart");
214 logger.info("onStart");
234 logger.info("onResume");
247 logger.info("pause: " + result.getClass().getSimpleName());
255 logger.info("onPause");
262 logger.info("onStop");
271 logger.info("onDestroy");
353 logger.log(Level.INFO, "Splash Screen Picture Resource ID: {0}", splashPicID);
374 logger.log(Level.INFO, "Splash Screen Created");
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common_unittest.cc 91 GOOGLE_LOG(INFO ) << "A message.";
97 "libprotobuf INFO "__FILE__":" + SimpleItoa(line + 1) + "] A message.\n"
107 GOOGLE_LOG(INFO ) << "A message.";
142 int line1 = __LINE__; GOOGLE_LOG(INFO) << "Visible1";
144 GOOGLE_LOG(INFO) << "Not visible.";
146 GOOGLE_LOG(INFO) << "Not visible.";
148 GOOGLE_LOG(INFO) << "Not visible.";
150 int line2 = __LINE__; GOOGLE_LOG(INFO) << "Visible2";
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
relayport.cc 229 LOG(INFO) << "Redundant relay address: " << proto_name
514 LOG(INFO) << "Relay allocate succeeded: " << ProtoToString(proto)
631 LOG(INFO) << "relay tcp connected to " <<
670 LOG(INFO) << "Incoming packet was not STUN";
687 LOG(INFO) << "Received BAD stun type from server: " << msg.type();
696 LOG(INFO) << "Data indication has no source address";
699 LOG(INFO) << "Source address has bad family";
707 LOG(INFO) << "Data indication has no data";
761 LOG(INFO) << "Allocate response missing mapped address.";
763 LOG(INFO) << "Mapped address has bad family"
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 187 * Logs a message with <code>java.util.logging.Level.INFO</code>.
190 * @see org.apache.commons.logging.Log#info(Object)
192 public void info(Object message) { method in class:Jdk14Logger
193 log(Level.INFO, String.valueOf(message), null);
198 * Logs a message with <code>java.util.logging.Level.INFO</code>.
202 * @see org.apache.commons.logging.Log#info(Object, Throwable)
204 public void info(Object message, Throwable exception) { method in class:Jdk14Logger
205 log(Level.INFO, String.valueOf(message), exception);
234 * Is info logging currently enabled?
237 return (getLogger().isLoggable(Level.INFO));
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
GImpactCollisionShape.java 151 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Mesh {0}", Long.toHexString(meshId));
153 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
163 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Finalizing Mesh {0}", Long.toHexString(meshId));
MeshCollisionShape.java 144 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Mesh {0}", Long.toHexString(meshId));
146 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created Shape {0}", Long.toHexString(objectId));
156 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Finalizing Mesh {0}", Long.toHexString(meshId));
  /frameworks/base/core/java/android/util/
Log.java 32 * ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled
34 * in but stripped at runtime. Error, warning and info logs are always kept.
68 public static final int INFO = 4;
153 * Send an {@link #INFO} log message.
159 return println_native(LOG_ID_MAIN, INFO, tag, msg);
163 * Send a {@link #INFO} log message and log the exception.
170 return println_native(LOG_ID_MAIN, INFO, tag, msg + '\n' + getStackTraceString(tr));
197 * The default level of any tag is set to INFO. This means that any level above and including
198 * INFO will be logged. Before you make any calls to a logging method you should check to see
201 * Where level is either VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. SUPPRESS wil
    [all...]
Slog.java 51 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag, msg);
55 return Log.println_native(Log.LOG_ID_SYSTEM, Log.INFO, tag,
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Node.java 252 if (logger.isLoggable(Level.INFO)) {
253 logger.log(Level.INFO,"Child ({0}) attached to this node ({1})",
286 if (logger.isLoggable(Level.INFO)) {
287 logger.log(Level.INFO,"Child ({0}) attached to this node ({1})",
354 logger.log(Level.INFO, "{0}: Child removed.", this.toString());
379 logger.log(Level.INFO, "{0}: All children removed.", this.toString());
  /external/chromium/chrome/browser/ui/login/
login_prompt_browsertest.cc 59 const AuthInfo& info = i->second; local
60 handler->SetAuth(WideToUTF16Hack(info.username_),
61 WideToUTF16Hack(info.password_));
351 LOG(INFO) <<
357 LOG(INFO) << "Waiting for initial AUTH_NEEDED";
371 LOG(INFO) << "Waiting for initial AUTH_SUPPLIED";
377 LOG(INFO) << "Waiting for secondary AUTH_NEEDED";
393 LOG(INFO) << "Waiting for secondary AUTH_SUPPLIED";
398 LOG(INFO) << "Waiting for additional AUTH_NEEDED";
409 LOG(INFO) << "Waiting for LOAD_STOP"
    [all...]
  /external/guava/guava/src/com/google/common/base/internal/
Finalizer.java 111 logger.log(Level.INFO, "Failed to clear thread local values inherited"
197 logger.log(Level.INFO, "Couldn't access Thread.inheritableThreadLocals."
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/infos/
RigidBodyMotionState.java 43 * stores transform info of a PhysicsNode in a threadsafe manner to
59 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Created MotionState {0}", Long.toHexString(motionStateId));
158 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Finalizing MotionState {0}", Long.toHexString(motionStateId));
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
AssetTileLoader.java 43 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Load terrain grid tile: {0}", modelName);
54 Logger.getLogger(this.getClass().getName()).log(Level.INFO, "Loaded terrain grid tile: {0}", modelName);
  /sdk/manifmerger/src/com/android/manifmerger/
MergerLog.java 45 case INFO:
46 sdkLog.info(
74 case INFO:
75 sdkLog.info(

Completed in 472 milliseconds

1 23 4 5 6 7 8 91011>>