Lines Matching defs:whence
1666 static int64_t http_seek_internal(URLContext *h, int64_t off, int whence, int force_reconnect);
1898 static int64_t http_seek_internal(URLContext *h, int64_t off, int whence, int force_reconnect)
1907 if (whence == AVSEEK_SIZE)
1910 ((whence == SEEK_CUR && off == 0) ||
1911 (whence == SEEK_SET && off == s->off)))
1913 else if ((s->filesize == UINT64_MAX && whence == SEEK_END))
1916 if (whence == SEEK_CUR)
1918 else if (whence == SEEK_END)
1920 else if (whence != SEEK_SET)
1966 static int64_t http_seek(URLContext *h, int64_t off, int whence)
1968 return http_seek_internal(h, off, whence, 0);