HomeSort by relevance Sort by last modified time
    Searched refs:log (Results 151 - 175 of 3187) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/srec/srec/include/
portable.h 41 /* QNX defines log in math.h */
42 #ifndef log
43 #define log(X) ((X) <= 1e-32 ? -MAX_LOG : log(X)) macro
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcRetryAlarmController.java 54 log("onReceive: ignore empty action='" + action + "'");
67 log("onReceive: action=" + action
73 if (DBG) log("onReceive: unknown action=" + action);
87 log("DcRetryAlarmController: register for intent action=" + mActionRetry);
96 if (DBG) log("dispose");
118 if (DBG) log("getSuggestedRetryTime: suggestedRetryTime is MAX_INT, retry NOT needed");
121 if (DBG) log("getSuggestedRetryTime: suggestedRetryTime is >= 0 use it");
127 if (DBG) log("getSuggestedRetryTime: retry is needed");
129 if (DBG) log("getSuggestedRetryTime: retry is NOT needed");
134 log("getSuggestedRetryTime: " + retryDelay + " response=" + response + " dc=" + dc)
166 private void log(String s) { method in class:DcRetryAlarmController
    [all...]
  /ndk/build/tools/
build-host-awk.sh 52 log "Using sources from: $AWK_SRCDIR"
69 log "Configuring the build"
72 log "Building $HOST_TAG awk"
88 log "Copying executable to prebuilt location"
100 log "Cleaning up"
103 log "Done."
build-host-sed.sh 52 log "Using sources from: $SED_SRCDIR"
59 log "Configuring the build"
74 log "Building sed (lib/ and sed/ only)"
79 log "Copying executable to prebuilt location"
91 log "Cleaning up"
94 log "Done."
dev-platform-expand.sh 106 log "Using source directory: $SRCDIR"
114 log "Using platform: $PLATFORM"
123 log "Using destination directory: $DSTDIR"
145 log "Using architectures: $(commas_to_spaces $ARCHS)"
147 # log "Checking source platform architectures."
155 # log " $DIR"
163 # log " $ARCH check: $CHECK"
202 log "Copying android-$LEVEL platform files"
221 log "Done !"
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
ProfileService.java 31 import android.util.Log;
80 if (DBG) log("REFCOUNT: CREATED. INSTANCE_COUNT=" +refCount);
95 log("REFCOUNT: FINALIZED. INSTANCE_COUNT=" +refCount);
102 if (DBG) log("onCreate");
109 if (DBG) log("onStartCommand()");
111 Log.w(mName, "Stopping profile service: device does not have BT");
117 Log.e(mName, "Permission denied!");
122 Log.d(mName, "Restarting profile service...");
129 Log.d(mName, "Received stop request...Stopping profile...");
132 Log.d(mName, "Received start request. Starting profile...")
213 protected void log(String msg) { method in class:ProfileService
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
exposurecompensationtest.cpp 19 #include <utils/Log.h>
58 log(static_cast<float>(mReferenceColors[j].r()))
59 / log(2.0f) * GAMMA_CORRECTION +
62 log(static_cast<float>(mReferenceColors[j].g()))
63 / log(2.0f) * GAMMA_CORRECTION +
66 log(static_cast<float>(mReferenceColors[j].b()))
67 / log(2.0f) * GAMMA_CORRECTION +
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 7 console.log("item " + info.menuItemId + " was clicked");
8 console.log("info: " + JSON.stringify(info));
9 console.log("tab: " + JSON.stringify(tab));
20 console.log("'" + context + "' item:" + id);
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
35 console.log("radio item " + info.menuItemId +
43 console.log("radio1:" + radio1 + " radio2:" + radio2);
48 console.log(JSON.stringify(info));
49 console.log("checkbox item " + info.menuItemId +
58 console.log("checkbox1:" + checkbox1 + " checkbox2:" + checkbox2);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 7 console.log("item " + info.menuItemId + " was clicked");
8 console.log("info: " + JSON.stringify(info));
9 console.log("tab: " + JSON.stringify(tab));
20 console.log("'" + context + "' item:" + id);
30 console.log("parent:" + parent + " child1:" + child1 + " child2:" + child2);
35 console.log("radio item " + info.menuItemId +
43 console.log("radio1:" + radio1 + " radio2:" + radio2);
48 console.log(JSON.stringify(info));
49 console.log("checkbox item " + info.menuItemId +
58 console.log("checkbox1:" + checkbox1 + " checkbox2:" + checkbox2);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contextMenus/event_page/
sample.js 8 console.log("radio item " + info.menuItemId +
12 console.log(JSON.stringify(info));
13 console.log("checkbox item " + info.menuItemId +
18 console.log("item " + info.menuItemId + " was clicked");
19 console.log("info: " + JSON.stringify(info));
20 console.log("tab: " + JSON.stringify(tab));
36 console.log("'" + context + "' item:" + id);
45 console.log("parent child1 child2");
52 console.log("radio1 radio2");
59 console.log("checkbox1 checkbox2");
    [all...]
  /external/chromium_org/ppapi/generators/
idl_log.py 8 # IDL Log
26 self.log = []
28 def Log(self, msg):
32 self.log.append(msg)
38 self.log.append(msg)
43 if self.capture: self.log.append(msg)
53 out = self.log
54 self.log = []
  /packages/apps/Email/emailsync/src/com/android/emailsync/
FileLogger.java 57 static public synchronized void log(Exception e) { method in class:FileLogger
59 log("Exception", "Stack trace follows...");
67 static public synchronized void log(String prefix, String str) { method in class:FileLogger
70 log("Logger", "\r\n\r\n --- New Log ---");
110 log("FileLogger", "Exception writing log; recreating...");
111 log(prefix, str); method
  /packages/apps/Exchange/src/com/android/exchange/utility/
FileLogger.java 56 static public synchronized void log(Exception e) { method in class:FileLogger
58 log("Exception", "Stack trace follows...");
66 static public synchronized void log(String prefix, String str) { method in class:FileLogger
69 log("Logger", "\r\n\r\n --- New Log ---");
109 log("FileLogger", "Exception writing log; recreating...");
110 log(prefix, str); method
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSourcePlexor.java 43 log(TAG, "finding albums"); method
47 log(TAG, "found " + foundAlbums.size() + " network albums"); method
50 log(TAG, "found " + foundAlbums.size() + " user albums"); method
57 log(TAG, "finding images"); method
61 log(TAG, "found " + foundImages.size() + " network images"); method
64 log(TAG, "found " + foundImages.size() + " user images"); method
  /packages/services/Telephony/src/com/android/phone/
GsmUmtsOptions.java 54 log("Not a GSM phone");
58 log("Not a CDMA phone");
75 log("[CSP] Enabling Operator Selection menu.");
78 log("[CSP] Disabling Operator Selection menu.");
87 log("preferenceTreeClick: return false");
91 protected void log(String s) { method in class:GsmUmtsOptions
92 android.util.Log.d(LOG_TAG, s);
CallerInfoCacheUpdateReceiver.java 23 import android.util.Log;
41 if (DBG) log("CallerInfoCacheUpdateReceiver#onReceive(). Intent: " + intent);
45 private static void log(String msg) { method in class:CallerInfoCacheUpdateReceiver
46 Log.d(LOG_TAG, msg);
  /external/bluetooth/bluedroid/conf/
bt_stack.conf 5 # BtSnoop log output file
6 BtSnoopFileName=/sdcard/btsnoop_hci.log
  /external/chromium_org/build/android/pylib/instrumentation/
test_result.py 11 def __init__(self, full_name, test_type, start_date, dur, log=''):
19 log: A string listing any errors.
21 super(InstrumentationTestResult, self).__init__(full_name, test_type, log)
  /external/chromium_org/remoting/tools/mac/
chromoting-set-channel.sh 20 log() { function
46 log "Switching Chrome Remote Desktop channel to ${channel}"
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
PassDifferentNPPStruct.cpp 60 log("NPN_GetValue(NPNVprivateModeBool) with a different NPP struct failed with error %d", error);
64 log("NPN_GetValue(NPNVprivateModeBool) with a different NPP struct succeeded");
  /external/chromium_org/third_party/WebKit/Source/web/
WebDOMActivityLogger.cpp 50 virtual void log(const String& apiName, int argc, const v8::Handle<v8::Value>* argv, const String& extraInfo) function in class:WebKit::DOMActivityLoggerContainer
52 m_domActivityLogger->log(WebString(apiName), argc, argv, WebString(extraInfo));
  /external/chromium_org/third_party/libxml/src/
check-xsddata-test-suite.py 20 LOG="check-xsddata-test-suite.log"
22 log = open(LOG, "w") variable
35 global log
36 log.write("%s%s" % (ctx, str))
49 log.write("Resolver failure: asked %s\n" % (URL))
50 log.write("resources: %s\n" % (resources))
57 global log
77 log.write("\nFailed to parse correct instance:\n-----\n"
    [all...]
check-xinclude-test-suite.py 14 LOG="check-xinclude-test-suite.log"
16 log = open(LOG, "w") variable
47 global log
61 global log
153 # Log the ontext
155 log.write("Test ID %s\n" % (id))
156 log.write(" File: %s\n" % (URI))
160 log.write(" %s:%s\n\n" % (type, content)
    [all...]
  /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...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiConnectionTest.java 29 import android.util.Log;
65 log("==== print network configurations parsed from XML file ====");
66 log("number of access points: " + networks.size());
68 log(config.toString());
95 log("config.SSID = " + config.SSID);
96 log("mWifiManager.getConnectionInfo.getSSID()" +
110 private void log(String message) { method in class:WifiConnectionTest
111 Log.v(TAG, message);
118 log("-- START Wi-Fi connection test to : " + ssid + " --");
122 log("-- END Wi-Fi connection test to " + ssid + " -- ")
    [all...]

Completed in 3929 milliseconds

1 2 3 4 5 67 8 91011>>