Lines Matching refs:mMsg
28 struct nl_msg *mMsg; variable
34 mMsg = msg; in WifiEvent()
161 struct nl_msg *mMsg; variable
165 mMsg = NULL; in WifiRequest()
171 mMsg = NULL; in WifiRequest()
181 if (mMsg) { in destroy()
182 nlmsg_free(mMsg); in destroy()
183 mMsg = NULL; in destroy()
188 return mMsg; in getMessage()
205 return nla_put(mMsg, attribute, len, ptr); in put()
208 return nla_put(mMsg, attribute, sizeof(value), &value); in put_s8()
211 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u8()
214 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u16()
217 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u32()
220 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u64()
223 return nla_put(mMsg, attribute, strlen(value) + 1, value); in put_string()
226 return nla_put(mMsg, attribute, sizeof(mac_addr), value); in put_addr()
230 return nla_nest_start(mMsg, attribute); in attr_start()
233 nla_nest_end(mMsg, attr); in attr_end()
249 WifiRequest mMsg; variable
256 : mType(type), mMsg(getHalInfo(handle)->nl80211_family_id), mId(id), mRefs(1) in WifiCommand()
264 : mType(type), mMsg(getHalInfo(iface)->nl80211_family_id, getIfaceInfo(iface)->id), in WifiCommand()