HomeSort by relevance Sort by last modified time
    Searched refs:O_EXCL (Results 101 - 125 of 181) sorted by null

1 2 3 45 6 7 8

  /development/ndk/sources/android/libportable/arch-mips/
fcntl.c 185 mipsflags |= O_EXCL;
223 if (flags & O_EXCL)
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/freebsd/
SDL_syscdrom.c 76 cdfd = open(drive, (O_RDONLY|O_EXCL|O_NONBLOCK), 0);
239 return(open(SDL_cdlist[drive], (O_RDONLY|O_EXCL|O_NONBLOCK), 0));
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/openbsd/
SDL_syscdrom.c 79 cdfd = open(drive, (O_RDONLY|O_EXCL|O_NONBLOCK), 0);
248 return(open(SDL_cdlist[drive], (O_RDONLY|O_EXCL|O_NONBLOCK), 0));
  /frameworks/native/opengl/libs/EGL/
egl_cache.cpp 225 int fd = open(fname, O_CREAT | O_EXCL | O_RDWR, 0);
236 fd = open(fname, O_CREAT | O_EXCL | O_RDWR, 0);
  /system/core/adb/
file_sync_service.c 157 fd = adb_open_mode(path, O_WRONLY | O_CREAT | O_EXCL, mode);
160 fd = adb_open_mode(path, O_WRONLY | O_CREAT | O_EXCL, mode);
  /external/chromium_org/base/files/
file_posix.cc 132 open_flags = O_CREAT | O_EXCL;
186 open_flags |= O_EXCL; // together with O_CREAT implies O_NOFOLLOW
  /external/chromium_org/base/
platform_file_posix.cc 131 open_flags = O_CREAT | O_EXCL;
190 open_flags |= O_EXCL; // together with O_CREAT implies O_NOFOLLOW
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/bsdi/
SDL_syscdrom.c 200 cdfd = open(drive, (O_RDONLY|O_EXCL|O_NONBLOCK), 0);
340 return(open(SDL_cdlist[drive], O_RDONLY | O_NONBLOCK | O_EXCL, 0));
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_mem.cc 130 if (open_flags & O_EXCL)
mount_node_html5fs.cc 66 if (open_flags & O_EXCL)
  /external/chromium_org/tools/coverity/
coverity.py 112 os.O_CREAT | os.O_EXCL | os.O_TRUNC | os.O_RDWR)
  /external/dropbear/
dropbearkey.c 346 fd = open(filename, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
  /external/e2fsprogs/lib/ext2fs/
ismounted.c 332 fd = open(device, O_RDONLY | O_EXCL);
  /external/iproute2/ip/
ipnetns.c 221 fd = open(netns_path, O_RDONLY|O_CREAT|O_EXCL, 0);
  /system/core/sh/
redir.c 208 oflags |= O_EXCL;
  /dalvik/dexopt/
OptMain.cpp 367 outFd = open(outName, O_RDWR | O_EXCL | O_CREAT, 0666);
  /external/chromium_org/base/memory/
shared_memory_posix.cc 169 open(path.value().c_str(), O_RDWR | O_CREAT | O_EXCL, kOwnerOnly));
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mount_fuse_test.cc 101 if (fi->flags & O_EXCL)
  /external/chromium_org/sandbox/linux/services/
broker_process.cc 105 O_DIRECTORY | O_EXCL | O_LARGEFILE | O_NOATIME | O_NOCTTY |
  /external/chromium_org/third_party/sqlite/src/src/
test_demovfs.c 429 if( flags&SQLITE_OPEN_EXCLUSIVE ) oflags |= O_EXCL;
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc 181 uptr openrv = internal_open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
  /external/liblzf/
lzf.c 318 int m = O_EXCL;
  /external/netperf/
netcpu_looper.c 300 lib_idle_fd = open("/tmp/netperf_cpu",O_RDWR | O_CREAT | O_EXCL);
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/qnx/
SDL_syscdrom.c 44 #define QNX_CD_OPENMODE O_RDONLY | O_EXCL
  /external/yaffs2/yaffs2/direct/
yaffsfs.c 394 if(((oflag & O_EXCL) && alreadyOpen) || alreadyExclusive)
399 // Open should fail if O_CREAT and O_EXCL are specified
400 if((oflag & O_EXCL) && (oflag & O_CREAT))
448 h->exclusive = (oflag & O_EXCL) ? 1 : 0;

Completed in 1252 milliseconds

1 2 3 45 6 7 8