/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/trace-cmd/files/ |
H A D | 0001-Replace-LFS64-interfaces-off64_t-and-lseek64.patch | 118 case SEEK_CUR: 1004 - offset = lseek64(fd, 0, SEEK_CUR); 1005 + offset = lseek(fd, 0, SEEK_CUR); 1015 + current = lseek(fd, 0, SEEK_CUR); 1048 - lseek64(fd, -10, SEEK_CUR); 1049 + lseek(fd, -10, SEEK_CUR); 1057 - offset = lseek64(fd, 0, SEEK_CUR); 1058 + offset = lseek(fd, 0, SEEK_CUR); 1066 - lseek64(fd, -8, SEEK_CUR); 1067 + lseek(fd, -8, SEEK_CUR); [all …]
|
/openbmc/linux/tools/power/cpupower/utils/helpers/ |
H A D | msr.c | 35 if (lseek(fd, idx, SEEK_CUR) == -1) in read_msr() 64 if (lseek(fd, idx, SEEK_CUR) == -1) in write_msr()
|
/openbmc/u-boot/fs/yaffs2/ |
H A D | yportenv.h | 129 #ifndef SEEK_CUR 130 #define SEEK_CUR 1 macro
|
/openbmc/linux/tools/perf/ui/ |
H A D | browser.c | 115 case SEEK_CUR: in ui_browser__list_head_seek() 147 case SEEK_CUR: in ui_browser__rb_tree_seek() 431 browser->seek(browser, +1, SEEK_CUR); in ui_browser__run() 440 browser->seek(browser, -1, SEEK_CUR); in ui_browser__run() 465 browser->seek(browser, +offset, SEEK_CUR); in ui_browser__run() 478 browser->seek(browser, -offset, SEEK_CUR); in ui_browser__run() 616 case SEEK_CUR: in ui_browser__argv_seek()
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | java.rst | 257 seekerr = fseek(classfile, len, SEEK_CUR); 262 seekerr = fseek(classfile, 2, SEEK_CUR); 265 seekerr = fseek(classfile, 3, SEEK_CUR); 274 seekerr = fseek(classfile, 4, SEEK_CUR); 278 seekerr = fseek(classfile, 8, SEEK_CUR); 320 if(fseek(classfile, 2, SEEK_CUR)) /* skip access flags */
|
/openbmc/linux/tools/power/cpupower/debug/i386/ |
H A D | powernow-k8-decode.c | 42 lseek(fd, MSR_FIDVID_STATUS, SEEK_CUR); in get_fidvid()
|
H A D | centrino-decode.c | 47 if (lseek(fd, msr, SEEK_CUR) == -1) in rdmsr()
|
/openbmc/qemu/io/ |
H A D | channel-file.c | 39 if (lseek(fd, 0, SEEK_CUR) != (off_t)-1) { in qio_channel_file_new_fd() 81 if (lseek(ioc->fd, 0, SEEK_CUR) != (off_t)-1) { in qio_channel_file_new_path()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/tftp-hpa/files/ |
H A D | tftp-hpa-bug-fix-on-separated-CR-and-LF.patch | 29 + lseek(fileno(file), -1, SEEK_CUR);
|
/openbmc/qemu/migration/ |
H A D | channel-block.c | 125 case SEEK_CUR: in qio_channel_block_seek()
|
/openbmc/linux/drivers/fsi/ |
H A D | i2cr-scom.c | 23 case SEEK_CUR: in i2cr_scom_llseek()
|
/openbmc/linux/tools/testing/selftests/sparc64/drivers/ |
H A D | adi-test.c | 492 offset_out = seek_adi(fd, 0, SEEK_CUR); in test4_lseek() 498 offset_out = seek_adi(fd, OFFSET_ADD, SEEK_CUR); in test4_lseek() 504 offset_out = seek_adi(fd, OFFSET_SUBTRACT, SEEK_CUR); in test4_lseek()
|
/openbmc/linux/tools/perf/ui/browsers/ |
H A D | annotate.c | 378 browser->b.seek(&browser->b, offset, SEEK_CUR); in annotate_browser__toggle_source() 387 browser->b.seek(&browser->b, -offset, SEEK_CUR); in annotate_browser__toggle_source() 395 browser->b.seek(&browser->b, -offset, SEEK_CUR); in annotate_browser__toggle_source() 405 browser->b.seek(&browser->b, -offset, SEEK_CUR); in annotate_browser__toggle_source()
|
/openbmc/linux/drivers/char/ |
H A D | adi.c | 187 case SEEK_CUR: in adi_llseek()
|
/openbmc/linux/tools/perf/util/ |
H A D | hisi-ptt.c | 110 data_offset = lseek(fd, 0, SEEK_CUR); in hisi_ptt_process_auxtrace_event()
|
H A D | trace-event-info.c | 47 off_t hdr_pos = lseek(output_fd, 0, SEEK_CUR); in record_file() 662 tdata->size = lseek(output_fd, 0, SEEK_CUR); in tracing_data_get()
|
/openbmc/qemu/audio/ |
H A D | wavcapture.c | 55 if (fseek (wav->f, 32, SEEK_CUR)) { in wav_destroy()
|
H A D | wavaudio.c | 161 if (fseek (wav->f, 32, SEEK_CUR)) { in wav_fini_out()
|
/openbmc/linux/tools/include/nolibc/ |
H A D | types.h | 93 #define SEEK_CUR 1 macro
|
/openbmc/linux/tools/include/uapi/linux/ |
H A D | fs.h | 44 #define SEEK_CUR 1 /* seek relative to current file position */ macro
|
/openbmc/linux/include/uapi/linux/ |
H A D | fs.h | 44 #define SEEK_CUR 1 /* seek relative to current file position */ macro
|
/openbmc/linux/drivers/s390/char/ |
H A D | hmcdrv_dev.c | 163 case SEEK_CUR: /* relative to current file position */ in hmcdrv_dev_seek()
|
/openbmc/linux/fs/ |
H A D | read_write.c | 93 case SEEK_CUR: in generic_file_llseek_size() 165 case SEEK_SET: case SEEK_CUR: case SEEK_END: in fixed_size_llseek() 184 case SEEK_SET: case SEEK_CUR: in no_seek_end_llseek() 204 case SEEK_SET: case SEEK_CUR: in no_seek_end_llseek_size() 240 case SEEK_CUR: in default_llseek()
|
/openbmc/phosphor-mboxd/test/ |
H A D | mbox.c | 185 rc = lseek(context->fds[MBOX_FD].fd, -1, SEEK_CUR); in mbox_command_dispatch()
|
/openbmc/hiomapd/test/ |
H A D | mbox.c | 189 rc = lseek(context->fds[MBOX_FD].fd, -1, SEEK_CUR); in mbox_command_dispatch()
|