HomeSort by: relevance | last modified time | path
    Searched defs:tmpkey (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/net80211/
ieee80211_ioctl.c 1322 u_int8_t tmpkey[IEEE80211_KEYBUF_SIZE]; local in function:ieee80211_ioctl_get80211_fbsd
1365 memcpy(tmpkey, ic->ic_nw_keys[kid].wk_key, len);
1367 memset(tmpkey, 0, len);
1370 error = copyout(tmpkey, ireq->i_data, len);
2045 u_int8_t tmpkey[IEEE80211_KEYBUF_SIZE]; local in function:ieee80211_ioctl_set80211
2100 if (ireq->i_len > sizeof(tmpkey))
2102 memset(tmpkey, 0, sizeof(tmpkey));
2103 error = copyin(ireq->i_data, tmpkey, ireq->i_len);
2111 memcpy(k->wk_key, tmpkey, sizeof(tmpkey))
2574 u_int8_t tmpkey[IEEE80211_WEP_NKID][IEEE80211_KEYBUF_SIZE]; local in function:ieee80211_ioctl
    [all...]
  /src/common/lib/libprop/
prop_dictionary.c 1293 char *tmpkey; local in function:_prop_dictionary_internalize
1308 tmpkey = _PROP_MALLOC(PDK_MAXKEY + 1, M_TEMP);
1309 if (tmpkey == NULL) {
1319 return _prop_dictionary_internalize_body(stack, obj, ctx, tmpkey);
1327 char *tmpkey = data; local in function:_prop_dictionary_internalize_continue
1329 _PROP_ASSERT(tmpkey != NULL);
1332 prop_dictionary_set(dict, tmpkey, child) == false) {
1333 _PROP_FREE(tmpkey, M_TEMP);
1369 return _prop_dictionary_internalize_body(stack, obj, ctx, tmpkey);
1374 struct _prop_object_internalize_context *ctx, char *tmpkey)
    [all...]

Completed in 43 milliseconds