HomeSort by relevance Sort by last modified time
    Searched refs:log (Results 426 - 450 of 839) sorted by null

<<11121314151617181920>>

  /external/stlport/test/unit/
cmath_test.cpp 92 CPPUNIT_CHECK( are_equals(std::log(std::exp(1.0)), 1.0) );
117 CPPUNIT_CHECK( are_equals(std::log(std::exp(1.0f)), 1.0f) );
143 CPPUNIT_CHECK( are_equals(std::log(std::exp(1.0l)), 1.0l) );
  /external/webkit/WebKitTools/Scripts/webkitpy/
multicommandtool.py 39 from webkitpy.webkit_logging import log namespace
105 log("%s required, %s provided. Provided: %s Required: %s\nSee '%s help %s' for usage." % (
296 log(failure_reason)
  /frameworks/base/core/java/android/os/
RecoverySystem.java 41 import android.util.Log;
70 private static File LOG_FILE = new File(RECOVERY_DIR, "log");
162 Log.v(TAG, String.format("comment size %d; signature start %d",
328 Log.w(TAG, "!!! REBOOTING TO INSTALL " + filename + " !!!");
377 * @return the log file from recovery, or null if none was found.
383 String log = null; local
385 log = FileUtils.readTextFile(LOG_FILE, -LOG_FILE_MAX_LENGTH, "...\n");
387 Log.i(TAG, "No recovery log file");
389 Log.e(TAG, "Error reading recovery log", e)
    [all...]
  /dalvik/vm/
Misc.c 41 * "priority" and "tag" determine the values passed to the log calls.
133 * Fill out a DebugOutputTarget, suitable for printing to the log.
142 target->data.log.priority = priority;
143 target->data.log.tag = tag;
167 * Print a debug message, to either a file or the log.
178 LOG_PRI_VA(target->data.log.priority, target->data.log.tag,
Misc.h 57 * Print a hex dump to the log file.
92 * info to either the log or to a file (or stdout/stderr).
107 } log; member in union:DebugOutputTarget::__anon660
  /external/icu4c/test/intltest/
msfmrgts.cpp 339 log("Compares to null is always false, returned : ");
491 log(" parsedObjects: ");
493 log("{");
499 // log("null");
501 log(",");
503 log("}") ;
506 log("null");
536 log("format(null) : ");
540 /*log("format({}) : ");
543 log("format({null}) :")
    [all...]
  /external/skia/include/core/
SkFloatingPoint.h 51 #define sk_float_log(x) (float)::log(x)
  /external/srec/srec/clib/
voicing.c 57 long voicing_analysis(voicing_info *chan, voicedata enval , int* log)
  /frameworks/base/core/jni/
CursorWindow.h 20 #include <cutils/log.h>
48 #define LOG_WINDOW(...) LOG(LOG_DEBUG, "CursorWindow", __VA_ARGS__)
  /frameworks/base/libs/ui/
EGLUtils.cpp 20 #include <cutils/log.h>
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
UsimPhoneBookManager.java 22 import android.util.Log;
124 Log.e(LOG_TAG, "Interrupted Exception in readAdnFileAndWait");
142 Log.e(LOG_TAG, "Error: IAP file is empty");
152 Log.e(LOG_TAG, "Interrupted Exception in readEmailFileAndWait");
156 Log.e(LOG_TAG, "Error: Email file is empty");
169 Log.e(LOG_TAG, "Interrupted Exception in readIapFileAndWait");
187 Log.e(LOG_TAG, "Error: Improper ICC card: No IAP record for ADN, continuing");
243 Log.e(LOG_TAG, "Error: Improper ICC card: No email record for ADN, continuing");
292 Log.e(LOG_TAG, "Interrupted Exception in readAdnFileAndWait");
320 log("Loading USIM ADN records done")
421 private void log(String msg) { method in class:UsimPhoneBookManager
    [all...]
  /hardware/libhardware/modules/gralloc/
mapper.cpp 27 #include <cutils/log.h>
  /packages/apps/IM/src/com/android/im/app/
SignoutActivity.java 27 import android.util.Log;
51 Log.e(ImApp.LOG_TAG, "Need account data to sign in");
67 Log.w(ImApp.LOG_TAG, "[SignoutActivity] No data for " + data);
107 Log.e(ImApp.LOG_TAG, "signout: caught ", ex);
123 static void log(String msg) { method in class:SignoutActivity
124 Log.d(ImApp.LOG_TAG, "[Signout] " + msg);
  /packages/apps/IM/src/com/android/im/provider/
ImpsProvider.java 33 import android.util.Log;
252 if (DBG) log("DatabaseHelper.onCreate");
340 Log.d(LOG_TAG, "Upgrading database from version " + oldVersion + " to " + newVersion);
363 Log.e(LOG_TAG, ex.getMessage(), ex);
381 Log.e(LOG_TAG, ex.getMessage(), ex);
403 Log.e(LOG_TAG, ex.getMessage(), ex);
423 Log.e(LOG_TAG, ex.getMessage(), ex);
447 Log.e(LOG_TAG, ex.getMessage(), ex);
464 Log.e(LOG_TAG, ex.getMessage(), ex);
473 Log.w(LOG_TAG, "Couldn't upgrade db to " + newVersion + ". Destroying old data.")
3329 static void log(String message) { method in class:ImpsProvider
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsMessageSender.java 33 import android.util.Log;
142 private void log(String msg) { method in class:SmsMessageSender
143 Log.d(LogTag.TAG, "[SmsMsgSender] " + msg);
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86Privstr.h 65 } Log;
172 Log log; member in struct:__anon12859
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventLogParser.java 17 package com.android.ddmlib.log;
20 import com.android.ddmlib.Log;
22 import com.android.ddmlib.log.EventContainer.EventValueType;
23 import com.android.ddmlib.log.EventValueDescription.ValueType;
24 import com.android.ddmlib.log.LogReceiver.LogEntry;
43 * Parser for the "event" log.
48 private final static String EVENT_TAG_MAP_FILE = "/system/etc/event-log-tags"; //$NON-NLS-1$
51 * Event log entry types. These must match up with the declarations in
80 * This methods reads the event-log-tags located on the device to find out
81 * what tags are being written to the event log and what their format is
    [all...]
LogReceiver.java 17 package com.android.ddmlib.log;
25 * Receiver able to provide low level parsing for device-side log services.
32 * Represents a log entry and its raw data.
54 * with {@link LogEntry} objects coming from log service through a {@link LogReceiver}.
57 * <li>{@link #newEntry(com.android.ddmlib.log.LogReceiver.LogEntry)} provides a
58 * first level of parsing, extracting {@link LogEntry} objects out of the log service output.</li>
60 * coming directly from the log service.</li>
66 * @param entry the new log entry.
71 * Sent when new raw data is coming from the log service.
97 * The {@link ILogListener} will receive new log entries as they are parsed, in the form
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
OccurrenceRenderer.java 17 package com.android.ddmuilib.log.event;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegate.java 129 AdtPlugin.log(e, "Could not find a valid junit.jar");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
FolderDecorator.java 77 // log the error
78 AdtPlugin.log(e, "Unable to get nature of project '%s'.", project.getName());
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
EventLogView.java 19 import com.android.ddmuilib.log.event.EventLogPanel;
45 CommonAction clearLogAction = new CommonAction("Clear Log");
46 clearLogAction.setToolTipText("Clears the event log");
50 CommonAction saveAction = new CommonAction("Save Log");
51 saveAction.setToolTipText("Saves the event log");
55 CommonAction loadAction = new CommonAction("Load Log");
56 loadAction.setToolTipText("Loads an event log");
60 CommonAction importBugAction = new CommonAction("Import Bug Report Log");
  /system/core/libpixelflinger/codeflinger/
CodeCache.cpp 23 #include <cutils/log.h>
  /system/core/libsysutils/src/
FrameworkListener.cpp 21 #include <cutils/log.h>
  /system/core/nexus/
Controller.cpp 30 #include <cutils/log.h>

Completed in 1189 milliseconds

<<11121314151617181920>>