Lines Matching refs:mMsg
28 struct nl_msg *mMsg; variable
34 mMsg = msg; in WifiEvent()
155 struct nl_msg *mMsg; variable
159 mMsg = NULL; in WifiRequest()
165 mMsg = NULL; in WifiRequest()
175 if (mMsg) { in destroy()
176 nlmsg_free(mMsg); in destroy()
177 mMsg = NULL; in destroy()
182 return mMsg; in getMessage()
194 return nla_put(mMsg, attribute, len, ptr); in put()
197 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u8()
200 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u16()
203 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u32()
206 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u64()
209 return nla_put(mMsg, attribute, strlen(value) + 1, value); in put_string()
212 return nla_put(mMsg, attribute, sizeof(mac_addr), value); in put_addr()
216 return nla_nest_start(mMsg, attribute); in attr_start()
219 nla_nest_end(mMsg, attr); in attr_end()
235 WifiRequest mMsg; variable
242 : mType(type), mMsg(getHalInfo(handle)->nl80211_family_id), mId(id), mRefs(1) in WifiCommand()
250 : mType(type), mMsg(getHalInfo(iface)->nl80211_family_id, getIfaceInfo(iface)->id), in WifiCommand()