Lines Matching refs:vfprintf
53 int result = vfprintf(file, format, ap);
57 t_error("%s vfprintf get result is %d not less 0", func_name, result);
61 t_error("%s vfprintf get is '%s' not '%s'", func_name, buffer, want_reuslt);
74 int result = vfprintf(file, format, ap);
78 t_error("%s vfprintf get result is %d not less 0", func_name, result);
82 t_error("%s vfprintf get is '%s'", func_name, buffer);
91 * @tc.desc : Format the output string through vfprintf, the formatted part is a number
94 vfprintf_test("/data/vfprintf.txt", "value is %s and %s", "vfprintf_0100", "value is qwe and 1", "qwe", "1");
97 * @tc.desc : Format the output string through vfprintf, the formatted part is a string
100 vfprintf_test("/data/vfprintf.txt", "value is %d and %d", "vfprintf_0200", "value is 1 and 1", 1, 1);
103 * @tc.desc : When calling vfprintf, the parameters passed in exceeds the number of formats to be formatted
106 vfprintf_test("/data/vfprintf.txt", "value is %d", "vfprintf_0300", "value is 1", 1, 1);
109 * @tc.desc : The parameters passed in when calling vfprintf are inconsistent with the data type to be
113 vfprintf_n_test("/data/vfprintf.txt", "value is %s and %d", "vfprintf_0400", "value is qer and erq", "qer", "erq");