Searched defs:msg_type (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dasyncstuntcpsocket.cc46 inline bool IsStunMessage(uint16 msg_type) { argument
48 return (msg_type & 0xC000) ? false : true;
147 uint16 msg_type = talk_base::GetBE16(data);
148 if (IsStunMessage(msg_type)) {
H A Dstun.cc889 bool IsStunRequestType(int msg_type) { argument
890 return ((msg_type & kStunTypeMask) == 0x000);
893 bool IsStunIndicationType(int msg_type) { argument
894 return ((msg_type & kStunTypeMask) == 0x010);
897 bool IsStunSuccessResponseType(int msg_type) { argument
898 return ((msg_type & kStunTypeMask) == 0x100);
901 bool IsStunErrorResponseType(int msg_type) { argument
902 return ((msg_type & kStunTypeMask) == 0x110);
H A Dturnport.cc59 inline bool IsTurnChannelData(uint16 msg_type) { argument
60 return ((msg_type & 0xC000) == 0x4000); // MSB are 0b01
360 uint16 msg_type = talk_base::GetBE16(data); local
361 if (IsTurnChannelData(msg_type)) {
362 HandleChannelData(msg_type, data, size);
363 } else if (msg_type == TURN_DATA_INDICATION) {
368 if (IsStunSuccessResponseType(msg_type) &&
371 << "message integrity, msg_type=" << msg_type;
H A Dturnserver.cc62 inline bool IsTurnChannelData(uint16 msg_type) { argument
64 return ((msg_type & 0xC000) == 0x4000);
291 uint16 msg_type = talk_base::GetBE16(data); local
292 if (!IsTurnChannelData(msg_type)) {
/external/chromium_org/ppapi/host/
H A Dresource_message_filter_unittest.cc39 // Messages of type |msg_type| will be handled (simply by replying with a
44 uint32 msg_type,
47 msg_type_(msg_type),
95 // Messages of type |msg_type| will be handled (simply by replying with a
101 uint32 msg_type,
105 msg_type_(msg_type),
41 MyResourceHost(PpapiHost* host, PP_Instance instance, PP_Resource resource, uint32 msg_type, uint32 reply_msg_type) argument
99 MyResourceFilter(const base::Thread& io_thread, const base::Thread& bg_thread, uint32 msg_type, uint32 reply_msg_type) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_emit.cpp268 int msg_type = -1; local
292 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_COMPARE;
294 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE;
299 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS_COMPARE;
301 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS;
306 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE;
308 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD;
312 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_RESINFO;
318 msg_type = HSW_SAMPLER_MESSAGE_SAMPLE_DERIV_COMPARE;
320 msg_type
[all...]
H A Dbrw_vec4_emit.cpp371 int msg_type = -1; local
378 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE;
380 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD;
387 msg_type = HSW_SAMPLER_MESSAGE_SAMPLE_DERIV_COMPARE;
389 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_DERIVS;
393 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LD;
396 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_RESINFO;
407 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD_COMPARE;
410 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD;
416 msg_type
552 uint32_t msg_type; local
601 uint32_t msg_type; local
685 uint32_t msg_type; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_emit.cpp268 int msg_type = -1; local
292 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_COMPARE;
294 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE;
299 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS_COMPARE;
301 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_BIAS;
306 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE;
308 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD;
312 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_RESINFO;
318 msg_type = HSW_SAMPLER_MESSAGE_SAMPLE_DERIV_COMPARE;
320 msg_type
[all...]
H A Dbrw_vec4_emit.cpp371 int msg_type = -1; local
378 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD_COMPARE;
380 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LOD;
387 msg_type = HSW_SAMPLER_MESSAGE_SAMPLE_DERIV_COMPARE;
389 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_DERIVS;
393 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_LD;
396 msg_type = GEN5_SAMPLER_MESSAGE_SAMPLE_RESINFO;
407 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD_COMPARE;
410 msg_type = BRW_SAMPLER_MESSAGE_SIMD4X2_SAMPLE_LOD;
416 msg_type
552 uint32_t msg_type; local
601 uint32_t msg_type; local
685 uint32_t msg_type; local
[all...]
/external/qemu/android/
H A Dsensors-port.c413 int msg_type,
418 switch (msg_type) {
424 E("Sensors: Unknown message type %d", msg_type);
410 _on_sensors_message(void* client_opaque, SDKCtlSocket* sdkctl, SDKCtlMessage* message, int msg_type, void* msg_data, int msg_size) argument
H A Dmultitouch-port.c310 int msg_type,
314 switch (msg_type) {
349 W("Multi-touch: Unknown message %d", msg_type);
307 _on_multitouch_message(void* client_opaque, SDKCtlSocket* sdkctl, SDKCtlMessage* message, int msg_type, void* msg_data, int msg_size) argument
/external/tcpdump/
H A Dprint-olsr.c92 u_int8_t msg_type; member in struct:olsr_msg
217 u_int msg_type, msg_len, msg_tlen, hello_len, prefix; local
254 msg_type = ptr.msg->msg_type;
258 if (msg_type == 0 || msg_len == 0) {
264 tok2str(olsr_msg_values, "Unknown", msg_type),
265 msg_type, ipaddr_string(ptr.msg->originator),
275 switch (msg_type) {
310 if (msg_type == OLSR_HELLO_MSG) {
332 if (msg_type
[all...]
H A Dprint-ldp.c503 u_short pdu_len,msg_len,msg_type,msg_tlen; local
545 msg_type=LDP_MASK_MSG_TYPE(EXTRACT_16BITS(ldp_msg_header->type));
551 msg_type),
552 msg_type,
568 switch(msg_type) {
H A Dprint-lmp.c53 u_int8_t msg_type; member in struct:lmp_common_header
394 tok2str(lmp_msg_type_values, "unknown (%u)",lmp_com_header->msg_type),
405 tok2str(lmp_msg_type_values, "unknown, type: %u",lmp_com_header->msg_type),
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_attr_build.c244 int wps_build_msg_type(struct wpabuf *msg, enum wps_msg_type msg_type) argument
246 wpa_printf(MSG_DEBUG, "WPS: * Message Type (%d)", msg_type);
249 wpabuf_put_u8(msg, msg_type);
H A Dwps_attr_parse.h18 const u8 *msg_type; /* 1 octet */ member in struct:wps_parse_attr
/external/wpa_supplicant_8/src/wps/
H A Dwps_attr_build.c244 int wps_build_msg_type(struct wpabuf *msg, enum wps_msg_type msg_type) argument
246 wpa_printf(MSG_DEBUG, "WPS: * Message Type (%d)", msg_type);
249 wpabuf_put_u8(msg, msg_type);
H A Dwps_attr_parse.h18 const u8 *msg_type; /* 1 octet */ member in struct:wps_parse_attr
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_attr_build.c244 int wps_build_msg_type(struct wpabuf *msg, enum wps_msg_type msg_type) argument
246 wpa_printf(MSG_DEBUG, "WPS: * Message Type (%d)", msg_type);
249 wpabuf_put_u8(msg, msg_type);
H A Dwps_attr_parse.h18 const u8 *msg_type; /* 1 octet */ member in struct:wps_parse_attr
/external/bluetooth/bluedroid/stack/avdt/
H A Davdt_msg.c1693 UINT8 msg_type; local
1710 AVDT_MSG_PRS_HDR(p, label, pkt_type, msg_type);
1712 /* AVDT_TRACE_DEBUG1("msg_type=%d", msg_type); */
1718 if (msg_type == AVDT_MSG_TYPE_GRJ)
1720 AVDT_TRACE_WARNING1("Dropping msg msg_type=%d", msg_type);
1724 else if ((msg_type == AVDT_MSG_TYPE_REJ) && (p_buf->len == AVDT_LEN_GEN_REJ))
1742 AVDT_TRACE_WARNING2("Dropping msg sig=%d msg_type:%d", sig, msg_type);
[all...]
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host_tcp.cc497 uint16 msg_type = base::NetToHost16(*reinterpret_cast<const uint16*>(data)); local
501 if ((msg_type & 0xC000) == 0) {
/external/libnfc-nxp/src/
H A DphHciNfc_Generic.c211 uint8_t msg_type,
831 uint8_t msg_type = 0; local
854 msg_type = (uint8_t) GET_BITS8( message->msg_header,
856 switch ( msg_type )
1255 uint8_t msg_type,
1264 HCP_MSG_TYPE_LEN, msg_type);
1302 uint8_t msg_type,
1309 phHciNfc_Build_HCPMessage( hcp_packet,msg_type,instruction );
1253 phHciNfc_Build_HCPMessage( phHciNfc_HCP_Packet_t *hcp_packet, uint8_t msg_type, uint8_t instruction ) argument
1298 phHciNfc_Build_HCPFrame( phHciNfc_HCP_Packet_t *hcp_packet, uint8_t chainbit, uint8_t pipe_id, uint8_t msg_type, uint8_t instruction ) argument
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Dasn_mime.c286 const char *msg_type=NULL; local
340 msg_type = "enveloped-data";
344 msg_type = "signed-receipt";
346 msg_type = "signed-data";
348 msg_type = "certs-only";
352 msg_type = "compressed-data";
360 if (msg_type)
361 BIO_printf(bio, " smime-type=%s;", msg_type);
/external/openssl/crypto/asn1/
H A Dasn_mime.c286 const char *msg_type=NULL; local
340 msg_type = "enveloped-data";
344 msg_type = "signed-receipt";
346 msg_type = "signed-data";
348 msg_type = "certs-only";
352 msg_type = "compressed-data";
360 if (msg_type)
361 BIO_printf(bio, " smime-type=%s;", msg_type);

Completed in 942 milliseconds

12