Lines Matching defs:whence
383 pgoff_t index, int whence)
385 switch (whence) {
401 static loff_t f2fs_seek_block(struct file *file, loff_t offset, int whence)
419 if (whence == SEEK_HOLE) {
422 } else if (whence == SEEK_DATA) {
437 if (whence == SEEK_DATA) {
463 pgofs, whence)) {
471 if (whence == SEEK_DATA)
474 if (whence == SEEK_HOLE && data_ofs > isize)
483 static loff_t f2fs_llseek(struct file *file, loff_t offset, int whence)
488 switch (whence) {
492 return generic_file_llseek_size(file, offset, whence,
498 return f2fs_seek_block(file, offset, whence);