Home
last modified time | relevance | path

Searched refs:off_t (Results 1 – 25 of 602) sorted by relevance

12345678910>>...25

/external/elfutils/src/
Dstrings.c52 static int read_fd (int fd, const char *fname, off_t fdlen);
53 static int read_elf (Elf *elf, int fd, const char *fname, off_t fdlen);
140 static off_t elfmap_off;
192 off_t fdlen = (fstat_fail in main()
194 if (fdlen > (off_t) min_len_bytes) in main()
314 process_chunk_mb (const char *fname, const unsigned char *buf, off_t to, in process_chunk_mb()
391 process_chunk (const char *fname, const unsigned char *buf, off_t to, in process_chunk()
455 map_file (int fd, off_t start_off, off_t fdlen, size_t *map_sizep) in map_file()
468 size_t map_size = MIN ((off_t) mmap_max, fdlen); in map_file()
503 read_block_no_mmap (int fd, const char *fname, off_t from, off_t fdlen) in read_block_no_mmap()
[all …]
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dllseek.c32 static off_t my_lseek(int fd, off_t off, int whence) in my_lseek()
37 static off_t my_lseek(int fd, off_t off, int whence) in my_lseek()
102 if ((sizeof(off_t) >= sizeof(llse_loff_t)) || in llse_llseek()
103 (offset < ((llse_loff_t) 1 << ((sizeof(off_t) * 8) - 1)))) in llse_llseek()
104 return lseek(fd, (off_t) offset, origin); in llse_llseek()
115 if ((sizeof(off_t) < sizeof(llse_loff_t)) && in llse_llseek()
116 (offset >= ((llse_loff_t) 1 << ((sizeof(off_t) * 8) - 1)))) { in llse_llseek()
120 return lseek(fd, (off_t) offset, origin); in llse_llseek()
/external/google-breakpad/src/common/mac/
Dmacho_walker.h53 off_t offset, bool swap, void *context);
70 bool ReadBytes(void *buffer, size_t size, off_t offset);
73 bool CurrentHeader(struct mach_header_64 *header, off_t *offset);
80 off_t &offset);
84 bool WalkHeaderAtOffset(off_t offset);
85 bool WalkHeader64AtOffset(off_t offset);
88 bool WalkHeaderCore(off_t offset, uint32_t number_of_commands, bool swap);
110 off_t current_header_offset_;
Dmacho_walker.cc92 off_t offset; in WalkHeader()
103 bool MachoWalker::ReadBytes(void *buffer, size_t size, off_t offset) { in ReadBytes()
121 bool MachoWalker::CurrentHeader(struct mach_header_64 *header, off_t *offset) { in CurrentHeader()
133 off_t &offset) { in FindHeader()
204 bool MachoWalker::WalkHeaderAtOffset(off_t offset) { in WalkHeaderAtOffset()
230 bool MachoWalker::WalkHeader64AtOffset(off_t offset) { in WalkHeader64AtOffset()
250 bool MachoWalker::WalkHeaderCore(off_t offset, uint32_t number_of_commands, in WalkHeaderCore()
Dmacho_id.h92 void Update(MachoWalker *walker, off_t offset, size_t size);
99 static bool WalkerCB(MachoWalker *walker, load_command *cmd, off_t offset,
103 static bool UUIDWalkerCB(MachoWalker *walker, load_command *cmd, off_t offset,
107 static bool IDWalkerCB(MachoWalker *walker, load_command *cmd, off_t offset,
/external/openssh/
Dprogressmeter.c53 static void format_size(char *, int, off_t);
54 static void format_rate(char *, int, off_t);
69 static off_t start_pos; /* initial position of transfer */
70 static off_t end_pos; /* ending position of transfer */
71 static off_t cur_pos; /* transfer position as of last refresh */
72 static volatile off_t *counter; /* progress counter */
88 format_rate(char *buf, int size, off_t bytes) in format_rate()
107 format_size(char *buf, int size, off_t bytes) in format_size()
123 off_t transferred; in refresh_progress_meter()
126 off_t bytes_left; in refresh_progress_meter()
[all …]
/external/v4l2_codec2/vda/
Dh264_parser.h63 off_t size; // From after start code to start code of next NALU (or EOS).
264 off_t nalu_size; // from NAL header
265 off_t header_bit_size; // calculated
367 off_t data_size,
368 off_t* offset,
369 off_t* start_code_size);
375 off_t data_size,
377 off_t* offset,
378 off_t* start_code_size);
394 void SetStream(const uint8_t* stream, off_t stream_size);
[all …]
Dh264_bit_reader.h33 bool Initialize(const uint8_t* data, off_t size);
43 off_t NumBitsLeft();
60 off_t bytes_left_;
/external/ltp/testcases/kernel/fs/fsx-linux/
Dfsx-linux.c101 off_t file_size = 0;
102 off_t biggest = 0;
269 void save_buffer(char *buffer, off_t bufferlength, int fd) in save_buffer()
271 off_t ret; in save_buffer()
282 off_t size_by_seek = lseek(fd, (off_t) 0, SEEK_END); in save_buffer()
283 if (size_by_seek == (off_t) - 1) in save_buffer()
294 ret = lseek(fd, (off_t) 0, SEEK_SET); in save_buffer()
295 if (ret == (off_t) - 1) in save_buffer()
475 off_t size_by_seek; in check_size()
482 size_by_seek = lseek(fd, (off_t) 0, SEEK_END); in check_size()
[all …]
/external/e2fsprogs/lib/blkid/
Dllseek.c100 if ((sizeof(off_t) >= sizeof(blkid_loff_t)) || in blkid_llseek()
101 (offset < ((blkid_loff_t) 1 << ((sizeof(off_t)*8) -1)))) in blkid_llseek()
102 return lseek(fd, (off_t) offset, whence); in blkid_llseek()
136 if ((sizeof(off_t) < sizeof(blkid_loff_t)) && in blkid_llseek()
137 (offset >= ((blkid_loff_t) 1 << ((sizeof(off_t)*8) - 1)))) { in blkid_llseek()
141 return lseek(fd, (off_t) offset, origin); in blkid_llseek()
/external/strace/linux/
Dasm_stat.h11 # undef off_t
22 # define off_t __kernel_off_t macro
35 # undef off_t
46 # define off_t off_t macro
/external/ltp/testcases/kernel/syscalls/memfd_create/
Dmemfd_create_common.h107 int mode, off_t offset, off_t len);
109 int mode, off_t offset, off_t len);
111 off_t length);
113 off_t length);
121 int prot, int flags, int fd, off_t offset);
123 size_t length, int prot, int flags, int fd, off_t offset);
/external/openssh/openbsd-compat/
Dsha2.h92 char *SHA256_FileChunk(const char *, char *, off_t, off_t)
109 char *SHA384_FileChunk(const char *, char *, off_t, off_t)
126 char *SHA512_FileChunk(const char *, char *, off_t, off_t)
/external/strace/tests-mx32/
Dfallocate.c48 static const off_t bogus_offset = (off_t) 0xbadc0dedda7a1057LLU; in main()
49 static const off_t bogus_len = (off_t) 0xbadfaceca7b0d1e5LLU; in main()
/external/strace/tests-m32/
Dfallocate.c48 static const off_t bogus_offset = (off_t) 0xbadc0dedda7a1057LLU; in main()
49 static const off_t bogus_len = (off_t) 0xbadfaceca7b0d1e5LLU; in main()
/external/strace/tests/
Dfallocate.c48 static const off_t bogus_offset = (off_t) 0xbadc0dedda7a1057LLU; in main()
49 static const off_t bogus_len = (off_t) 0xbadfaceca7b0d1e5LLU; in main()
/external/e2fsprogs/lib/ext2fs/
Dllseek.c114 if (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1))) in ext2fs_llseek()
115 return lseek(fd, (off_t) offset, origin); in ext2fs_llseek()
134 if ((sizeof(off_t) < sizeof(ext2_loff_t)) && in ext2fs_llseek()
135 (offset >= ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1)))) { in ext2fs_llseek()
139 return lseek (fd, (off_t) offset, origin); in ext2fs_llseek()
/external/ltp/include/lapi/
Dfallocate.h62 __LONG_LONG_PAIR((off_t) (offset >> 32), in fallocate()
63 (off_t) offset), in fallocate()
64 __LONG_LONG_PAIR((off_t) (len >> 32), in fallocate()
65 (off_t) len)); in fallocate()
/external/libcups/cups/
Dfile.h35 typedef off_t ssize_t; /* @private@ */
96 extern off_t cupsFileRewind(cups_file_t *fp) _CUPS_API_1_2;
97 extern off_t cupsFileSeek(cups_file_t *fp, off_t pos) _CUPS_API_1_2;
101 extern off_t cupsFileTell(cups_file_t *fp) _CUPS_API_1_2;
/external/zlib/src/examples/
Dzran.c68 off_t out; /* corresponding offset in uncompressed data */
69 off_t in; /* offset in input file of first full byte */
93 off_t in, off_t out, unsigned left, unsigned char *window) in addpoint()
144 local int build_index(FILE *in, off_t span, struct access **built) in build_index()
147 off_t totin, totout; /* our own total counters to avoid 4GB limit */ in build_index()
148 off_t last; /* totout value of last access point */ in build_index()
249 local int extract(FILE *in, struct access *index, off_t offset, in extract()
357 off_t offset; in main()
/external/ltp/testcases/kernel/syscalls/pwrite/
Dpwrite01.c98 void l_seek(int, off_t, int, off_t); /* function to call lseek() */
250 void l_seek(int fdesc, off_t offset, int whence, off_t checkoff) in l_seek()
252 off_t offloc; /* offset ret. from lseek() */ in l_seek()
272 off_t offloc; /* offset. ret. by lseek() */ in check_file_contents()
/external/honggfuzz/libhfcommon/
Dfiles.h47 extern ssize_t files_readFromFdSeek(int fd, uint8_t* buf, size_t fileSz, off_t pos);
49 extern bool files_writePatternToFd(int fd, off_t size, unsigned char p);
62 extern uint8_t* files_mapFile(const char* fileName, off_t* fileSz, int* fd, bool isWritable);
64 extern uint8_t* files_mapFileShared(const char* fileName, off_t* fileSz, int* fd);
/external/lzma/CPP/Common/
DC_FileIO.cpp38 off_t curPos = Seek(0, SEEK_CUR); in GetLength()
39 off_t lengthTemp = Seek(0, SEEK_END); in GetLength()
45 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const in Seek()
/external/elfutils/libdwfl/
Dcore-file.c43 do_fail (int error, off_t *next, off_t offset) in do_fail()
58 elf_begin_rand (Elf *parent, off_t offset, off_t size, off_t *next) in elf_begin_rand()
63 off_t min = (parent->kind == ELF_K_ELF ? in elf_begin_rand()
70 || unlikely (offset >= (off_t) parent->maximum_size)) in elf_begin_rand()
97 || unlikely ((off_t) parent->maximum_size - offset < size)) in elf_begin_rand()
101 if (unlikely ((off_t) parent->maximum_size - offset < size)) in elf_begin_rand()
109 && unlikely (size == (off_t) parent->maximum_size)) in elf_begin_rand()
119 assert ((off_t) data->d_size == size); in elf_begin_rand()
/external/ltp/testcases/kernel/syscalls/mremap/
Dmremap01.c184 if (lseek(fildes, (off_t) memsize, SEEK_SET) != (off_t) memsize) { in setup()
206 if (lseek(fildes, (off_t) newsize, SEEK_SET) != (off_t) newsize) { in setup()

12345678910>>...25