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

  /external/swiftshader/third_party/LLVM/tools/llc/
llc.cpp 208 unsigned OpenFlags = 0;
209 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
211 OpenFlags);
  /external/llvm/tools/llc/
llc.cpp 200 sys::fs::OpenFlags OpenFlags = sys::fs::F_None;
202 OpenFlags |= sys::fs::F_Text;
204 OpenFlags);
  /external/swiftshader/third_party/LLVM/lib/Support/
MemoryBuffer.cpp 219 int OpenFlags = O_RDONLY;
221 OpenFlags |= O_BINARY; // Open input file in binary mode on win32.
223 int FD = ::open(Filename, OpenFlags);
raw_ostream.cpp 444 int OpenFlags = O_WRONLY|O_CREAT;
447 OpenFlags |= O_BINARY;
451 OpenFlags |= O_APPEND;
453 OpenFlags |= O_TRUNC;
455 OpenFlags |= O_EXCL;
457 while ((FD = open(Filename, OpenFlags, 0664)) < 0) {

Completed in 5276 milliseconds