Home | History | Annotate | Download | only in arch-mips

Lines Matching full:mipsflags

180     int mipsflags = flags & O_ACCMODE_PORTABLE;
183 mipsflags |= O_CREAT;
185 mipsflags |= O_EXCL;
187 mipsflags |= O_NOCTTY;
189 mipsflags |= O_TRUNC;
191 mipsflags |= O_APPEND;
193 mipsflags |= O_NONBLOCK;
195 mipsflags |= O_SYNC;
197 mipsflags |= FASYNC;
199 mipsflags |= O_DIRECT;
201 mipsflags |= O_LARGEFILE;
203 mipsflags |= O_DIRECTORY;
205 mipsflags |= O_NOFOLLOW;
207 mipsflags |= O_NOATIME;
209 mipsflags |= O_NDELAY;
211 ALOGV("%s(flags:0x%x): return(mipsflags:0x%x);", __func__,
212 flags, mipsflags);
214 return mipsflags;