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

  /external/bison/lib/
spawn_int.h 44 int oflag; member in struct:__spawn_action::__anon4982::__anon4985
  /external/lldb/source/Core/
ConnectionSharedMemory.cpp 117 int oflag = O_RDWR; local
119 oflag |= O_CREAT;
120 m_fd = ::shm_open (m_name.c_str(), oflag, S_IRUSR|S_IWUSR);
  /external/lldb/source/Host/common/
File.cpp 193 int oflag = 0; local
199 oflag |= O_RDWR;
201 oflag |= O_WRONLY;
204 oflag |= O_APPEND;
207 oflag |= O_TRUNC;
210 oflag |= O_CREAT;
213 oflag |= O_CREAT | O_EXCL;
217 oflag |= O_RDONLY;
221 oflag |= O_NONBLOCK;
224 if (oflag & O_CREAT
    [all...]
  /external/lldb/source/Target/
Process.cpp 714 int oflag = info->m_arg; local
718 if (oflag & O_CREAT)
724 oflag,
729 "posix_spawn_file_actions_addopen (action=%p, fd=%i, path='%s', oflag=%i, mode=%i)",
730 file_actions, info->m_fd, info->m_path.c_str(), oflag, mode);
    [all...]

Completed in 484 milliseconds