Lines Matching refs:fseeko
40 int result = fseeko(fp, 0L, SEEK_SET);
43 t_error("%s fseeko failed, result is %d\n", __func__, result);
46 t_error("%s fseeko failed, ch is %c\n", __func__, ch);
70 int result = fseeko(fp, 8L, SEEK_SET);
73 t_error("%s fseeko failed, result is %d\n", __func__, result);
76 t_error("%s fseeko failed, ch is %c\n", __func__, ch);
100 int code = fseeko(fp, 10L, SEEK_SET);
102 t_error("%s fseeko failed, code is %d\n", __func__, code);
105 int data = fseeko(fp, 0L, SEEK_CUR);
107 t_error("%s fseeko failed, data is %d\n", __func__, data);
112 t_error("%s fseeko failed, ch is %c\n", __func__, ch);
136 int result = fseeko(fp, -1L, SEEK_END);
139 t_error("%s fseeko failed, result is %d\n", __func__, result);
142 t_error("%s fseeko failed, ch is %c\n", __func__, ch);
166 int result = fseeko(fp, -10L, SEEK_SET);
168 t_error("%s fseeko should be failed, result is %d\n", __func__, result);
192 int result = fseeko(fp, 10L, SEEK_END);
194 t_error("%s fseeko failed, result is %d\n", __func__, result);