Home
last modified time | relevance | path

Searched refs:hk (Results 1 – 25 of 36) sorted by relevance

12

/netbsd/src/external/bsd/wpa/dist/wpa_supplicant/
Dconfig_winreg.c50 static int wpa_config_read_blobs(struct wpa_config *config, HKEY hk) in wpa_config_read_blobs() argument
58 ret = RegOpenKeyEx(hk, TEXT("blobs"), 0, KEY_QUERY_VALUE, &bhk); in wpa_config_read_blobs()
119 static int wpa_config_read_reg_dword(HKEY hk, const TCHAR *name, int *_val) in wpa_config_read_reg_dword() argument
125 ret = RegQueryValueEx(hk, name, NULL, NULL, (LPBYTE) &val, &buflen); in wpa_config_read_reg_dword()
136 static char * wpa_config_read_reg_string(HKEY hk, const TCHAR *name) in wpa_config_read_reg_string() argument
143 ret = RegQueryValueEx(hk, name, NULL, NULL, NULL, &buflen); in wpa_config_read_reg_string()
150 ret = RegQueryValueEx(hk, name, NULL, NULL, (LPBYTE) val, &buflen); in wpa_config_read_reg_string()
163 static int wpa_config_read_global_uuid(struct wpa_config *config, HKEY hk) in wpa_config_read_global_uuid() argument
168 str = wpa_config_read_reg_string(hk, TEXT("uuid")); in wpa_config_read_global_uuid()
182 HKEY hk) in wpa_config_read_global_os_version() argument
[all …]
Dmain_winsvc.c64 HKEY hk; in read_interface() local
72 ret = RegOpenKeyEx(_hk, name, 0, KEY_QUERY_VALUE, &hk); in read_interface()
82 ret = RegQueryValueEx(hk, TEXT("ctrl_interface"), NULL, NULL, in read_interface()
93 ret = RegQueryValueEx(hk, TEXT("adapter"), NULL, NULL, in read_interface()
104 ret = RegQueryValueEx(hk, TEXT("config"), NULL, NULL, in read_interface()
115 ret = RegQueryValueEx(hk, TEXT("skip_on_error"), NULL, NULL, in read_interface()
120 RegCloseKey(hk); in read_interface()
139 HKEY hk, ihk; in wpa_supplicant_thread() local
150 0, KEY_QUERY_VALUE, &hk); in wpa_supplicant_thread()
157 ret = RegQueryValueEx(hk, TEXT("debug_level"), NULL, NULL, in wpa_supplicant_thread()
[all …]
/netbsd/src/external/gpl3/binutils/dist/gold/
Dstringpool.cc283 Hashkey hk(s, length); in add_with_length() local
284 typename String_set_type::const_iterator p = this->string_set_.find(hk); in add_with_length()
294 hk.string = this->add_string(s, length); in add_with_length()
298 std::pair<Hashkey, Hashval> element(hk, k); in add_with_length()
305 return hk.string; in add_with_length()
313 Hashkey hk(s); in find() local
314 typename String_set_type::const_iterator p = this->string_set_.find(hk); in find()
464 Hashkey hk(s, length); in get_offset_with_length() local
465 typename String_set_type::const_iterator p = this->string_set_.find(hk); in get_offset_with_length()
Dstringpool.h363 operator()(const Hashkey& hk) const in operator()
364 { return hk.hash_code; } in operator()
/netbsd/src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/
Daddinterface.cpp104 HKEY hk, ihk; in addRegistryInterface() local
112 &hk); in addRegistryInterface()
123 ret = RegEnumKeyEx(hk, i, name, &namelen, NULL, NULL, NULL, in addRegistryInterface()
153 ret = RegCreateKeyEx(hk, name, 0, NULL, 0, KEY_WRITE, NULL, &ihk, in addRegistryInterface()
155 RegCloseKey(hk); in addRegistryInterface()
/netbsd/src/external/lgpl3/gmp/dist/mpz/
Dbin_ui.c304 unsigned long int hk; in mpz_raising_fac() local
307 hk = k >> 1; in mpz_raising_fac()
308 mpz_hmul_nbnpk (p, n, hk, t); in mpz_raising_fac()
312 mpz_add_ui (t, t, hk + 1); in mpz_raising_fac()
320 if ((APARTAJ_KALKULOJ > 3) || (hk > 1)) in mpz_raising_fac()
323 rek_raising_fac (r, p, hk - 1, 0, t, n); in mpz_raising_fac()
Dbin_uiui.c417 unsigned long int hk; in mpz_smallkdc_bin_uiui() local
419 hk = k >> 1; in mpz_smallkdc_bin_uiui()
421 if ((! BIN_UIUI_RECURSIVE_SMALLDC) || hk <= ODD_FACTORIAL_TABLE_LIMIT) in mpz_smallkdc_bin_uiui()
422 mpz_smallk_bin_uiui (r, n, hk); in mpz_smallkdc_bin_uiui()
424 mpz_smallkdc_bin_uiui (r, n, hk); in mpz_smallkdc_bin_uiui()
425 k -= hk; in mpz_smallkdc_bin_uiui()
426 n -= hk; in mpz_smallkdc_bin_uiui()
451 fac2bin[k - ODD_CENTRAL_BINOMIAL_OFFSET] - (k != hk)); in mpz_smallkdc_bin_uiui()
/netbsd/src/sys/dev/ic/
Dath.c262 #define KEYPRINTF(sc, ix, hk, mac) do { \ argument
264 ath_keyprint(__func__, ix, hk, mac); \
1506 const HAL_KEYVAL *hk, const u_int8_t mac[IEEE80211_ADDR_LEN]) in ath_keyprint() argument
1518 printf("%s: [%02u] %-7s ", tag, ix, ciphers[hk->kv_type]); in ath_keyprint()
1519 for (i = 0, n = hk->kv_len; i < n; i++) in ath_keyprint()
1520 printf("%02x", hk->kv_val[i]); in ath_keyprint()
1522 if (hk->kv_type == HAL_CIPHER_TKIP) { in ath_keyprint()
1524 for (i = 0; i < sizeof(hk->kv_mic); i++) in ath_keyprint()
1525 printf("%02x", hk->kv_mic[i]); in ath_keyprint()
1538 HAL_KEYVAL *hk, const u_int8_t mac[IEEE80211_ADDR_LEN]) in ath_keyset_tkip() argument
[all …]
/netbsd/src/etc/etc.vax/
DMAKEDEV.conf73 hp[0-9]*|hk[0-9]*|up[0-9]*|ra[0-9]*|racd[0-9]*|rl[0-9]*|rb[0-9]*|rd[0-9]*|rx[0-9]*)
76 hk*) name=hk; unit=${i#hk}; blk=3; chr=11;;
/netbsd/src/sys/arch/vax/floppy/
Ddefboo.hk1 ! $NetBSD: defboo.hk,v 1.2 1998/01/05 20:52:06 perry Exp $
DMakefile8 DEFBOO= defboo.hk defboo.hp defboo.ra defboo.up
/netbsd/src/external/bsd/flex/dist/doc/
DMakefile.am7 CLEANFILES = *.aux *.cp *.cps *.fn *.fns *.hk *.hks *.ky *.log \
DMakefile.in367 CLEANFILES = *.aux *.cp *.cps *.fn *.fns *.hk *.hks *.ky *.log \
/netbsd/src/share/man/man4/man4.vax/
DMakefile9 hdh.4 hk.4 hp.4 ht.4 hy.4 \
/netbsd/src/sys/arch/vax/consolerl/
DMakefile6 DEFBOOS= defboo.hk defboo.hp defboo.ra defboo.up
Ddefboo.hk1 ! $NetBSD: defboo.hk,v 1.2 1998/01/05 20:51:56 perry Exp $
/netbsd/src/external/bsd/wpa/dist/src/eap_peer/
Dtncc.c882 HKEY hk, hk2; in tncc_read_config_reg() local
893 &hk); in tncc_read_config_reg()
902 ret = RegEnumKeyEx(hk, i, name, &namelen, NULL, NULL, NULL, in tncc_read_config_reg()
920 ret = RegOpenKeyEx(hk, name, 0, KEY_QUERY_VALUE, &hk2); in tncc_read_config_reg()
988 RegCloseKey(hk); in tncc_read_config_reg()
/netbsd/src/share/doc/smm/config/
Dspell.ok166 hk
/netbsd/src/external/bsd/wpa/dist/src/drivers/
Ddriver_ndis.c2409 HKEY hk, hk2; in wpa_driver_ndis_set_wzc() local
2439 ret = RegOpenKeyEx(HKEY_LOCAL_MACHINE, DEVLOAD_ACTIVE_KEY, 0, 0, &hk); in wpa_driver_ndis_set_wzc()
2448 ret = RegEnumKeyEx(hk, i, keyname, &len, NULL, NULL, NULL, in wpa_driver_ndis_set_wzc()
2453 RegCloseKey(hk); in wpa_driver_ndis_set_wzc()
2457 ret = RegOpenKeyEx(hk, keyname, 0, 0, &hk2); in wpa_driver_ndis_set_wzc()
2482 RegCloseKey(hk); in wpa_driver_ndis_set_wzc()
/netbsd/src/sys/net/
Dif_ethersubr.c1125 khook_t *hk; in ether_ifdetachhook_establish() local
1131 hk = simplehook_establish(ec->ec_ifdetach_hooks, in ether_ifdetachhook_establish()
1134 return (void *)hk; in ether_ifdetachhook_establish()
Dif.c2438 khook_t *hk; in if_linkstate_change_establish() local
2440 hk = simplehook_establish(ifp->if_linkstate_hooks, fn, arg); in if_linkstate_change_establish()
2442 return (void *)hk; in if_linkstate_change_establish()
/netbsd/src/external/gpl3/gcc/dist/libgcc/config/avr/
Dt-avr162 hk k uhk uk
/netbsd/src/share/man/tools/
Dnewsp.errs2952 hk?a
2953 hk?b
2954 hk?c
2955 hk?g
/netbsd/src/external/gpl3/gcc/dist/gcc/config/arm/
Dthumb1.md63 [(set (match_operand:SI 0 "register_operand" "=l,l,l,*rk,*hk,l,k,l,l,l")
65 (match_operand:SI 2 "nonmemory_operand" "I,J,lL,*hk,*rk,M,O,Pa,Pb,Pc")))]
Dvfp.md279 [(set (match_operand:SI 0 "nonimmediate_operand" "=rk,r,l,r,r,l,*hk,m,*m,*t,\
281 (match_operand:SI 1 "general_operand" "rk,I,Py,K,j,mi,*mi,l,*hk,r,*t,\

12