Lines Matching refs:vasprintf
23 * @tc.desc : Format the output string through vasprintf, the formatted part is a number
32 int result = vasprintf(&temp, v, ap);
34 t_error("%s vasprintf result value is 0\n", __func__);
37 t_error("%s vasprintf get tmep is %s are not 'value is 123 and 321.'\n", __func__, temp);
44 * @tc.desc : Format the output string through vasprintf, the formatted part is a string
53 int result = vasprintf(&temp, v, ap);
55 t_error("%s vasprintf result value is 0\n", __func__);
58 t_error("%s vasprintf get tmep is %s are not 'value is qer and erq.'\n", __func__, temp);
65 * @tc.desc : The parameters passed in when calling vasprintf are inconsistent with the data type to be formatted
74 int result = vasprintf(&temp, v, ap);
76 t_error("%s vasprintf result value is 0\n", __func__);
79 t_error("%s vasprintf error get tmep is '%s'\n", __func__, temp);