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

  /external/bison/lib/
cloexec.c 47 int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC); local
49 if (flags == newflags
50 || fcntl (desc, F_SETFD, newflags) != -1)
  /libcore/ojluni/src/main/native/
IOUtil.c 77 int newflags = blocking ? (flags & ~O_NONBLOCK) : (flags | O_NONBLOCK); local
79 return (flags == newflags) ? 0 : fcntl(fd, F_SETFL, newflags);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
memoryobject.c 596 int newflags = view->readonly local
601 if (PyObject_GetBuffer(view->obj, &newview, newflags) == -1)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
memoryobject.c 596 int newflags = view->readonly local
601 if (PyObject_GetBuffer(view->obj, &newview, newflags) == -1)
  /external/python/cpython2/Objects/
memoryobject.c 596 int newflags = view->readonly local
601 if (PyObject_GetBuffer(view->obj, &newview, newflags) == -1)
  /external/strace/
strace.c 451 int flags, newflags; local
463 newflags = flags | FD_CLOEXEC;
464 if (flags == newflags)
467 fcntl(fd, F_SETFD, newflags); /* never fails */
    [all...]
  /external/aac/libSBRdec/src/
env_calc.cpp 248 int newflags = 0; local
277 newflags |= mask; /* Set flag */
288 *harmFlagsPrev++ = newflags;
290 newflags = 0;
    [all...]

Completed in 276 milliseconds