Home
last modified time | relevance | path

Searched refs:newflags (Results 1 – 8 of 8) sorted by relevance

/external/bison/lib/
Dcloexec.c47 int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC); in set_cloexec_flag() local
49 if (flags == newflags in set_cloexec_flag()
50 || fcntl (desc, F_SETFD, newflags) != -1) in set_cloexec_flag()
/external/llvm/test/CodeGen/X86/
Dinline-asm-ptr-cast.ll13 %newflags = alloca i64, align 8
17 store i64 -1, i64* %newflags, align 8
25 … $0 \0A", "=*&rm,=*&rm,i,r,r,1,~{cc},~{dirflag},~{fpsr},~{flags}"(i64* %newflags, i8* %0, i64 -2, …
/external/qemu/
Diolooper-select.c61 iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags ) in iolooper_modify() argument
66 int changed = oldflags ^ newflags; in iolooper_modify()
69 if ((newflags & IOLOOPER_READ) != 0) in iolooper_modify()
75 if ((newflags & IOLOOPER_WRITE) != 0) in iolooper_modify()
Diolooper.h23 void iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags);
Dconsole.h233 int linesize, PixelFormat pf, int newflags);
Dconsole.c1339 int linesize, PixelFormat pf, int newflags) in qemu_alloc_display() argument
1353 surface->flags = newflags | QEMU_ALLOCATED_FLAG; in qemu_alloc_display()
/external/aac/libSBRdec/src/
Denv_calc.cpp239 int newflags = 0; in mapSineFlags() local
268 newflags |= mask; /* Set flag */ in mapSineFlags()
279 *harmFlagsPrev++ = newflags; in mapSineFlags()
281 newflags = 0; in mapSineFlags()
/external/strace/
Dstrace.c226 int flags, newflags; in set_cloexec_flag() local
235 newflags = flags | FD_CLOEXEC; in set_cloexec_flag()
236 if (flags == newflags) in set_cloexec_flag()
239 if (fcntl(fd, F_SETFD, newflags) < 0) in set_cloexec_flag()