Lines Matching refs:namelen
69 DWORD namelen, datalen, type; in wpa_config_read_blobs() local
71 namelen = TNAMELEN; in wpa_config_read_blobs()
73 ret = RegEnumValue(bhk, i, name, &namelen, NULL, &type, in wpa_config_read_blobs()
85 if (namelen >= TNAMELEN) in wpa_config_read_blobs()
86 namelen = TNAMELEN - 1; in wpa_config_read_blobs()
87 name[namelen] = TEXT('\0'); in wpa_config_read_blobs()
314 DWORD namelen, datalen, type; in wpa_config_read_network() local
316 namelen = 255; in wpa_config_read_network()
318 ret = RegEnumValue(nhk, i, name, &namelen, NULL, &type, in wpa_config_read_network()
330 if (namelen >= 255) in wpa_config_read_network()
331 namelen = 255 - 1; in wpa_config_read_network()
332 name[namelen] = TEXT('\0'); in wpa_config_read_network()
392 DWORD namelen; in wpa_config_read_networks() local
394 namelen = 255; in wpa_config_read_networks()
395 ret = RegEnumKeyEx(nhk, i, name, &namelen, NULL, NULL, NULL, in wpa_config_read_networks()
407 if (namelen >= 255) in wpa_config_read_networks()
408 namelen = 255 - 1; in wpa_config_read_networks()
409 name[namelen] = '\0'; in wpa_config_read_networks()
657 DWORD namelen; in wpa_config_delete_subkeys() local
659 namelen = 255; in wpa_config_delete_subkeys()
660 ret = RegEnumKeyEx(nhk, i, name, &namelen, NULL, NULL, NULL, in wpa_config_delete_subkeys()
672 if (namelen >= 255) in wpa_config_delete_subkeys()
673 namelen = 255 - 1; in wpa_config_delete_subkeys()
674 name[namelen] = TEXT('\0'); in wpa_config_delete_subkeys()