HomeSort by relevance Sort by last modified time
    Searched refs:OpenFlags (Results 1 - 7 of 7) sorted by null

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/sftp/
OpenFlags.java 64 public class OpenFlags
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 61 int OpenFlags = O_RDONLY;
63 OpenFlags |= O_BINARY; // Open input file in binary mode on win32.
65 *FileDescriptor = ::open(Path, OpenFlags);
  /external/llvm/lib/Support/
DataStream.cpp 73 int OpenFlags = O_RDONLY;
75 OpenFlags |= O_BINARY; // Open input file in binary mode on win32.
77 Fd = ::open(Filename.c_str(), OpenFlags);
raw_ostream.cpp 445 int OpenFlags = O_WRONLY|O_CREAT;
448 OpenFlags |= O_BINARY;
452 OpenFlags |= O_APPEND;
454 OpenFlags |= O_TRUNC;
456 OpenFlags |= O_EXCL;
458 while ((FD = open(Filename, OpenFlags, 0664)) < 0) {
MemoryBuffer.cpp 217 int OpenFlags = O_RDONLY;
219 OpenFlags |= O_BINARY; // Open input file in binary mode on win32.
221 int FD = ::open(Filename, OpenFlags);
  /external/llvm/tools/llc/
llc.cpp 318 unsigned OpenFlags = 0;
319 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
321 OpenFlags);
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 533 unsigned OpenFlags = 0;
534 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
536 OpenFlags);

Completed in 169 milliseconds