Home | History | Annotate | Download | only in wifi_hal

Lines Matching refs:mMsg

28     struct nl_msg *mMsg;
34 mMsg = msg;
39 /* don't destroy mMsg; it doesn't belong to us */
155 struct nl_msg *mMsg;
159 mMsg = NULL;
165 mMsg = NULL;
175 if (mMsg) {
176 nlmsg_free(mMsg);
177 mMsg = NULL;
182 return mMsg;
197 return nla_put(mMsg, attribute, sizeof(value), &value);
200 return nla_put(mMsg, attribute, sizeof(value), &value);
203 return nla_put(mMsg, attribute, sizeof(value), &value);
207 return nla_put(mMsg, attribute, sizeof(int32_t), &value);
211 return nla_put(mMsg, attribute, sizeof(value), &value);
214 return nla_put(mMsg, attribute, strlen(value) + 1, value);
217 return nla_put(mMsg, attribute, sizeof(mac_addr), value);
221 return nla_nest_start(mMsg, attribute);
224 nla_nest_end(mMsg, attr);
232 return nla_put(mMsg, attribute, len, data);
243 WifiRequest mMsg;
249 : mMsg(getHalInfo(handle)->nl80211_family_id), mId(id)
257 : mMsg(getHalInfo(iface)->nl80211_family_id, getIfaceInfo(iface)->id), mId(id)