Lines Matching refs:hd
360 ndr_handle_t *hd; in winreg_alloc_id() local
372 if ((hd = ndr_hdlookup(mxa, id)) != NULL) in winreg_alloc_id()
373 hd->nh_data_free = free; in winreg_alloc_id()
381 ndr_handle_t *hd; in winreg_dealloc_id() local
383 if ((hd = ndr_hdlookup(mxa, id)) != NULL) { in winreg_dealloc_id()
384 free(hd->nh_data); in winreg_dealloc_id()
385 hd->nh_data = NULL; in winreg_dealloc_id()
399 ndr_handle_t *hd; in winreg_s_CreateKey() local
414 hd = ndr_hdlookup(mxa, id); in winreg_s_CreateKey()
415 if (hd == NULL) { in winreg_s_CreateKey()
637 ndr_handle_t *hd; in winreg_s_EnumKey() local
643 if ((hd = ndr_hdlookup(mxa, id)) != NULL) in winreg_s_EnumKey()
644 name = hd->nh_data; in winreg_s_EnumKey()
646 if (hd == NULL || name == NULL) { in winreg_s_EnumKey()
816 ndr_handle_t *hd; in winreg_s_OpenKey() local
823 if ((hd = ndr_hdlookup(mxa, id)) != NULL) in winreg_s_OpenKey()
824 subkey = hd->nh_data; in winreg_s_OpenKey()