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()
200 return nla_put(mMsg, attribute, len, ptr); in put()
203 return nla_put(mMsg, attribute, sizeof(value), &value); in put_s8()
206 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u8()
209 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u16()
212 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u32()
215 return nla_put(mMsg, attribute, sizeof(value), &value); in put_u64()
218 return nla_put(mMsg, attribute, strlen(value) + 1, value); in put_string()
221 return nla_put(mMsg, attribute, sizeof(mac_addr), value); in put_addr()
225 return nla_nest_start(mMsg, attribute); in attr_start()
228 nla_nest_end(mMsg, attr); in attr_end()
244 WifiRequest mMsg; variable
251 : mType(type), mMsg(getHalInfo(handle)->nl80211_family_id), mId(id), mRefs(1) in WifiCommand()
259 : mType(type), mMsg(getHalInfo(iface)->nl80211_family_id, getIfaceInfo(iface)->id), in WifiCommand()