Searched defs:outBuffSize (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/lms/heci/
H A DMNGCommand.cpp54 HECI_STATUS MNGCommand::_call(const unsigned char *command, UINT32 command_size, UINT8 **readBuffer, UINT32 *outBuffSize) argument
57 *outBuffSize = 0;
83 *outBuffSize = MNGClient.ReceiveMessage(*readBuffer, inBuffSize, 15000);
84 if (0 == *outBuffSize)
94 fprintf(stdout, "Data received from MNG Client. %d bytes read\n", *outBuffSize);
H A DFWULCommand.cpp54 HECI_STATUS FWULCommand::_call(const unsigned char *command, UINT32 command_size, UINT8 **readBuffer, UINT32 *outBuffSize) argument
57 *outBuffSize = 0;
83 *outBuffSize = FWULClient.ReceiveMessage(*readBuffer, inBuffSize, 15000);
84 if (0 == *outBuffSize)
94 fprintf(stdout, "Data received from FWUpdate Client. %d bytes read\n", *outBuffSize);
H A DPTHICommand.cpp58 UINT32 outBuffSize = 0; local
73 outBuffSize = PTHIClient.ReceiveMessage(*readBuffer, inBuffSize);
74 if (0 == outBuffSize)
83 status = _verifyResponseHeader(rcmd, ((PTHI_RESPONSE_MESSAGE_HEADER *)*readBuffer)->Header, outBuffSize);
88 if ((expSize != 0) && (expSize != outBuffSize))

Completed in 52 milliseconds