Lines Matching defs:message
242 DHandleEntryTxRx message = {
257 if (memcpy_s(message.deviceIdInfo.fromDeviceId, DEVICEID_LENGTH, localDeviceID, localDeviceIDLength) != EOK ||
258 memcpy_s(message.deviceIdInfo.toDeviceId, DEVICEID_LENGTH, toDeviceID, toDeviceIDLength) != EOK) {
262 message.deviceIdInfo.fromDeviceId[localDeviceIDLength] = '\0';
263 message.deviceIdInfo.toDeviceId[toDeviceIDLength] = '\0';
265 if (SendDataToRemote(toDeviceID, &message) != ERR_NONE) {
588 DHandleEntryTxRx *message = (DHandleEntryTxRx *)args;
589 ProxyObject *saProxy = FindOrNewProxy(message->binderObject, (int32_t)message->stubIndex);
596 if (memcpy_s(&replyMessage, sizeof(DHandleEntryTxRx), message, sizeof(DHandleEntryTxRx)) != EOK) {
605 message->pid, message->uid) != ERR_NONE) {
845 int32_t OnRemoteMessageTask(const DHandleEntryTxRx *message)
847 if (message == NULL) {
848 RPC_LOG_ERROR("OnRemoteMessageTask message is NULL");
853 switch (message->dBinderCode) {
856 ret = pthread_create(&threadId, NULL, OnRemoteInvokerMessage, (void *)message);
867 ret = OnRemoteReplyMessage(message);
871 RPC_LOG_ERROR("OnRemoteMessageTask dbindercode=%d valid", message->dBinderCode);