Lines Matching defs:channel

10 // Log debug messages about channel messages (send message, receive message)
100 ALOGD("Input channel constructed: name='%s', fd=%d",
105 LOG_ALWAYS_FATAL_IF(result != 0, "channel '%s' ~ Could not make socket "
111 ALOGD("Input channel destroyed: name='%s', fd=%d",
123 ALOGE("channel '%s' ~ Could not create socket pair. errno=%d",
156 ALOGD("channel '%s' ~ error sending message of type %d, errno=%d", mName.string(),
170 ALOGD("channel '%s' ~ error sending message type %d, send was incomplete",
177 ALOGD("channel '%s' ~ sent message of type %d", mName.string(), msg->header.type);
191 ALOGD("channel '%s' ~ receive message failed, errno=%d", mName.string(), errno);
204 ALOGD("channel '%s' ~ receive message failed because peer was closed", mName.string());
211 ALOGD("channel '%s' ~ received invalid message", mName.string());
217 ALOGD("channel '%s' ~ received message of type %d", mName.string(), msg->header.type);
225 InputPublisher::InputPublisher(const sp<InputChannel>& channel) :
226 mChannel(channel) {
245 ALOGD("channel '%s' publisher ~ publishKeyEvent: seq=%u, deviceId=%d, source=0x%x, "
293 ALOGD("channel '%s' publisher ~ publishMotionEvent: seq=%u, deviceId=%d, source=0x%x, "
309 ALOGE("channel '%s' publisher ~ Invalid number of pointers provided: %d.",
340 ALOGD("channel '%s' publisher ~ receiveFinishedSignal",
352 ALOGE("channel '%s' publisher ~ Received unexpected message of type %d from consumer",
363 InputConsumer::InputConsumer(const sp<InputChannel>& channel) :
365 mChannel(channel), mMsgDeferred(false) {
389 ALOGD("channel '%s' consumer ~ consume: consumeBatches=%s, frameTime=%lld",
412 ALOGD("channel '%s' consumer ~ consumed batch event, seq=%u",
431 ALOGD("channel '%s' consumer ~ consumed key event, seq=%u",
444 ALOGD("channel '%s' consumer ~ appended to batch event",
459 ALOGD("channel '%s' consumer ~ consumed batch event and "
474 ALOGD("channel '%s' consumer ~ started batch event",
488 ALOGD("channel '%s' consumer ~ consumed motion event, seq=%u",
495 ALOGE("channel '%s' consumer ~ Received unexpected message of type %d",
793 ALOGD("channel '%s' consumer ~ sendFinishedSignal: seq=%u, handled=%s",