HomeSort by relevance Sort by last modified time
    Searched defs:Fd (Results 26 - 34 of 34) sorted by null

12

  /prebuilts/go/darwin-x86/src/os/
file_windows.go 21 pfd poll.FD
26 // Fd returns the Windows handle referencing the open file.
29 func (file *File) Fd() uintptr {
47 pfd: poll.FD{
69 // name. The returned value will be nil if fd is not a valid file
71 func NewFile(fd uintptr, name string) *File {
72 h := syscall.Handle(fd)
file_plan9.go 25 fd int
30 // Fd returns the integer Plan 9 file descriptor referencing the open file.
33 func (f *File) Fd() uintptr {
37 return uintptr(f.fd)
41 // name. The returned value will be nil if fd is not a valid file
43 func NewFile(fd uintptr, name string) *File {
44 fdi := int(fd)
48 f := &File{&file{fd: fdi, name: name}}
85 fd int
110 fd, e = syscall.Create(name, flag, syscallMode(perm)
    [all...]
  /prebuilts/go/linux-x86/src/os/
file_unix.go 48 pfd poll.FD
55 // Fd returns the integer Unix file descriptor referencing the open file.
58 func (f *File) Fd() uintptr {
76 // name. The returned value will be nil if fd is not a valid file
78 func NewFile(fd uintptr, name string) *File {
79 return newFile(fd, name, kindNewFile)
94 func newFile(fd uintptr, name string, kind newFileKind) *File {
95 fdi := int(fd)
100 pfd: poll.FD{
file_windows.go 21 pfd poll.FD
26 // Fd returns the Windows handle referencing the open file.
29 func (file *File) Fd() uintptr {
47 pfd: poll.FD{
69 // name. The returned value will be nil if fd is not a valid file
71 func NewFile(fd uintptr, name string) *File {
72 h := syscall.Handle(fd)
file_plan9.go 25 fd int
30 // Fd returns the integer Plan 9 file descriptor referencing the open file.
33 func (f *File) Fd() uintptr {
37 return uintptr(f.fd)
41 // name. The returned value will be nil if fd is not a valid file
43 func NewFile(fd uintptr, name string) *File {
44 fdi := int(fd)
48 f := &File{&file{fd: fdi, name: name}}
85 fd int
110 fd, e = syscall.Create(name, flag, syscallMode(perm)
    [all...]
  /art/libartbase/base/unix_file/
fd_file.cc 43 FdFile::FdFile(int fd, bool check_usage)
45 fd_(fd), auto_close_(true), read_only_mode_(false) {
48 FdFile::FdFile(int fd, const std::string& path, bool check_usage)
49 : FdFile(fd, path, check_usage, false) {
52 FdFile::FdFile(int fd, const std::string& path, bool check_usage, bool read_only_mode)
54 fd_(fd), file_path_(path), auto_close_(true), read_only_mode_(read_only_mode) {
77 PLOG(WARNING) << "Failed to close file with fd=" << fd_ << " path=" << file_path_;
235 int FdFile::Fd() const {
251 static ssize_t ReadIgnoreOffset(int fd, void *buf, size_t count, off_t offset) {
253 return read(fd, buf, count)
    [all...]
  /external/swiftshader/third_party/subzero/runtime/
wasm-runtime.cpp 300 int Fd = VarArgs[0];
304 return trace(read(Fd, WASM_REF(char *, Buffer), Length));
310 int Fd = VarArgs[0];
314 return trace(write(Fd, WASM_REF(char *, Buffer), Length));
331 int Fd = VarArgs[0];
333 return trace(close(Fd));
366 int Fd = VarArgs[0];
374 return trace(ioctl(Fd, TCGETS, TermIOS));
390 int Fd = VarArgs[0];
397 int Curr = read(Fd, Iov[I].Ptr.asPtr(), Iov[I].Length)
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp     [all...]
  /external/swiftshader/third_party/subzero/src/
IceAssemblerMIPS32.cpp 312 const IValueT Fd = encodeFPRegister(OpFd, "Fd", InsnName);
315 Opcode |= Fd << 6;
327 const IValueT Fd = encodeFPRegister(OpFd, "Fd", InsnName);
331 Opcode |= Fd << 6;
344 const IValueT Fd = encodeFPRegister(OpFd, "Fd", InsnName);
348 Opcode |= Fd << 6;
    [all...]

Completed in 805 milliseconds

12