HomeSort by relevance Sort by last modified time
    Searched refs:LOG (Results 176 - 200 of 1871) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/jetty/src/java/org/eclipse/jetty/server/session/
JDBCSessionIdManager.java 51 import org.eclipse.jetty.util.log.Logger;
64 final static Logger LOG = SessionHandler.LOG;
129 LOG.debug ("Using database {}",_dbName);
344 if (LOG.isDebugEnabled())
345 LOG.debug("Scavenging every "+_scavengeIntervalMs+" ms");
386 LOG.warn("Problem storing session id="+id, e);
409 if (LOG.isDebugEnabled())
410 LOG.debug("Removing session id="+id);
418 LOG.warn("Problem removing session id="+id, e)
    [all...]
JDBCSessionManager.java 48 import org.eclipse.jetty.util.log.Log;
49 import org.eclipse.jetty.util.log.Logger;
77 private static final Logger LOG = Log.getLogger(JDBCSessionManager.class);
317 LOG.warn("Problem persisting changed session data id="+getId(), e);
329 if (LOG.isDebugEnabled())
330 LOG.debug("Timing out session id="+getClusterId());
460 if (LOG.isDebugEnabled())
463 LOG.debug("getSession("+idInCluster+"): not in session map,"
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/
conductor.cc 44 LOG(INFO) << __FUNCTION__;
47 LOG(INFO) << __FUNCTION__ << " " << error;
159 LOG(INFO) << __FUNCTION__ << " " << stream->label();
167 LOG(INFO) << __FUNCTION__ << " " << stream->label();
174 LOG(INFO) << __FUNCTION__ << " " << candidate->sdp_mline_index();
178 LOG(WARNING) << "Failed to apply the received candidate";
190 LOG(LS_ERROR) << "Failed to serialize candidate";
202 LOG(INFO) << __FUNCTION__;
207 LOG(INFO) << __FUNCTION__;
216 LOG(INFO) << __FUNCTION__
    [all...]
  /external/ceres-solver/include/ceres/
gradient_checker.h 110 LOG(INFO) << "-------------------- Starting Probe() --------------------";
192 LOG(INFO) << "========== term-computed derivatives ==========";
194 LOG(INFO) << "term_computed block " << i;
195 LOG(INFO) << "\n" << results->term_jacobians[i];
198 LOG(INFO) << "========== finite-difference derivatives ==========";
200 LOG(INFO) << "finite_difference block " << i;
201 LOG(INFO) << "\n" << results->finite_difference_jacobians[i];
204 LOG(INFO) << "========== difference ==========";
206 LOG(INFO) << "difference block " << i;
207 LOG(INFO) << (results->term_jacobians[i]
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/
AsyncHttpConnection.java 30 import org.eclipse.jetty.util.log.Log;
31 import org.eclipse.jetty.util.log.Logger;
43 private static final Logger LOG = Log.getLogger(AsyncHttpConnection.class);
99 if (LOG.isDebugEnabled())
101 LOG.debug("uri="+_uri);
102 LOG.debug("fields="+_requestFields);
103 LOG.debug(e);
135 LOG.warn("Safety net oshut!!! IF YOU SEE THIS, PLEASE RAISE BUGZILLA")
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java 21 import android.util.Log;
31 public static final void LOG(String fmt, Object... args) {
33 Log.v(TAG, String.format(fmt, args));
45 if (DEBUG) LOG("go state: %d -> %d", mState, state);
81 Log.v(TAG, String.format("onTouch: all panels disabled, ignoring touch at (%d,%d)",
91 Log.v(TAG, String.format("onTouch: no panel for touch at (%d,%d)",
96 if (DEBUG) LOG("PanelBar.onTouch: state=%d ACTION_DOWN: panel %s %s", mState, panel,
100 Log.v(TAG, String.format(
119 if (SPEW) LOG("panelExpansionChanged: start state=%d", mState);
130 if (SPEW) LOG("panelExpansionChanged: -> %s: f=%.1f", pv.getName(), thisFrac)
    [all...]
  /system/connectivity/dhcp_client/
dhcp_options_parser.cc 37 LOG(ERROR) << "Invalid option length field";
49 LOG(ERROR) << "Invalid option length field";
61 LOG(ERROR) << "Invalid option length field";
73 LOG(ERROR) << "Invalid option length field";
90 LOG(ERROR) << "Invalid option length field";
109 LOG(ERROR) << "Invalid option length field";
128 LOG(ERROR) << "Invalid option length field";
150 LOG(ERROR) << "Invalid option length field";
160 LOG(ERROR) << "Invalid option value field";
170 LOG(ERROR) << "Invalid option length field"
    [all...]
  /system/extras/simpleperf/
gtest_main.cpp 46 LOG(ERROR) << "failed to read section " << testdata_section;
56 LOG(ERROR) << "failed to open archive " << tmp_file.path;
63 LOG(ERROR) << "failed to start iterating zip entries";
77 LOG(ERROR) << "failed to create dir for " << path;
87 LOG(ERROR) << "failed to extract entry " << entry_name;
91 LOG(ERROR) << "failed to write file " << path;
125 LOG(ERROR) << "failed to restore /proc/sys/kernel/perf_event_paranoid";
146 } else if (strcmp(argv[i], "--log") == 0) {
150 LOG(ERROR) << "Unknown log severity: " << argv[i]
    [all...]
  /system/update_engine/common/
multi_range_http_fetcher.cc 45 LOG(INFO) << "starting first transfer";
53 LOG(INFO) << "Called TerminateTransfer but not active.";
73 LOG(INFO) << "starting transfer of range " << range.ToString();
111 LOG(INFO) << "terminating transfer";
123 LOG(INFO) << "TransferEnded w/ code " << http_response_code_;
125 LOG(INFO) << "Terminating.";
138 LOG(INFO) << "Didn't get enough bytes. Ending w/ failure.";
152 LOG(INFO) << "Starting next transfer (" << current_index_ << ").";
157 LOG(INFO) << "Done w/ all transfers";
166 LOG(INFO) << "Received transfer complete."
    [all...]
  /system/update_engine/
real_system_state.cc 60 LOG(WARNING) << "Unable to create BootControl instance, using stub "
67 LOG(ERROR) << "Error intializing the HardwareInterface.";
75 LOG(ERROR) << "Failed to initialize shill proxy.";
84 LOG(ERROR) << "Failed to get a non-volatile directory.";
90 LOG(ERROR) << "Failed to initialize preferences.";
99 LOG(WARNING) << "No powerwash-safe directory, using non-volatile one.";
104 LOG(ERROR) << "Failed to initialize powerwash preferences.";
116 LOG(WARNING) << "Couldn't detect the bootid, assuming system was rebooted.";
125 LOG(WARNING) << "Ignoring OmahaRequestParams initialization error. Some "
148 LOG(ERROR) << "Failed to initialize the Update Manager."
    [all...]
omaha_request_action.cc 172 // existance first to avoid the warning log message.
182 LOG(WARNING) << "The omaha cohort setting " << arg_name
190 LOG(WARNING) << "The omaha cohort setting " << arg_name
218 LOG(INFO) << "Passing OS version as 0.0.0.0 as we are set to powerwash "
423 LOG(ERROR) << "Unexpected end element '" << element
448 LOG(ERROR) << "XML entities are not supported. Aborting parsing.";
459 LOG(WARNING) << "Invalid ASCII-7 string passed to the XML encoder:";
527 LOG(WARNING) <<
551 LOG(INFO) << "Not sending ping with a=-1 r=-1 to omaha because "
573 LOG(ERROR) << "Dropping stored Omaha InstallData since its value num_days=
    [all...]
update_attempter.cc 200 LOG(WARNING) << "Last reported daily metrics "
208 LOG(INFO) << "Last reported daily metrics "
212 LOG(INFO) << "Last reported daily metrics "
218 LOG(INFO) << "Reporting daily metrics.";
243 LOG(ERROR) << "The OS age (" << utils::FormatTimeDelta(age)
275 LOG(INFO) << "Not updating b/c we already updated and we're waiting for "
324 LOG(INFO) << "Device policies/settings present";
326 LOG(INFO) << "No device policies/settings present.";
345 LOG(INFO) << "p2p is not enabled - disallowing p2p for both"
351 LOG(INFO) << "Non-interactive check - allowing p2p for downloading"
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/agc/
agc_manager_direct.cc 171 LOG(LS_ERROR) << "set_mode(GainControl::kFixedDigital) failed.";
175 LOG(LS_ERROR) << "set_target_level_dbfs(2) failed.";
179 LOG(LS_ERROR) << "set_compression_gain_db(kDefaultCompressionGain) failed.";
183 LOG(LS_ERROR) << "enable_limiter(true) failed.";
215 LOG(LS_INFO) << "[agc] Clipping detected. clipped_ratio="
247 LOG(LS_ERROR) << "Agc::Process failed";
263 LOG(LS_INFO) << "[agc] VolumeCallbacks returned level=0, taking no action.";
267 LOG(LS_ERROR) << "VolumeCallbacks returned an invalid level=" << voe_level;
273 LOG(LS_INFO) << "[agc] Mic volume was manually adjusted. Updating "
293 LOG(LS_INFO) << "[agc] voe_level=" << voe_level << ",
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
TestLog.java 13 * Adds given string to the log if we are in verbose mode.
15 void log(String message); method in interface:TestLog
34 public static final int LOG = 0;
  /external/jetty/src/java/org/eclipse/jetty/client/webdav/
WebdavListener.java 32 import org.eclipse.jetty.util.log.Log;
33 import org.eclipse.jetty.util.log.Logger;
44 private static final Logger LOG = Log.getLogger(WebdavListener.class);
78 if (LOG.isDebugEnabled())
79 LOG.debug("WebdavListener:Response Status: " + status );
87 if (LOG.isDebugEnabled())
88 LOG.debug("WebdavListener:Response Status: dav enabled, taking a stab at resolving put issue" );
94 if (LOG.isDebugEnabled()
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/io/
AbstractConnection.java 23 import org.eclipse.jetty.util.log.Log;
24 import org.eclipse.jetty.util.log.Logger;
29 private static final Logger LOG = Log.getLogger(AbstractConnection.class);
60 LOG.debug("onIdleExpired {}ms {} {}",idleForMs,this,_endp);
68 LOG.ignore(e);
76 LOG.ignore(e2);
  /external/jetty/src/java/org/eclipse/jetty/util/preventers/
DOMLeakPreventer.java 51 LOG.warn(e);
  /external/libbrillo/brillo/
binder_watcher.cc 50 LOG(ERROR) << "Must initialize a brillo::MessageLoop to use BinderWatcher";
59 LOG(ERROR) << "Error setting up binder polling: "
64 LOG(ERROR) << "Invalid binder FD " << binder_fd;
76 LOG(ERROR) << "Failed to watch binder FD";
  /external/libbrillo/brillo/glib/
abstract_dbus_service.cc 22 LOG(ERROR) << "No run loop. Call Initialize before use.";
  /external/minijail/examples/
drop_privs.cpp 31 LOG(INFO) << "ruid " << ruid << " euid " << euid << " suid " << suid;
32 LOG(INFO) << "rgid " << rgid << " egid " << egid << " sgid " << sgid;
39 LOG(INFO) << "no supplemental groups";
49 LOG(INFO) << "supp gid " << i + 1 << " " << list[i];
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
UnsupportedCommandHandler.java 45 LOG.warn("No CommandHandler is defined for command [" + command.getName() + "]");
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
UnixDirectoryListingFormatterTest.groovy 54 LOG.info(fileSystemEntry.toString())
60 LOG.info(fileSystemEntry.toString())
67 LOG.info(fileSystemEntry.toString())
74 LOG.info(fileSystemEntry.toString())
84 LOG.info(fileSystemEntry.toString())
90 LOG.info(fileSystemEntry.toString())
109 LOG.info("result= [$result]")
110 LOG.info("expected=[$expectedResult]")
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/example/
SpringConfigurationTest.java 35 private static final Logger LOG = LoggerFactory.getLogger(SpringConfigurationTest.class);
56 LOG.info("FTPFile[0]=" + files[0]);
57 LOG.info("FTPFile[1]=" + files[1]);
66 LOG.info("File contents=[" + outputStream.toString() + "]");
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/example/
SpringConfigurationTest.java 34 private static final Logger LOG = Logger.getLogger(SpringConfigurationTest.class);
55 LOG.info("FTPFile[0]=" + files[0]);
56 LOG.info("FTPFile[1]=" + files[1]);
65 LOG.info("File contents=[" + outputStream.toString() + "]");
  /external/webrtc/talk/media/base/
executablehelpers.h 51 LOG(LS_ERROR) << "Copied length is zero";
55 LOG(LS_ERROR) << "Buffer too small";
70 LOG(LS_ERROR) << "Buffer too small";
84 LOG(LS_ERROR) << "Probably truncated result when reading link "

Completed in 1755 milliseconds

1 2 3 4 5 6 78 91011>>