Searched refs:message_type (Results 1 - 25 of 41) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dif_hippi.h88 __u8 message_type:4; member in struct:hippi_le_hdr
90 __u8 message_type:4;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/
H A Ddhcp.c184 const int message_type = get_dhcp_message_type (&df->dhcp, optlen); local
185 if (message_type == DHCPACK || message_type == DHCPOFFER)
198 if (message_type == DHCPACK)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/tools/
H A Ddbus-print-message.c30 type_to_name (int message_type) argument
32 switch (message_type)
363 int message_type; local
365 message_type = dbus_message_get_type (message);
372 type_to_name (message_type),
376 switch (message_type)
H A Ddbus-send.c241 int message_type = DBUS_MESSAGE_TYPE_SIGNAL; local
286 message_type = DBUS_MESSAGE_TYPE_METHOD_CALL;
321 message_type = dbus_message_type_from_string (type_str);
322 if (!(message_type == DBUS_MESSAGE_TYPE_METHOD_CALL ||
323 message_type == DBUS_MESSAGE_TYPE_SIGNAL))
352 if (message_type == DBUS_MESSAGE_TYPE_METHOD_CALL)
371 else if (message_type == DBUS_MESSAGE_TYPE_SIGNAL)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/bus/
H A Dpolicy.h59 int message_type; member in struct:BusPolicyRule::__anon1644::__anon1645
74 int message_type; member in struct:BusPolicyRule::__anon1644::__anon1646
H A Dsignals.c38 int message_type; member in struct:BusMatchRule
142 dbus_message_type_to_string (rule->message_type)))
290 rule->message_type = type;
1212 int message_type,
1218 _dbus_assert (message_type >= 0);
1219 _dbus_assert (message_type < DBUS_NUM_MESSAGE_TYPES);
1221 _dbus_verbose ("Looking up rules for message_type %d, interface %s\n",
1222 message_type,
1225 p = matchmaker->rules_by_type + message_type;
1252 _dbus_verbose ("Adding list for type %d, iface %s\n", message_type,
1211 bus_matchmaker_get_rules(BusMatchmaker *matchmaker, int message_type, const char *interface, dbus_bool_t create) argument
1269 bus_matchmaker_gc_rules(BusMatchmaker *matchmaker, int message_type, const char *interface, DBusList **rules) argument
[all...]
H A Dpolicy.c56 rule->d.send.message_type = DBUS_MESSAGE_TYPE_INVALID;
64 rule->d.receive.message_type = DBUS_MESSAGE_TYPE_INVALID;
813 rule->d.send.message_type == DBUS_MESSAGE_TYPE_INVALID &&
822 rule->d.receive.message_type == DBUS_MESSAGE_TYPE_INVALID &&
903 if (rule->d.send.message_type != DBUS_MESSAGE_TYPE_INVALID)
905 if (dbus_message_get_type (message) != rule->d.send.message_type)
1085 if (rule->d.receive.message_type != DBUS_MESSAGE_TYPE_INVALID)
1087 if (dbus_message_get_type (message) != rule->d.receive.message_type)
H A Dconfig-parser.c1337 int message_type; local
1352 message_type = DBUS_MESSAGE_TYPE_INVALID;
1355 message_type = dbus_message_type_from_string (send_type);
1356 if (message_type == DBUS_MESSAGE_TYPE_INVALID)
1398 rule->d.send.message_type = message_type;
1418 int message_type; local
1433 message_type = DBUS_MESSAGE_TYPE_INVALID;
1436 message_type = dbus_message_type_from_string (receive_type);
1437 if (message_type
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Deggtrayicon.c183 xev->xclient.message_type == icon->manager_atom &&
236 ev.message_type = icon->system_tray_opcode_atom;
406 ev.message_type = XInternAtom (xdisplay,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Deggtrayicon.c298 xev->xclient.message_type == icon->manager_atom &&
361 ev.message_type = icon->system_tray_opcode_atom;
586 ev.message_type = XInternAtom (xdisplay,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/802/
H A Dhippi.c67 hip->le.message_type = 0; /* Data PDU */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Ds3_both.c372 if ((mt >= 0) && (s->s3->tmp.message_type != mt))
443 s->s3->tmp.message_type= *(p++);
H A Ds3_clnt.c644 if ( s->s3->tmp.message_type == DTLS1_MT_HELLO_VERIFY_REQUEST)
660 if ( s->s3->tmp.message_type != SSL3_MT_SERVER_HELLO)
824 if (s->s3->tmp.message_type == SSL3_MT_SERVER_KEY_EXCHANGE)
830 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE)
1022 if (s->s3->tmp.message_type != SSL3_MT_SERVER_KEY_EXCHANGE)
1465 if (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE)
1471 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_REQUEST)
H A Ds23_srvr.c467 s->s3->tmp.message_type=SSL3_MT_CLIENT_HELLO;
H A Dssl3.h405 int message_type; member in struct:ssl3_state_st::__anon7235
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-message.h70 DBusMessage* dbus_message_new (int message_type);
H A Ddbus-marshal-header.c517 * @param message_type the message type
528 int message_type,
542 _dbus_assert (((interface || message_type != DBUS_MESSAGE_TYPE_SIGNAL) && member) ||
560 v_BYTE = message_type;
526 _dbus_header_create(DBusHeader *header, int byte_order, int message_type, const char *destination, const char *path, const char *interface, const char *member, const char *error_name) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/tipc/
H A Dport.c762 u32 message_type; local
768 message_type = msg_type(msg);
769 if (message_type > TIPC_DIRECT_MSG)
786 switch (message_type) {
832 dseq.upper = (message_type == TIPC_NAMED_MSG)
846 switch (message_type) {
887 dseq.upper = (message_type == TIPC_NAMED_MSG)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Ds3_both.c352 if ((mt >= 0) && (s->s3->tmp.message_type != mt)) {
410 s->s3->tmp.message_type = *(p++);
H A Ds3_clnt.c921 if (s->s3->tmp.message_type == DTLS1_MT_HELLO_VERIFY_REQUEST) {
934 if (s->s3->tmp.message_type != SSL3_MT_SERVER_HELLO) {
1193 if ((s->s3->tmp.message_type == SSL3_MT_SERVER_KEY_EXCHANGE) ||
1195 (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE))) {
1200 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE) {
1404 if (s->s3->tmp.message_type != SSL3_MT_SERVER_KEY_EXCHANGE) {
2069 if (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE) {
2082 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_REQUEST) {
2360 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_STATUS) {
3709 if (s->s3->tmp.message_type
[all...]
H A Dd1_both.c497 if ((mt >= 0) && (s->s3->tmp.message_type != mt)) {
520 if (mt >= 0 && s->s3->tmp.message_type != mt) {
593 s->s3->tmp.message_type = msg_hdr->type;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Dutilsx11.cpp243 xev.xclient.message_type = _WIN_LAYER;
349 xev.xclient.message_type = _NET_WM_STATE;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Ds3_both.c352 if ((mt >= 0) && (s->s3->tmp.message_type != mt)) {
410 s->s3->tmp.message_type = *(p++);
H A Ds3_clnt.c921 if (s->s3->tmp.message_type == DTLS1_MT_HELLO_VERIFY_REQUEST) {
934 if (s->s3->tmp.message_type != SSL3_MT_SERVER_HELLO) {
1193 if ((s->s3->tmp.message_type == SSL3_MT_SERVER_KEY_EXCHANGE) ||
1195 (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE))) {
1200 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE) {
1404 if (s->s3->tmp.message_type != SSL3_MT_SERVER_KEY_EXCHANGE) {
2069 if (s->s3->tmp.message_type == SSL3_MT_SERVER_DONE) {
2082 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_REQUEST) {
2360 if (s->s3->tmp.message_type != SSL3_MT_CERTIFICATE_STATUS) {
3709 if (s->s3->tmp.message_type
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dssl3.h405 int message_type; member in struct:ssl3_state_st::__anon7221

Completed in 233 milliseconds

12