/external/nanopb-c/examples/using_union_messages/ |
encode.c | 48 int msgtype = atoi(argv[1]); local 49 if (msgtype == 1) 55 else if (msgtype == 2) 61 else if (msgtype == 3) 69 fprintf(stderr, "Unknown message type: %d\n", msgtype);
|
/bionic/libc/kernel/uapi/scsi/ |
scsi_netlink.h | 32 uint16_t msgtype; member in struct:scsi_nl_hdr 57 #define INIT_SCSI_NL_HDR(hdr,t,mtype,mlen) { (hdr)->version = SCSI_NL_VERSION; (hdr)->transport = t; (hdr)->magic = SCSI_NL_MAGIC; (hdr)->msgtype = mtype; (hdr)->msglen = mlen; }
|
/external/kernel-headers/original/uapi/scsi/ |
scsi_netlink.h | 46 uint16_t msgtype; member in struct:scsi_nl_hdr 61 /* Transport-based scsi_nl_hdr->msgtype values are defined in each transport */ 64 * GENERIC SCSI scsi_nl_hdr->msgtype Values 69 /* SCSI_NL_SHOST_VENDOR msgtype is kernel->user and user->kernel */ 118 (hdr)->msgtype = mtype; \
|
/external/libnl/lib/ |
cache_mngt.c | 51 * @arg msgtype netlink message type 59 struct nl_cache_ops *nl_cache_ops_associate(int protocol, int msgtype) 69 if (ops->co_msgtypes[i].mt_id == msgtype) 79 * @arg msgtype netlink message type 86 struct nl_msgtype *nl_msgtype_lookup(struct nl_cache_ops *ops, int msgtype) 91 if (ops->co_msgtypes[i].mt_id == msgtype)
|
/system/extras/tests/net_test/ |
netlink.py | 185 def _ParseNLMsg(self, data, msgtype): 194 nlmsg, data = cstruct.Read(data, msgtype) 204 def _GetMsg(self, msgtype): 208 return self._ParseNLMsg(data, msgtype)[0] 210 def _GetMsgList(self, msgtype, data, expect_done): 213 msg, data = self._ParseNLMsg(data, msgtype) 221 def _Dump(self, command, msg, msgtype, attrs): 227 msgtype: A cstruct.Struct, the data type to parse the dump results as. 231 A list of (msg, attrs) tuples where msg is of type msgtype and attrs is 253 out.extend(self._GetMsgList(msgtype, data, False) [all...] |
/external/dbus/bus/ |
selinux.h | 59 const char *msgtype, /* Supplementary audit data */
|
selinux.c | 541 const char *msgtype, 569 if (!_dbus_string_append (&auxdata, "msgtype=")) 572 if (!_dbus_string_append (&auxdata, msgtype))
|
/external/wpa_supplicant_8/src/ap/ |
dhcp_snoop.c | 64 int res, msgtype = 0, prefixlen = 32; local 106 msgtype = opt[2]; 113 if (msgtype == DHCPACK) {
|
/system/core/libsysutils/src/ |
NetlinkEvent.cpp | 175 const char *msgtype = rtMessageName(type); local 183 if (maybeLogDuplicateAttribute(*addrstr != '\0', "IFA_ADDRESS", msgtype)) 191 RTA_PAYLOAD(rta), msgtype); 199 RTA_PAYLOAD(rta), msgtype); 210 SLOGD("Unknown ifindex %d in %s", ifaddr->ifa_index, msgtype); 215 if (maybeLogDuplicateAttribute(cacheinfo, "IFA_CACHEINFO", msgtype)) 220 RTA_PAYLOAD(rta), sizeof(cacheinfo), msgtype); 229 SLOGE("No IFA_ADDRESS in %s\n", msgtype);
|
/external/toybox/toys/pending/ |
dhcp6.c | 98 uint8_t msgtype, transaction_id[3], options[524]; member in struct:dhcp6_msg_s 286 mesg.msgtype = type; 305 uint8_t *get_msg_ptr(uint8_t *data, int data_length, int msgtype) 310 if (type == msgtype) return data; 312 while (type != msgtype) { 318 if (type == msgtype) return data; 626 if (mymsg->dhcp6.msgtype == DHCP6ADVERTISE ) { 647 if (mymsg->dhcp6.msgtype == DHCP6REPLY) {
|
dhcpd.c | 157 uint8_t msgtype; member in struct:dhcp6_msg_s 971 if (gstate.rcvd.rcvd_pkt6.msgtype < 1) { 1609 uint8_t *optptr, msgtype = 0; local [all...] |
dhcp.c | 982 // sends dhcp msg of MSGTYPE 983 static int dhcpc_sendmsg(int msgtype) 1001 pend = dhcpc_addmsgtype(pend, msgtype); 1005 switch (msgtype) { [all...] |
/external/curl/lib/ |
openldap.c | 448 int binary = 0, msgtype; local 450 msgtype = ldap_msgtype(ent); 451 if(msgtype == LDAP_RES_SEARCH_RESULT) { 477 else if(msgtype != LDAP_RES_SEARCH_ENTRY)
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
srv.h | 311 int __cdecl srv_sendmsg(SRV_PROC *srvproc,int msgtype,__LONG32 msgnum,BYTE msgclass,BYTE state,char *rpcname,int rpcnamelen,USHORT linenum,char *message,int msglen);
|
/external/autotest/server/ |
server_job.py | [all...] |