Home
last modified time | relevance | path

Searched refs:seek (Results 1 – 25 of 364) sorted by relevance

12345678910>>...15

/external/vboot_reference/scripts/image_signing/
Dfirmware_boot.sh58 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
59 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
64 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
65 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
70 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
71 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
76 dd if=dev.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
77 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
82 dd if=nor.bin of=${output} conv=notrunc bs=1 seek=${rw_a_offset}
83 dd if=bad.bin of=${output} conv=notrunc bs=1 seek=${rw_b_offset}
[all …]
/external/avb/test/
Dimage_handler_unittest.py99 f.seek(0, os.SEEK_END)
101 f.seek(old_pos)
129 ih.seek(0x6000 + 1)
133 ih.seek(0x3000 - 10)
135 ih.seek(0x9000 - 3)
139 ih.seek(0xf000 - 2)
167 unsparse_file.seek(self.TEST_FILE_SIZE)
180 unsparse_file.seek(self.TEST_FILE_SIZE)
193 unsparse_file.seek(self.TEST_FILE_SIZE)
206 unsparse_file.seek(self.TEST_FILE_SIZE)
/external/autotest/client/site_tests/platform_DMVerityBitCorruption/
Dplatform_DMVerityBitCorruption.py23 dev.seek(run_count * block_size + self._adjustment)
25 dev.seek(run_count * block_size + self._adjustment)
35 dev.seek(block_count * block_size, os.SEEK_SET)
36 dev.seek(run_count * block_size + self._adjustment, os.SEEK_CUR)
39 dev.seek(block_count * block_size, os.SEEK_SET)
40 dev.seek(run_count * block_size + self._adjustment, os.SEEK_CUR)
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
Drenderer.py112 self.output.seek(where)
236 self.output.seek(start - 2)
239 self.output.seek(0, 2)
242 self.output.seek(lstart - 2)
245 self.output.seek(0, 2)
297 self.output.seek(rdata_start - 2)
300 self.output.seek(10)
302 self.output.seek(0, 2)
312 self.output.seek(0)
316 self.output.seek(0, 2)
/external/swiftshader/third_party/LLVM/test/Scripts/
Dmacho-dumpx24 def seek(self, pos):
25 self.file.seek(pos)
171 f.seek(stroff)
177 f.seek(symoff)
183 f.seek(prev_pos)
228 f.seek(indirectsymoff)
235 f.seek(prev_pos)
265 f.seek(reloc_offset)
274 f.seek(offset)
277 f.seek(prev_pos)
Delf-dump19 def seek(self, pos):
20 self.file.seek(pos)
87 f.seek(self.sh_offset[0])
99 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
122 f.seek(section.sh_offset[0] + index * section.sh_entsize[0])
166 f.seek(16) # Seek to end of e_ident.
189 f.seek(e_shoff[0] + index * e_shentsize[0])
194 f.seek(sections[e_shstrndx[0]].sh_offset[0])
201 f.seek(section.sh_offset[0])
/external/toybox/toys/posix/
Dgrep.c110 struct arg_list *seek, fseek; in do_grep() local
113 for (seek = TT.e; seek; seek = seek->next) { in do_grep()
117 if ((i ? strcasecmp : strcmp)(seek->arg, line)) s = line; in do_grep()
118 } else if (!*seek->arg) { in do_grep()
119 seek = &fseek; in do_grep()
123 if (toys.optflags & FLAG_i) s = strnstr(line, seek->arg); in do_grep()
124 else s = strstr(line, seek->arg); in do_grep()
130 skip = matches.rm_eo = (s-line)+strlen(seek->arg); in do_grep()
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
Dseek_unittest.py6 from telemetry.internal.actions import seek
25 action = seek.SeekAction(seconds=1, timeout_in_seconds=5)
35 action = seek.SeekAction(seconds=1, selector='#video_1',
49 action = seek.SeekAction(seconds=1, selector='all',
63 action = seek.SeekAction(seconds=1, selector='#video_1',
/external/pdfium/third_party/zlib_v128/
Dgzwrite.c200 if (state->seek) { in gzwrite()
201 state->seek = 0; in gzwrite()
265 if (state->seek) { in gzputc()
266 state->seek = 0; in gzputc()
331 if (state->seek) { in gzvprintf()
332 state->seek = 0; in gzvprintf()
415 if (state->seek) { in gzprintf()
416 state->seek = 0; in gzprintf()
484 if (state->seek) { in gzflush()
485 state->seek = 0; in gzflush()
[all …]
/external/zlib/src/
Dgzwrite.c200 if (state->seek) {
201 state->seek = 0;
265 if (state->seek) {
266 state->seek = 0;
331 if (state->seek) { in gzvprintf()
332 state->seek = 0; in gzvprintf()
416 if (state->seek) {
417 state->seek = 0;
485 if (state->seek) {
486 state->seek = 0;
[all …]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
DSeekableXZInputStream.java314 in.seek(0); in SeekableXZInputStream()
336 in.seek(pos - DecoderUtil.STREAM_HEADER_SIZE); in SeekableXZInputStream()
367 in.seek(pos - streamFooter.backwardSize); in SeekableXZInputStream()
403 in.seek(pos); in SeekableXZInputStream()
671 seek(); in read()
678 seek(); in read()
785 public void seek(long pos) throws IOException { in seek() method in SeekableXZInputStream
824 private void seek() throws IOException { in seek() method in SeekableXZInputStream
865 in.seek(curBlockInfo.compressedOffset); in seek()
/external/e2fsprogs/tests/m_rootdir/
Dscript12 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=1024 2> /dev/null
13 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=524288 conv=notrunc 2> /dev/null
14 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=1048576 conv=notrunc 2> /dev/null
15 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=536870912 conv=notrunc 2> /dev/null
16 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=1073741824 conv=notrunc 2> /dev/null
17 dd if=/dev/zero of=$MKFS_DIR/bigzerofile bs=1 count=1 seek=1073741824 2> /dev/null
/external/fonttools/Lib/fontTools/ttLib/
Dsfnt.py32 self.file.seek(0)
42 self.file.seek(offsetTable[fontNumber])
124 self.file.seek(self.nextTableOffset)
196 self.file.seek(0,2)
205 self.file.seek(0,2)
215 self.file.seek(0,2)
224 self.file.seek(self.directorySize)
232 self.file.seek(0)
267 self.file.seek(self.tables['head'].offset + 8)
359 file.seek(self.offset)
[all …]
/external/e2fsprogs/tests/m_minrootdir/
Dscript12 dd if=/dev/zero of=$MKFS_DIR/bigzerofile bs=1 count=1 seek=1073741824 2> /dev/null
13 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=1024 2> /dev/null
14 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=524288 conv=notrunc 2> /dev/null
15 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=1048576 conv=notrunc 2> /dev/null
16 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=536870912 conv=notrunc 2> /dev/null
17 echo "M" | dd of=$MKFS_DIR/sparsefile bs=1 count=1 seek=1073741824 conv=notrunc 2> /dev/null
/external/smali/util/src/main/java/org/jf/util/
DRandomAccessFileOutputStream.java49 raf.seek(filePosition); in write()
55 raf.seek(filePosition); in write()
61 raf.seek(filePosition); in write()
DRandomAccessFileInputStream.java49 raf.seek(filePosition); in read()
55 raf.seek(filePosition); in read()
62 raf.seek(filePosition); in read()
/external/autotest/client/site_tests/video_YouTubePage/
Dcontrol.seeking7 PURPOSE = "Verify that YouTube page HTML5 video seek works"
9 This test will fail if YouTube page HTML5 video fails to seek.
20 This test verifies YouTube video can seek.
/external/antlr/antlr-3.4/runtime/Python/unittests/
Dteststreams.py127 stream.seek(4)
155 stream.seek(4)
172 stream.seek(4)
191 stream.seek(4)
209 stream.seek(4)
228 stream.seek(4)
254 stream.seek(4)
277 stream.seek(4)
304 stream.seek(4)
327 stream.seek(4)
[all …]
/external/autotest/client/site_tests/video_VideoSeek/
Dcontrol.vp8.switchres7 PURPOSE = "Verify that VP8 resolution-changing video seek works in Chrome"
9 This test will fail if a resolution-changing VP8 video fails to seek in Chrome HTML5 page.
23 This test verifies VP8 resolution-changing video can seek on machines with VDA.
Dcontrol.h264.switchres7 PURPOSE = "Verify that H264 resolution-changing video seek works in Chrome"
9 This test will fail if a resolution-changing H264 video fails to seek in Chrome HTML5 page.
23 This test verifies H264 resolution-changing video can seek on machines with VDA.
Dcontrol.h2647 PURPOSE = "Verify that H264 non-resolution-changing video seek works in Chrome"
9 This test will fail if a non-resolution-changing H264 video fails to seek in Chrome HTML5 page.
23 This test verifies H264 non-resolution-changing video can seek on machines with VDA.
Dcontrol.vp97 PURPOSE = "Verify that VP9 non-resolution-changing video seek works in Chrome"
9 This test will fail if a non-resolution-changing VP9 video fails to seek in Chrome HTML5 page.
23 This test verifies VP9 non-resolution-changing video can seek on machines with VDA.
Dcontrol.vp87 PURPOSE = "Verify that VP8 non-resolution-changing video seek works in Chrome"
9 This test will fail if a non-resolution-changing VP8 video fails to seek in Chrome HTML5 page.
23 This test verifies VP8 non-resolution-changing video can seek on machines with VDA.
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
DLookaheadStream.java141 seek(marker); // assume marker is top in rewind()
146 seek(lastMarker); // rewind but do not release marker in rewind()
155 public void seek(int index) { p = index; } in seek() method in LookaheadStream
/external/autotest/client/site_tests/hardware_SAT/
Dhardware_SAT.py18 fd.seek(0x48)
25 fd.seek(mchbar + 0x5000)
27 fd.seek(mchbar + 0x5024)

12345678910>>...15