Home | History | Annotate | Download | only in tests

Lines Matching refs:g_file_open_tmp

940   fd = g_file_open_tmp (template, &name_used, &error);
944 g_print ("g_file_open_tmp works even if template contains '%s'\n", G_DIR_SEPARATOR_S);
946 g_print ("g_file_open_tmp correctly returns error: %s\n", error->message);
953 fd = g_file_open_tmp (template, &name_used, &error);
957 g_print ("g_file_open_tmp works even if template contains '/'\n");
959 g_print ("g_file_open_tmp correctly returns error: %s\n", error->message);
966 fd = g_file_open_tmp (template, &name_used, &error);
968 g_error ("g_file_open_tmp didn't work for template '%s': %s\n", template, error->message);
970 g_print ("g_file_open_tmp for template '%s' used name '%s'\n", template, name_used);
975 fd = g_file_open_tmp (NULL, &name_used, &error);
977 g_error ("g_file_open_tmp didn't work for a NULL template: %s\n", error->message);