Searched defs:off (Results 1 - 25 of 625) sorted by relevance

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_formstring.c68 uint64_t off; local
70 attrp->cu->offset_size, &off, IDX_debug_str, 1))
73 return (const char *) dbg_ret->sectiondata[IDX_debug_str]->d_buf + off;
H A Ddwarf_addrdie.c42 Dwarf_Off off; local
47 NULL, NULL, &off) != 0)
50 return INTUSE(dwarf_offdie) (dbg, off, result);
/external/strace/
H A Dupoke.c32 upoke(int pid, unsigned long off, kernel_ulong_t val) argument
34 if (ptrace(PTRACE_POKEUSER, pid, off, val)) {
36 perror_msg("upoke: PTRACE_POKEUSER pid:%d @%#lx)", pid, off);
H A Dupeek.c39 upeek(int pid, unsigned long off, kernel_ulong_t *res) argument
44 val = ptrace(PTRACE_PEEKUSER, (pid_t) pid, (void *) off, 0);
47 perror_msg("upeek: PTRACE_PEEKUSER pid:%d @0x%lx)", pid, off);
/external/dagger2/examples/simple/src/main/java/coffee/
H A DHeater.java5 void off(); method in interface:Heater
H A DElectricHeater.java11 @Override public void off() { method in class:ElectricHeater
/external/elfutils/libdwfl/
H A Ddwfl_module_addrname.c34 GElf_Off off; local
36 return INTUSE(dwfl_module_addrinfo) (mod, addr, &off, &sym,
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_nbyte.h8 __u16 off; member in struct:tcf_em_nbyte
/external/kernel-headers/original/uapi/linux/tc_ematch/
H A Dtc_em_nbyte.h8 __u16 off; member in struct:tcf_em_nbyte
/external/autotest/client/cros/
H A Dpower_strip.py20 def off(self, outlet, delay=0): member in class:PowerStrip
21 self.command('off', outlet, delay)
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DNullOutputStream.java18 public void write(byte[] buf, int off, int len) argument
/external/elfutils/libelf/
H A Delf_getphdrnum.c88 Elf64_Off off = (elf->class == ELFCLASS32 local
91 if (unlikely (off == 0))
97 if (unlikely (off >= elf->maximum_size))
113 if (unlikely (elf->maximum_size - off < *dst * phdr_size))
114 *dst = (elf->maximum_size - off) / phdr_size;
/external/elfutils/tests/
H A Dstrptr.c77 size_t off = 0; local
78 const char *str = elf_strptr (elf, ndx, off);
81 printf ("[%zx] '%s'\n", off, str);
82 off += strlen (str) + 1;
83 str = elf_strptr (elf, ndx, off);
/external/fio/lib/
H A Dpattern.h22 unsigned int off; member in struct:pattern_fmt
45 unsigned int off, const char *buf, unsigned int len);
/external/guava/guava/src/com/google/common/io/
H A DByteProcessor.java37 * from {@code buf[off]} through {@code buf[off + len - 1]}
41 * @param off the initial offset into the array
45 boolean processBytes(byte[] buf, int off, int len) throws IOException; argument
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.seeks/
H A Dseekp2.pass.cpp15 // basic_ostream<charT,traits>& seekp(off_type off, ios_base::seekdir dir);
32 seekoff(typename base::off_type off, std::ios_base::seekdir way, argument
38 return off;
H A Dtellp.pass.cpp32 seekoff(typename base::off_type off, std::ios_base::seekdir way, std::ios_base::openmode which) argument
34 assert(off == 0);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
H A D11-1.c9 * The off argument is constrained to be aligned and sized
14 * was specified) or off is not a multiple of the page size as returned by
18 * 1. Set 'off' a value which is not a multiple of page size;
46 off_t off; local
69 off = page_size + 1;
71 pa = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, off);
79 printf("Got EINVAL when 'off' is not multiple of page size\n");
85 " when 'off' is not a multiple of page size, get: %s\n",
H A D31-1.c10 * [EOVERFLOW] The file is a regular file and the value of off
47 off_t off = 0; local
87 off = ((off_t) ~ ((size_t) 0)) * page_size;
88 off &= ~(page_size - 1);
90 printf("off: %llx, len: %llx\n", (unsigned long long)off,
93 pa = mmap(NULL, len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, off);
/external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
H A DNone.java18 public void update(byte[] buf, int off, int len) {} argument
/external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
H A DDeltaDecoder.java17 public void decode(byte[] buf, int off, int len) { argument
18 int end = off + len;
19 for (int i = off; i < end; ++i) {
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
H A DSimpleFilter.java13 int code(byte[] buf, int off, int len); argument
/external/syslinux/com32/gplinclude/disk/
H A Dcommon.h28 uint16_t off; member in struct:ebios_dapa
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java109 public void write(byte[] b, int off, int len) throws IOException { argument
118 this.out.write(b, off, len);
H A DIdentityInputStream.java87 public int read(final byte[] b, int off, int len) throws IOException { argument
91 return this.in.read(b, off, len);

Completed in 609 milliseconds

1234567891011>>