HomeSort by relevance Sort by last modified time
    Searched refs:O_WRONLY (Results 1 - 25 of 299) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/unistd/
creat.c 33 return open(pathname, O_WRONLY|O_TRUNC|O_CREAT, mode);
  /bionic/libc/stdio/
flags.c 60 m = O_WRONLY;
66 m = O_WRONLY;
  /external/valgrind/main/memcheck/tests/
fwrite.c 8 int fd = open("/dev/null", O_WRONLY);
  /hardware/libhardware_legacy/qemu_tracing/
qemu_tracing.c 42 int fd = open(SYS_QEMU_TRACE_STATE, O_WRONLY);
52 int fd = open(SYS_QEMU_TRACE_STATE, O_WRONLY);
66 int fd = open(SYS_QEMU_TRACE_SYMBOL, O_WRONLY);
79 int fd = open(SYS_QEMU_TRACE_SYMBOL, O_WRONLY);
  /external/libselinux/src/
disable.c 24 fd = open(path, O_WRONLY);
  /system/extras/tests/cpueater/
cpueater.c 53 if(open("/dev/null", O_WRONLY) < 0) {
daemonize.c 72 if(open(file, O_WRONLY|mode|O_CREAT, 0666) < 0) {
78 if(open("/dev/null", O_WRONLY) < 0) {
  /external/chromium/chrome/browser/chromeos/
external_metrics_unittest.cc 25 int fd = open(path, O_CREAT | O_APPEND | O_WRONLY, 0666);
109 int fd = open(path, O_CREAT | O_WRONLY, 0666);
120 fd = open(path, O_CREAT | O_WRONLY, 0666);
  /frameworks/native/libs/utils/
Trace.cpp 46 sTraceFD = open(traceFileName, O_WRONLY);
  /system/core/libcutils/
klog.c 39 klog_fd = open(name, O_WRONLY);
qtaguid.c 65 fd = TEMP_FAILURE_RETRY(open(CTRL_PROCPATH, O_WRONLY));
87 param_fd = TEMP_FAILURE_RETRY(open(param_path, O_WRONLY));
  /system/core/toolbox/
smd.c 21 fd = open(devname, O_WRONLY);
  /hardware/msm7k/dspcrashd/
dspcrashd.c 103 fd = open(name, O_CREAT | O_TRUNC | O_WRONLY, 0644);
121 fd = open("/dev/kmsg", O_WRONLY);
  /libcore/luni/src/main/java/java/io/
FileOutputStream.java 87 this.mode = O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC);
104 this.mode = O_WRONLY;
  /bootable/recovery/tools/ota/
check-lost+found.c 66 int fd = open(kMarkerFile, O_WRONLY|O_CREAT, 0444);
78 fd = open(fn, O_WRONLY|O_CREAT, 0444);
  /device/samsung/tuna/power/
power_tuna.c 41 int fd = open(path, O_WRONLY);
84 tuna->boostpulse_fd = open(BOOSTPULSE_PATH, O_WRONLY);
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 27 #ifndef O_WRONLY
28 #define O_WRONLY 01
  /bionic/libc/kernel/common/asm-generic/
fcntl.h 25 #define O_WRONLY 00000001
  /bootable/recovery/
adb_install.cpp 41 int fd = open("/sys/class/android_usb/android0/enable", O_WRONLY);
  /development/ndk/platforms/android-3/include/asm-generic/
fcntl.h 19 #define O_WRONLY 00000001
  /device/asus/grouper/power/
power.c 36 int fd = open(path, O_WRONLY);
  /external/chromium/chrome/browser/importer/
firefox_profile_lock_posix.cc 96 lock_fd_ = open(lock_file_.value().c_str(), O_WRONLY | O_CREAT | O_TRUNC,
  /external/e2fsprogs/contrib/
make-sparse.c 58 fd = open(argv[1], O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE, 0777);
  /external/kernel-headers/original/asm-generic/
fcntl.h 10 #define O_WRONLY 00000001
  /external/qemu/hw/
goldfish_memlog.c 79 fd = open("mem.log", /* O_CREAT | */ O_TRUNC | O_WRONLY, 0644);

Completed in 3712 milliseconds

1 2 3 4 5 6 7 8 91011>>