Lines Matching refs:hostf
44 static FILE *hostf = NULL; variable
105 if (hostf == NULL) in bt_gethostent()
106 hostf = fopen(_PATH_BT_HOSTS, "r"); in bt_gethostent()
108 if (hostf == NULL) { in bt_gethostent()
113 if ((p = fgets(buf, sizeof(buf), hostf)) == NULL) { in bt_gethostent()
157 if (hostf == NULL) in bt_sethostent()
158 hostf = fopen(_PATH_BT_HOSTS, "r"); in bt_sethostent()
160 rewind(hostf); in bt_sethostent()
168 if (hostf != NULL && host_stayopen == 0) { in bt_endhostent()
169 (void) fclose(hostf); in bt_endhostent()
170 hostf = NULL; in bt_endhostent()