Lines Matching refs:tokens
576 gchar **tokens; in hal_util_grep_string_elem_from_file() local
580 tokens = NULL; in hal_util_grep_string_elem_from_file()
585 tokens = g_strsplit_set (line, " \t:", 0); in hal_util_grep_string_elem_from_file()
586 for (i = 0, j = 0; tokens[i] != NULL; i++) { in hal_util_grep_string_elem_from_file()
587 if (strlen (tokens[i]) == 0) in hal_util_grep_string_elem_from_file()
590 strncpy (buf, tokens[i], sizeof (buf)); in hal_util_grep_string_elem_from_file()
598 if (tokens != NULL) in hal_util_grep_string_elem_from_file()
599 g_strfreev (tokens); in hal_util_grep_string_elem_from_file()
754 gchar **tokens; in hal_util_set_bool_elem_from_file() local
758 tokens = NULL; in hal_util_set_bool_elem_from_file()
763 tokens = g_strsplit_set (line, " \t:", 0); in hal_util_set_bool_elem_from_file()
765 for (i = 0, j = 0; tokens[i] != NULL; i++) { in hal_util_set_bool_elem_from_file()
766 if (strlen (tokens[i]) == 0) in hal_util_set_bool_elem_from_file()
769 hal_device_property_set_bool (d, key, strcmp (tokens[i], expected) == 0); in hal_util_set_bool_elem_from_file()
778 if (tokens != NULL) in hal_util_set_bool_elem_from_file()
779 g_strfreev (tokens); in hal_util_set_bool_elem_from_file()