Searched defs:ALOGE (Results 1 - 4 of 4) sorted by relevance

/system/core/include/log/
H A Dlog_main.h241 #ifndef ALOGE
242 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) macro
/system/core/liblog/include/log/
H A Dlog_main.h241 #ifndef ALOGE
242 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) macro
/system/core/liblog/include_vndk/log/
H A Dlog_main.h241 #ifndef ALOGE
242 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) macro
/system/libhwbinder/
H A DProcessState.cpp124 ALOGE("getContextObject(%s) failed, but we manage the contexts!\n",
177 ALOGE("Binder ioctl to become context manager failed: %s\n", strerror(errno));
335 ALOGE("Binder ioctl to set max threads failed: %s", strerror(-result));
355 ALOGE("Binder ioctl to obtain version failed: %s", strerror(errno));
360 ALOGE("Binder driver protocol(%d) does not match user space protocol(%d)!", vers, BINDER_CURRENT_PROTOCOL_VERSION);
367 ALOGE("Binder ioctl to set max threads failed: %s", strerror(errno));
396 ALOGE("Using /dev/hwbinder failed: unable to mmap transaction memory.\n");
402 ALOGE("Binder driver could not be opened. Terminating.");
320 LOG_ALWAYS_FATAL_IF(maxThreads < 1, �); status_t result = NO_ERROR; size_t kernelMaxThreads = maxThreads - 1; if (ioctl(mDriverFD, BINDER_SET_MAX_THREADS, &kernelMaxThreads) != -1) { AutoMutex _l(mLock); mMaxThreads = maxThreads; mSpawnThreadOnStart = !callerJoinsPool; } else { result = -errno; ALOGE(�, strerror(-result)); } return result; } size_t ProcessState::getMaxThreads() { return mMaxThreads; } void ProcessState::giveThreadPoolName() { androidSetThreadName( makeBinderThreadName().string() ); } static int open_driver() { int fd = open(�, O_RDWR | O_CLOEXEC); if (fd >= 0) argument

Completed in 825 milliseconds