Lines Matching defs:whence
393 pgoff_t index, int whence)
395 switch (whence) {
411 static loff_t f2fs_seek_block(struct file *file, loff_t offset, int whence)
429 if (whence == SEEK_HOLE) {
432 } else if (whence == SEEK_DATA) {
447 if (whence == SEEK_DATA) {
473 pgofs, whence)) {
481 if (whence == SEEK_DATA)
484 if (whence == SEEK_HOLE && data_ofs > isize)
493 static loff_t f2fs_llseek(struct file *file, loff_t offset, int whence)
501 switch (whence) {
505 return generic_file_llseek_size(file, offset, whence,
511 return f2fs_seek_block(file, offset, whence);