Lines Matching refs:hdr
48 confirmationui_hdr hdr = { in TrustyRpc() local
56 .iov_base = &hdr, in TrustyRpc()
57 .iov_len = sizeof(hdr), in TrustyRpc()
66 if (rc != static_cast<int>(sizeof(hdr) + sizeof(args))) { in TrustyRpc()
72 if (rc != static_cast<int>(sizeof(hdr) + sizeof(args))) { in TrustyRpc()
77 if (hdr.cmd != (CONFIRMATIONUI_CMD_MSG | CONFIRMATIONUI_RESP_BIT)) { in TrustyRpc()
78 LOG(ERROR) << AT << "unknown response command: " << hdr.cmd; in TrustyRpc()
110 confirmationui_hdr hdr = { in TrustyApp() local
118 .iov_base = &hdr, in TrustyApp()
119 .iov_len = sizeof(hdr), in TrustyApp()
132 if (rc != static_cast<int>(sizeof(hdr) + sizeof(args))) { in TrustyApp()
137 rc = read(tipc_handle, &hdr, sizeof(hdr)); in TrustyApp()
138 if (rc != static_cast<int>(sizeof(hdr))) { in TrustyApp()
143 if (hdr.cmd != (CONFIRMATIONUI_CMD_INIT | CONFIRMATIONUI_RESP_BIT)) { in TrustyApp()
144 LOG(ERROR) << AT << "unknown response command: " << hdr.cmd; in TrustyApp()