Lines Matching refs:channel

10 // Log debug messages about channel messages (send message, receive message)
101 ALOGD("Input channel constructed: name='%s', fd=%d",
106 LOG_ALWAYS_FATAL_IF(result != 0, "channel '%s' ~ Could not make socket "
112 ALOGD("Input channel destroyed: name='%s', fd=%d",
124 ALOGE("channel '%s' ~ Could not create socket pair. errno=%d",
157 ALOGD("channel '%s' ~ error sending message of type %d, errno=%d", mName.string(),
171 ALOGD("channel '%s' ~ error sending message type %d, send was incomplete",
178 ALOGD("channel '%s' ~ sent message of type %d", mName.string(), msg->header.type);
192 ALOGD("channel '%s' ~ receive message failed, errno=%d", mName.string(), errno);
205 ALOGD("channel '%s' ~ receive message failed because peer was closed", mName.string());
212 ALOGD("channel '%s' ~ received invalid message", mName.string());
218 ALOGD("channel '%s' ~ received message of type %d", mName.string(), msg->header.type);
231 InputPublisher::InputPublisher(const sp<InputChannel>& channel) :
232 mChannel(channel) {
251 ALOGD("channel '%s' publisher ~ publishKeyEvent: seq=%u, deviceId=%d, source=0x%x, "
299 ALOGD("channel '%s' publisher ~ publishMotionEvent: seq=%u, deviceId=%d, source=0x%x, "
315 ALOGE("channel '%s' publisher ~ Invalid number of pointers provided: %d.",
346 ALOGD("channel '%s' publisher ~ receiveFinishedSignal",
358 ALOGE("channel '%s' publisher ~ Received unexpected message of type %d from consumer",
369 InputConsumer::InputConsumer(const sp<InputChannel>& channel) :
371 mChannel(channel), mMsgDeferred(false) {
395 ALOGD("channel '%s' consumer ~ consume: consumeBatches=%s, frameTime=%lld",
418 ALOGD("channel '%s' consumer ~ consumed batch event, seq=%u",
437 ALOGD("channel '%s' consumer ~ consumed key event, seq=%u",
450 ALOGD("channel '%s' consumer ~ appended to batch event",
465 ALOGD("channel '%s' consumer ~ consumed batch event and "
480 ALOGD("channel '%s' consumer ~ started batch event",
494 ALOGD("channel '%s' consumer ~ consumed motion event, seq=%u",
501 ALOGE("channel '%s' consumer ~ Received unexpected message of type %d",
802 ALOGD("channel '%s' consumer ~ sendFinishedSignal: seq=%u, handled=%s",