OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:logs
(Results
101 - 125
of
275
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
/external/v8/tools/
process-heap-prof.py
30
# This is an utility for converting V8 heap
logs
into .hp files that can
/external/webkit/WebKitTools/Scripts/webkitpy/
queueengine.py
100
# FIXME: Work
logs
should not depend on bug_id specificaly.
/frameworks/base/media/libmediaplayerservice/
TestPlayerStub.cpp
148
// if err is NULL the string <null> is inserted in the
logs
=>
/frameworks/base/services/java/com/android/server/am/
DeviceMonitor.java
172
* Closes the given resource.
Logs
exceptions.
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_custom.h
34
- replaying
logs
from a file (this will repeat all the interface calls
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_log.c
97
/* Effects: creates LOG private object and
logs
initial block of information */
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
VoiceInputLogger.java
26
* the voice search app which then
logs
on our behalf.
/development/pdk/docs/source/
code-style.jd
146
: we don't use finalizers. In most cases, you can do what you need from a finalizer with good exception handling. If you absolutely need it, define a close() method (or the like) and document exactly when that method needs to be called. See InputStream for an example. In this case it is appropriate but not required to print a short log message from the finalizer, as long as it is not expected to flood the
logs
.
371
This level of logging should be used to further note what is happening on the device that could be relevant to investigate and debug unexpected behaviors. You should log only what is needed to gather enough information about what is going on about your component. If your debug
logs
are dominating the log then you probably should be using verbose logging. This level will be logged, even on release builds, and is required to be surrounded by an if (LOCAL_LOG) or if (LOCAL_LOGD) block, where LOCAL_LOG[D] is defined in your class or subcomponent, so that there can exist a possibility to disable all such logging. There must therefore be no active logic in an if (LOCAL_LOG) block. All the string building for the log also needs to be placed inside the if (LOCAL_LOG) block. The logging call should not be re-factored out into a method call if it is going to cause the string building to take place outside of the if (LOCAL_LOG) block. There is some code that still says if (localLOGV). This is considered acceptable as well, although the name is nonstandard.
384
When a condition that would normally justify some logging is likely to occur many times, it can be a good idea to implement some rate-limiting mechanism to prevent overflowing the
logs
with many duplicate copies of the same (or very similar) information.
396
Keep in mind that the '+' operator, when used on Strings, implicitly creates a StringBuilder with the default buffer size (16 characters) and potentially quite a few other temporary String objects, i.e. that explicitly creating StringBuilders isn't more expensive than relying on the default '+' operator (and can be a lot more efficient in fact). Also keep in mind that code that calls Log.v() is compiled and executed on release builds, including building the strings, even if the
logs
aren't being read.
417
<b>The golden rule of logging is that your
logs
may not unnecessarily push other
logs
out of the buffer, just as others may not push out yours.</b>
overview-1.0.jd
91
<li>Logging and crash
logs
supported for debugging.
/bootable/recovery/
recovery.c
257
// Copy
logs
to cache so the system can find out what happened.
442
return; // reboot if
logs
aren't visible
/cts/tools/host/src/com/android/cts/
TestHost.java
622
* Get session
logs
.
624
* @return Session
logs
.
/dalvik/docs/
embedded-vm-control.html
218
of locks in a different order from what was seen earlier, the VM
logs
231
unless you are keeping an eye on the
logs
as they scroll by.
/external/dnsmasq/
setup.html
25
logs
problems using the syslog facility as a daemon. It
logs
debugging
/external/dropbear/
options.h
89
* These hashes are also used for public key fingerprints in
logs
.
208
/* Whether to log commands executed by a client. This only
logs
the
/external/srec/portable/src/
plog.c
469
* Unconditionally
logs
an error message.
520
* Creates a logger that
logs
to a circular file.
/external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/
master.cfg
145
logText = cmd.
logs
['stdio'].getText()
193
logText = cmd.
logs
['stdio'].getText()
/external/webkit/WebKitTools/Scripts/
prepare-ChangeLog
272
# Find the change
logs
.
321
my @
logs
= ();
323
push @
logs
, File::Spec->catfile($prefix || ".", "ChangeLog");
326
if (@
logs
&& $updateChangeLogs && $isSVN) {
328
open ERRORS, "-|", $SVN, "update", @
logs
420
if ($openChangeLogs && @
logs
) {
424
system "open", "-a", $editor, @
logs
;
426
system "open", "-e", @
logs
;
[
all
...]
/frameworks/base/core/java/android/util/
Log.java
32
* into an application except during development. Debug
logs
are compiled
33
* in but stripped at runtime. Error, warning and info
logs
are always kept.
/frameworks/base/docs/html/guide/developing/tools/
traceview.jd
27
<p>Traceview is a graphical viewer for execution
logs
273
<li><code><ref></code> -- Call reference number, as used in trace
logs
</li>
/system/core/logcat/
logcat.cpp
111
// Can't rotate
logs
if we're not outputting to a file
398
" -n <count> Sets max number of rotated
logs
to <count>, default 4\n"
/dalvik/libcore/logging/src/main/java/java/util/logging/
SocketHandler.java
167
*
Logs
a record if necessary. A flush operation will be done afterwards.
/dalvik/vm/
StdioConverter.c
87
/* don't redirect stderr on sim --
logs
get written there! */
/development/samples/ApiDemos/src/com/example/android/apis/os/
Sensors.java
50
/** Tag string for our debug
logs
*/
/development/samples/BrowserPlugin/
README
154
case is a simple string of text. The output of this plugin is found in the
logs
/external/netcat/scripts/
webproxy
8
## be using it, and rejects connections from elsewhere.
LOGS
the queries
Completed in 233 milliseconds
1
2
3
4
5
6
7
8
9
10
11