Home
last modified time | relevance | path

Searched refs:msgType (Results 1 – 10 of 10) sorted by relevance

/external/deqp/execserver/
DxsTestDriver.cpp192 bool TestDriver::pollBuffer (ByteBuffer& messageBuffer, MessageType msgType) in pollBuffer() argument
204 numRead = msgType == MESSAGETYPE_PROCESS_LOG_DATA in pollBuffer()
217 Message::writeHeader(msgType, msgSize, &m_dataMsgTmpBuf[0], MESSAGE_HEADER_SIZE); in pollBuffer()
222 …DBG_PRINT((" wrote %d bytes of %s data\n", msgSize, msgType == MESSAGETYPE_INFO ? "info" : "log")… in pollBuffer()
DxsTestDriver.hpp63 bool pollBuffer (ByteBuffer& messageBuffer, MessageType msgType);
DxsProtocol.cpp94 MessageWriter (MessageType msgType, std::vector<deUint8>& buf) in MessageWriter() argument
101 put<int>(msgType); in MessageWriter()
/external/android-nn-driver/
DRequestThread.hpp81 ThreadMsg(ThreadMsgType msgType, in ThreadMsg()
83 : type(msgType) in ThreadMsg()
DRequestThread_1_3.hpp80 ThreadMsg(ThreadMsgType msgType, in ThreadMsg()
82 : type(msgType) in ThreadMsg()
/external/icu/icu4c/source/common/unicode/
Dmessagepattern.h776 UMessagePatternPartType msgType=getType(); in getArgType() local
777 if(msgType ==UMSGPAT_PART_TYPE_ARG_START || msgType ==UMSGPAT_PART_TYPE_ARG_LIMIT) { in getArgType()
/external/icu/libicu/cts_headers/unicode/
Dmessagepattern.h776 UMessagePatternPartType msgType=getType(); in getArgType() local
777 if(msgType ==UMSGPAT_PART_TYPE_ARG_START || msgType ==UMSGPAT_PART_TYPE_ARG_LIMIT) { in getArgType()
/external/toybox/toys/pending/
Ddhcp.c1450 uint8_t msgType; in dhcp_main() local
1460 msgType = dhcpc_parsemsg(&result); in dhcp_main()
1461 if (msgType != DHCPNAK && result.ipaddr.s_addr == 0 ) continue; // no ip for me ignore in dhcp_main()
1462 …if (!msgType || !get_option_serverid(state->pdhcp.options, &result)) continue; //no server id igno… in dhcp_main()
1463 if (msgType == DHCPOFFER && server == 0) server = result.serverid.s_addr; // select the server in dhcp_main()
1470 if (msgType == DHCPOFFER) { in dhcp_main()
1482 if (msgType == DHCPACK) { in dhcp_main()
1502 } else if (msgType == DHCPNAK) { in dhcp_main()
/external/protobuf/objectivec/Tests/
DGPBConcurrencyTests.m60 - (NSArray *)createMessagesWithType:(Class)msgType {
63 [array addObject:[msgType message]];
/external/boringssl/src/ssl/test/runner/
Dconn.go1122 msgType := data[0]
1123 if c.config.Bugs.SendWrongMessageType != 0 && msgType == c.config.Bugs.SendWrongMessageType {
1124 msgType += 42
1126 if msgType != data[0] {
1127 data = append([]byte{msgType}, data[1:]...)
1130 …if c.config.Bugs.SendTrailingMessageData != 0 && msgType == c.config.Bugs.SendTrailingMessageData {
1144 if c.config.Bugs.TrailingDataWithFinished && msgType == typeFinished {