HomeSort by relevance Sort by last modified time
    Searched refs:LOG (Results 1 - 25 of 318) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/libcutils/
loghack.h 25 #include <cutils/log.h>
28 #define LOG(level, ...) \
30 #define LOGV(...) LOG("V", __VA_ARGS__)
31 #define LOGD(...) LOG("D", __VA_ARGS__)
32 #define LOGI(...) LOG("I", __VA_ARGS__)
33 #define LOGW(...) LOG("W", __VA_ARGS__)
34 #define LOGE(...) LOG("E", __VA_ARGS__)
  /external/webkit/WebKit/android/nav/
CachedPrefix.h 37 #ifdef LOG
38 #undef LOG
41 #include <utils/Log.h>
  /bootable/recovery/minzip/
Log.h 9 // The output will be correct when the log file is shared between multiple
12 // and so are NOT reentrant. Do not use LOG in a signal handler.
46 * Simplified macro to send a verbose log message using the current LOG_TAG.
52 #define LOGV(...) ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
64 ? ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
73 * Simplified macro to send a debug log message using the current LOG_TAG.
76 #define LOGD(...) ((void)LOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
82 ? ((void)LOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
87 * Simplified macro to send an info log message using the current LOG_TAG.
90 #define LOGI(...) ((void)LOG(LOG_INFO, LOG_TAG, __VA_ARGS__)
    [all...]
  /external/webkit/WebCore/platform/network/curl/
SocketStreamHandleCurl.cpp 45 LOG(Network, "SocketStreamHandle %p new client %p", this, m_client);
51 LOG(Network, "SocketStreamHandle %p delete", this);
58 LOG(Network, "SocketStreamHandle %p platformSend", this);
65 LOG(Network, "SocketStreamHandle %p platformClose", this);
  /external/webkit/WebCore/platform/network/soup/
SocketStreamHandleSoup.cpp 44 LOG(Network, "SocketStreamHandle %p new client %p", this, m_client);
50 LOG(Network, "SocketStreamHandle %p delete", this);
57 LOG(Network, "SocketStreamHandle %p platformSend", this);
64 LOG(Network, "SocketStreamHandle %p platformClose", this);
  /development/simulator/app/
Semaphore.cpp 22 #include <utils/Log.h>
84 LOG(LOG_VERBOSE, "sem", "~Semaphore(handle=%ld creator=%d)\n",
98 LOG(LOG_ERROR, "sem",
118 LOG(LOG_WARN, "sem", "Warning: failed to remove sem '%s'\n",
128 LOG(LOG_ERROR, "sem",
153 LOG(LOG_ERROR, "sem",
173 LOG(LOG_WARN, "sem", "acquire failed (errno=%d)\n", errno);
179 LOG(LOG_WARN, "sem", "release failed (errno=%d)\n", errno);
186 LOG(LOG_WARN, "sem", "tryAcquire failed (errno=%d)\n", errno);
225 LOG(LOG_VERBOSE, "sem", "~Semaphore(handle=%ld creator=%d)\n"
    [all...]
Shmem.cpp 7 #include "utils/Log.h"
68 LOG(LOG_WARN, "shmem", "Couldn't clean up '%s'\n", nameBuf);
88 LOG(LOG_ERROR, "shmem", "Failed to remove old map file '%s'\n",
96 LOG(LOG_ERROR, "shmem", "Unable to create map file '%s' (errno=%d)\n",
105 LOG(LOG_ERROR, "shmem", "Unable to set file size in '%s' (errno=%d)\n",
113 LOG(LOG_ERROR, "shmem", "mmap failed (errno=%d)\n", errno);
125 LOG(LOG_ERROR, "shmem",
144 LOG(LOG_ERROR, "shmem", "Unable to open map file '%s' (errno=%d)\n",
152 LOG(LOG_ERROR, "shmem",
161 LOG(LOG_ERROR, "shmem", "mmap failed (errno=%d)\n", errno)
    [all...]
Pipe.cpp 22 #include <utils/Log.h>
59 LOG(LOG_WARN, "pipe", "failed closing read handle (%ld)\n",
65 LOG(LOG_WARN, "pipe", "failed closing write handle (%ld)\n",
71 LOG(LOG_WARN, "pipe", "failed closing read fd (%d)\n",
76 LOG(LOG_WARN, "pipe", "failed closing write fd (%d)\n",
102 LOG(LOG_ERROR, "pipe", "unable to create pipe\n");
112 LOG(LOG_ERROR, "pipe", "unable to create pipe\n");
170 LOG(LOG_ERROR, "pipe", "PeekNamedPipe failed\n");
184 LOG(LOG_ERROR, "pipe", "ReadFile failed (err=%ld)\n", err);
207 * DO NOT use LOG() here, we could be writing a log message
    [all...]
LocalBiChannel.cpp 7 #include "utils/Log.h"
107 LOG(LOG_ERROR, "lbicomm",
138 LOG(LOG_ERROR, "lbicomm",
192 LOG(LOG_ERROR, "lbicomm",
228 LOG(LOG_WARN, "lbicomm",
254 LOG(LOG_DEBUG, "lbicomm", "Removing '%s'\n", mFileName);
294 LOG(LOG_ERROR, "lbicomm",
301 LOG(LOG_ERROR, "lbicomm",
308 LOG(LOG_ERROR, "lbicomm",
318 LOG(LOG_ERROR, "lbicomm"
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
verify.h 46 LOG(ERROR) << "Verify: Fst start state ID unset";
49 LOG(ERROR) << "Verify: Fst start state ID exceeds number of states";
63 LOG(ERROR) << "Verify: Fst input label ID of arc at position "
67 LOG(ERROR) << "Verify: Fst input label ID " << arc.ilabel
73 LOG(ERROR) << "Verify: Fst output label ID of arc at position "
77 LOG(ERROR) << "Verify: Fst output label ID " << arc.olabel
83 LOG(ERROR) << "Verify: Fst weight of arc at position "
87 LOG(ERROR) << "Verify: Fst destination state ID of arc at position "
91 LOG(ERROR) << "Verify: Fst destination state ID of arc at position "
99 LOG(ERROR) << "Verify: Fst final weight of state " << s << " is invalid"
    [all...]
  /dalvik/vm/alloc/
HeapInternal.h 139 #define LOGV_HEAP(...) LOG(LOG_VERBOSE, HEAP_LOG_TAG, __VA_ARGS__)
140 #define LOGD_HEAP(...) LOG(LOG_DEBUG, HEAP_LOG_TAG, __VA_ARGS__)
142 #define LOGI_HEAP(...) LOG(LOG_INFO, HEAP_LOG_TAG, __VA_ARGS__)
143 #define LOGW_HEAP(...) LOG(LOG_WARN, HEAP_LOG_TAG, __VA_ARGS__)
144 #define LOGE_HEAP(...) LOG(LOG_ERROR, HEAP_LOG_TAG, __VA_ARGS__)
152 LOG(LOG_INFO, HEAP_LOG_TAG, __VA_ARGS__); \
  /external/chromium/net/base/
keygen_handler_nss.cc 103 LOG(ERROR) << "Couldn't get Internal key slot!";
119 LOG(ERROR) << "Only RSA keygen mechanism is supported";
129 LOG(ERROR) << "Couldn't initialze PK11 token!";
134 LOG(INFO) << "Creating key pair...";
142 LOG(INFO) << "done.";
145 LOG(INFO) << "Generation of Keypair failed!";
156 LOG(ERROR) << "Couldn't create SubjectPublicKeyInfo from public key";
164 LOG(ERROR) << "PORT_NewArena: Couldn't allocate memory";
173 LOG(ERROR) << "Couldn't DER Encode subjectPublicKeyInfo";
183 LOG(ERROR) << "Out of memory while making a copy of challenge data"
    [all...]
fixed_host_resolver.cc 18 LOG(DFATAL) << "Invalid FixedHostResolver information: " << host;
25 LOG(ERROR) << "Could not resolve fixed host: " << host;
  /system/netd/
logwrapper.c 27 #include "cutils/log.h"
39 // Log one line at a time
46 LOG(LOG_INFO, tag, "%s", &buffer[a]);
54 LOG(LOG_INFO, tag, "%s", &buffer[a]);
70 LOG(LOG_INFO, tag, "%s", &buffer[a]);
76 LOG(LOG_INFO, "logwrapper", "%s terminated by exit(%d)", tag,
81 LOG(LOG_INFO, "logwrapper", "%s terminated by signal %d", tag,
84 LOG(LOG_INFO, "logwrapper", "%s stopped by signal %d", tag,
87 LOG(LOG_INFO, "logwrapper", "%s wait() failed: %s (%d)", tag,
100 LOG(LOG_ERROR, "logwrapper"
    [all...]
  /system/vold/
logwrapper.c 27 #include "cutils/log.h"
39 // Log one line at a time
46 LOG(LOG_INFO, tag, "%s", &buffer[a]);
54 LOG(LOG_INFO, tag, "%s", &buffer[a]);
70 LOG(LOG_INFO, tag, "%s", &buffer[a]);
76 LOG(LOG_INFO, "logwrapper", "%s terminated by exit(%d)", tag,
81 LOG(LOG_INFO, "logwrapper", "%s terminated by signal %d", tag,
84 LOG(LOG_INFO, "logwrapper", "%s stopped by signal %d", tag,
87 LOG(LOG_INFO, "logwrapper", "%s wait() failed: %s (%d)", tag,
100 LOG(LOG_ERROR, "logwrapper"
    [all...]
  /system/core/logwrapper/
logwrapper.c 27 #include "cutils/log.h"
31 LOG(LOG_ERROR, "logwrapper", "%s", msg);
57 // Log one line at a time
63 LOG(LOG_INFO, tag, "%s", &buffer[a]);
71 LOG(LOG_INFO, tag, "%s", &buffer[a]);
87 LOG(LOG_INFO, tag, "%s", &buffer[a]);
92 LOG(LOG_INFO, "logwrapper", "%s terminated by exit(%d)", tag,
95 LOG(LOG_INFO, "logwrapper", "%s terminated by signal %d", tag,
98 LOG(LOG_INFO, "logwrapper", "%s stopped by signal %d", tag,
101 LOG(LOG_INFO, "logwrapper", "%s wait() failed: %s (%d)", tag
    [all...]
  /external/chromium/base/
nss_util.cc 33 LOG(ERROR) << "$HOME is not set.";
39 LOG(ERROR) << "Failed to create ~/.pki/nssdb directory.";
74 LOG(ERROR) << "PR_Cleanup failed; was NSPR initialized on wrong thread?";
101 LOG(ERROR) << "Error initializing NSS without a persistent "
113 LOG(ERROR) << "Error initializing NSS with a persistent "
119 LOG(WARNING) << "Initialize NSS without a persistent database "
123 LOG(ERROR) << "Error initializing NSS without a persistent "
130 // log in.
151 // We LOG(INFO) because this failure is relatively harmless
153 LOG(INFO) << "NSS_Shutdown failed; see
    [all...]
data_pack.cc 70 LOG(ERROR) << "Bad data pack version: got " << version << ", expected "
81 LOG(ERROR) << "Data pack file corruption: too short for number of "
91 LOG(ERROR) << "Entry #" << i << " in data pack points off end of file. "
141 LOG(ERROR) << "Failed to write file version";
150 LOG(ERROR) << "Failed to write entry count";
161 LOG(ERROR) << "Failed to write id for " << it->first;
167 LOG(ERROR) << "Failed to write offset for " << it->first;
174 LOG(ERROR) << "Failed to write length for " << it->first;
185 LOG(ERROR) << "Failed to write data for " << it->first;
  /external/webkit/WebKit/chromium/src/
SocketStreamHandle.cpp 93 LOG(Network, "connect");
100 LOG(Network, "send len=%d", len);
110 LOG(Network, "sent");
113 LOG(Network, "busy. buffering");
119 LOG(Network, "close");
125 LOG(Network, "SocketStreamHandleInternal::didOpen %d",
137 LOG(Network, "no m_handle or m_socket?");
142 LOG(Network, "SocketStreamHandleInternal::didSendData %d", amountSent);
154 LOG(Network, "didReceiveData");
164 LOG(Network, "didClose")
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
headerparser.cc 28 LOG(DFATAL) << "Internal error: position advanced by " << number_of_bytes
39 LOG(DFATAL) << "Internal error: new data position " << position
45 LOG(DFATAL) << "Internal error: new data position " << position
55 LOG(DFATAL) << "Internal error: specified number of remaining bytes "
96 LOG(ERROR) << "Expected " << variable_description
123 LOG(ERROR) << "Expected " << variable_description
132 LOG(ERROR) << "Value of " << variable_description << "(" << parsed_value
176 LOG(ERROR) << "Source segment length (" << *source_segment_length
187 LOG(ERROR) << "Source segment position (" << *source_segment_position
196 LOG(ERROR) << "Source segment end position (" << source_segment_en
    [all...]
addrcache.cc 79 LOG(ERROR) << "Near cache size " << near_cache_size_ << " is invalid"
84 LOG(ERROR) << "Same cache size " << same_cache_size_ << " is invalid"
89 LOG(ERROR) << "Using near cache size " << near_cache_size_
151 // have not been met, in which case a LOG(DFATAL) message will be produced,
158 LOG(DFATAL) << "EncodeAddress was passed a negative address: "
164 LOG(DFATAL) << "EncodeAddress was called with address (" << address
221 // address is valid; otherwise, prints an error message to the log and
226 LOG(ERROR) << "Decoded address " << decoded_address << " is invalid"
230 LOG(ERROR) << "Decoded address (" << decoded_address
282 LOG(DFATAL) << "DecodeAddress was passed a negative value
    [all...]
  /external/qemu/
loadpng.c 7 #define LOG(x...) fprintf(stderr,"error: " x)
9 #define LOG(x...) do {} while (0)
26 LOG("%s: failed to allocate png read struct\n", fn);
32 LOG("%s: failed to allocate png info struct\n", fn);
38 LOG("%s: failed to open file\n", fn);
43 LOG("%s: failed to read header\n", fn);
48 LOG("%s: header is not a PNG header\n", fn);
53 LOG("%s: png library error\n", fn);
94 LOG("%s: unsupported (grayscale?) color type\n");
106 LOG("could not allocate data buffer\n")
    [all...]
  /external/v8/src/
log-inl.h 31 #include "log.h"
76 LOG(UncheckedStringEvent("Entering", StateToString(state_)));
78 LOG(UncheckedStringEvent("From", StateToString(previous_->state_)));
102 LOG(UncheckedStringEvent("Leaving", StateToString(state_)));
104 LOG(UncheckedStringEvent("To", StateToString(previous_->state_)));
  /external/webkit/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 48 #define LOG_MEDIAOBJECT() (LOG(Media, "%s", debugMediaObject(this, *m_mediaObject).constData()))
132 LOG(Media, "MediaPlayerPrivatePhonon::dtor deleting videowidget");
137 LOG(Media, "MediaPlayerPrivatePhonon::dtor deleting audiooutput");
141 LOG(Media, "MediaPlayerPrivatePhonon::dtor deleting mediaobject");
161 LOG(Media, "MediaPlayerPrivatePhonon::hasVideo() -> %s", hasVideo ? "true" : "false");
169 LOG(Media, "MediaPlayerPrivatePhonon::hasAudio() -> %s", hasAudio ? "true" : "false");
175 LOG(Media, "MediaPlayerPrivatePhonon::load(\"%s\")", url.utf8().data());
202 LOG(Media, "MediaPlayerPrivatePhonon::play()");
208 LOG(Media, "MediaPlayerPrivatePhonon::pause()");
216 LOG(Media, "MediaPlayerPrivatePhonon::paused() --> %s", paused ? "true" : "false")
    [all...]
  /external/webkit/WebCore/storage/
SQLTransaction.cpp 156 LOG(StorageAPI, "Database was stopped - cancelling work for this transaction");
174 LOG(StorageAPI, "Step %s\n", debugStepName(m_nextStep));
194 LOG(StorageAPI, "Callback %s\n", debugStepName(m_nextStep));
227 LOG(StorageAPI, "Scheduling openTransactionAndPreflight immediately for transaction %p\n", this);
236 LOG(StorageAPI, "Opening and preflighting transaction %p", this);
279 LOG(StorageAPI, "Scheduling deliverTransactionCallback for transaction %p\n", this);
305 LOG(StorageAPI, "Scheduling runStatements for transaction %p\n", this);
374 LOG(StorageAPI, "Scheduling deliverStatementCallback for transaction %p\n", this);
383 LOG(StorageAPI, "Scheduling deliverQuotaIncreaseCallback for transaction %p\n", this);
399 LOG(StorageAPI, "Scheduling deliverStatementCallback for transaction %p\n", this)
    [all...]

Completed in 1081 milliseconds

1 2 3 4 5 6 7 8 91011>>