Home | History | Annotate | Download | only in io

Lines Matching defs:os

44     public BlockGuardOs(Os os) {
45 super(os);
59 final FileDescriptor acceptFd = os.accept(fd, peerAddress);
68 return os.access(path, mode);
73 os.chmod(path, mode);
78 os.chown(path, uid, gid);
100 os.close(fd);
104 return isInetDomain(Libcore.os.getsockoptInt(fd, SOL_SOCKET, SO_DOMAIN));
112 StructLinger linger = Libcore.os.getsockoptLinger(fd, SOL_SOCKET, SO_LINGER);
118 os.connect(fd, address, port);
124 os.connect(fd, address);
129 os.fchmod(fd, mode);
134 os.fchown(fd, uid, gid);
141 os.fdatasync(fd);
146 return os.fstat(fd);
151 return os.fstatvfs(fd);
156 os.fsync(fd);
161 os.ftruncate(fd, length);
172 return os.android_getaddrinfo(node, hints, netId);
177 os.lchown(path, uid, gid);
182 os.link(oldPath, newPath);
187 return os.lseek(fd, offset, whence);
192 return os.lstat(path);
197 os.mkdir(path, mode);
202 os.mkfifo(path, mode);
210 return os.open(path, flags, mode);
219 return os.poll(fds, timeoutMs);
224 os.posix_fallocate(fd, offset, length);
229 return os.pread(fd, buffer, offset);
234 return os.pread(fd, bytes, byteOffset, byteCount, offset);
239 return os.pwrite(fd, buffer, offset);
244 return os.pwrite(fd, bytes, byteOffset, byteCount, offset);
249 return os.read(fd, buffer);
254 return os.read(fd, bytes, byteOffset, byteCount);
259 return os.readlink(path);
264 return os.realpath(path);
269 return os.readv(fd, buffers, offsets, byteCounts);
274 return os.recvfrom(fd, buffer, flags, srcAddress);
279 return os.recvfrom(fd, bytes, byteOffset, byteCount, flags, srcAddress);
284 os.remove(path);
289 os.rename(oldPath, newPath);
294 return os.sendfile(outFd, inFd, offset, byteCount);
299 return os.sendto(fd, buffer, flags, inetAddress, port);
307 return os.sendto(fd, bytes, byteOffset, byteCount, flags, inetAddress, port);
311 final FileDescriptor fd = os.socket(domain, type, protocol);
319 os.socketpair(domain, type, protocol, fd1, fd2);
328 return os.stat(path);
333 return os.statvfs(path);
338 os.symlink(oldPath, newPath);
343 return os.write(fd, buffer);
348 return os.write(fd, bytes, byteOffset, byteCount);
353 return os.writev(fd, buffers, offsets, byteCounts);
358 os.execv(filename, argv);
364 os.execve(filename, argv, envp);
369 return os.getxattr(path, name);
376 os.msync(address, byteCount, flags);
381 os.removexattr(path, name);
387 os.setxattr(path, name, value, flags);
393 return os.sendto(fd, bytes, byteOffset, byteCount, flags, address);
398 os.unlink(pathname);
406 return os.splice(fdIn, offIn, fdOut, offOut, len, flags);