hosts             402 lib/widget/input_complete.c fetch_hosts (const char *filename, GPtrArray *hosts)
hosts             438 lib/widget/input_complete.c             fetch_hosts (includefile, hosts);
hosts             463 lib/widget/input_complete.c             if (!g_ptr_array_find_with_equal_func (hosts, name, host_equal_func, NULL))
hosts             464 lib/widget/input_complete.c                 g_ptr_array_add (hosts, name);
hosts             478 lib/widget/input_complete.c     static GPtrArray *hosts = NULL;
hosts             490 lib/widget/input_complete.c         if (hosts != NULL)
hosts             491 lib/widget/input_complete.c             g_ptr_array_free (hosts, TRUE);
hosts             492 lib/widget/input_complete.c         hosts = g_ptr_array_new_with_free_func (g_free);
hosts             494 lib/widget/input_complete.c         fetch_hosts (p != NULL ? p : "/etc/hosts", hosts);
hosts             500 lib/widget/input_complete.c     for (; host_p < hosts->len; host_p++)
hosts             504 lib/widget/input_complete.c         if (strncmp (text + textstart, g_ptr_array_index (hosts, host_p), textlen) == 0)
hosts             508 lib/widget/input_complete.c     if (host_p == hosts->len)
hosts             510 lib/widget/input_complete.c         g_ptr_array_free (hosts, TRUE);
hosts             511 lib/widget/input_complete.c         hosts = NULL;
hosts             522 lib/widget/input_complete.c         g_string_append (temp, g_ptr_array_index (hosts, host_p));