Lines Matching refs:result
136 int result, total = 0;
142 result = ffurl_read(nodes[i].uc, buf, size);
143 if (result == AVERROR_EOF) {
147 result = 0;
149 if (result < 0)
150 return total ? total : result;
151 total += result;
152 buf += result;
153 size -= result;
156 return total ? total : result;
161 int64_t result;
188 result = ffurl_seek(nodes[i].uc, pos, whence);
189 if (result >= 0) {
192 result += nodes[--i].size;
194 return result;