Searched refs:OpenFlags (Results 1 - 6 of 6) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/sftp/
H A DOpenFlags.java64 public class OpenFlags class
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp61 int OpenFlags = O_RDONLY; local
63 OpenFlags |= O_BINARY; // Open input file in binary mode on win32.
65 *FileDescriptor = ::open(Path, OpenFlags);
/external/llvm/lib/Support/
H A DDataStream.cpp73 int OpenFlags = O_RDONLY; local
75 OpenFlags |= O_BINARY; // Open input file in binary mode on win32.
77 Fd = ::open(Filename.c_str(), OpenFlags);
H A Draw_ostream.cpp445 int OpenFlags = O_WRONLY|O_CREAT; local
448 OpenFlags |= O_BINARY;
452 OpenFlags |= O_APPEND;
454 OpenFlags |= O_TRUNC;
456 OpenFlags |= O_EXCL;
458 while ((FD = open(Filename, OpenFlags, 0664)) < 0) {
H A DMemoryBuffer.cpp217 int OpenFlags = O_RDONLY; local
219 OpenFlags |= O_BINARY; // Open input file in binary mode on win32.
221 int FD = ::open(Filename, OpenFlags);
/external/llvm/tools/llc/
H A Dllc.cpp318 unsigned OpenFlags = 0; local
319 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
321 OpenFlags);

Completed in 135 milliseconds