/third_party/elfutils/tests/ |
H A D | update3.c | 50 fd = open (fname, O_RDWR | O_CREAT | O_TRUNC, DEFFILEMODE); in main() 53 printf ("cannot open `%s': %s\n", fname, strerror (errno)); in main()
|
/third_party/eudev/src/libudev/ |
H A D | libudev-device-private.c | 47 fd = open(filename, O_WRONLY|O_CREAT|O_CLOEXEC|O_TRUNC|O_NOFOLLOW, 0444); in udev_device_tag()
|
/third_party/elfutils/debuginfod/ |
H A D | debuginfod-find.c | 162 fd = open ((char*) build_id, O_RDONLY); in main() 164 fprintf (stderr, "Cannot open %s: %s\n", build_id, strerror(errno)); in main() 170 fprintf (stderr, "Cannot open as ELF file %s: %s\n", build_id, in main()
|
/third_party/gn/src/gn/ |
H A D | eclipse_writer.cc | 59 file_out.open(FilePathToUTF8(file).c_str(), in RunAndWriteFile() 63 Err(Location(), "Couldn't open eclipse-cdt-settings.xml for writing"); in RunAndWriteFile()
|
H A D | ninja_toolchain_writer.cc | 72 file.open(FilePathToUTF8(ninja_file).c_str(), in RunAndWriteFile()
|
/third_party/ffmpeg/tools/ |
H A D | yuvcmp.c | 60 fd[i] = open(argv[1 + i], O_RDONLY); in main() 62 perror("open"); in main()
|
/third_party/alsa-lib/src/ucm/ |
H A D | ucm_exec.c | 240 f = open("/dev/null", O_RDWR); in uc_mgr_exec() 242 uc_error("pid %d cannot open /dev/null for redirect %s -- %s", in uc_mgr_exec()
|
/third_party/backends/backend/pixma/ |
H A D | pixma_bjnp_private.h | 67 #define BJNP_SOCK_MAX 256 /* maximum number of open sockets */ 76 #define BJNP_NO_DEVICES 16 /* max number of open devices */ 348 int open; /* connection to scanner is opened */ member 357 int tcp_socket; /* open tcp socket for communication to scannner */
|
/third_party/backends/japi/ |
H A D | Test.java | 70 status = sane.open(devList[0].name, handle); in main() 73 System.out.println("open() failed. Status= " + status); in main()
|
/third_party/backends/testsuite/sanei/ |
H A D | test_wire.c | 173 w.io.fd = open (outfile, flags, 0666); in main()
|
/third_party/curl/lib/ |
H A D | rand.c | 154 int fd = open(RANDOM_FILE, O_RDONLY); in randit()
|
/third_party/cJSON/tests/unity/auto/ |
H A D | unity_test_summary.py | 31 lines = list(map(lambda line: line.rstrip(), open(result_file, "r").read().split('\n')))
|
/third_party/icu/icu4c/source/common/ |
H A D | ucnv_cnv.h | 230 * When open() fails, then close() will be called, if present. 238 UConverterOpen open; member
|
/third_party/NuttX/fs/vfs/include/ |
H A D | file.h | 86 /* This is the underlying representation of an open file. A file 102 void *f_dir; /* DIR struct for iterate the directory if open a directory */ 125 /* The device driver open method differs from the mountpoint open method */ 127 int (*open)(struct file *filep); member 479 * Close an vnode (if open) 492 * Similar to files_close(). Called only from open() logic on error
|
/third_party/PyYAML/lib/yaml/ |
H A D | serializer.py | 27 def open(self): member in Serializer
|
/third_party/icu/tools/scripts/ |
H A D | uconfig_vars_test.py | 29 with open(filename, 'r') as file_handle:
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-vfs.h | 56 #define LWS_FOP_OPEN open 85 /**< optional "modification time of file", only valid if .open() 105 * gzip-compressed, then the open handler should OR 180 * lws_plat_file_open() - open vfs filepath 183 * \param vfs_path: filename to open 184 * \param flags: pointer to open flags 186 * The vfs_path is scanned for known fops signatures, and the open directed 187 * to any matching fops open.
|
/third_party/libsnd/Scripts/ |
H A D | cstyle.py | 28 there be no space between defined macro name and the open paren of the 74 # Currently open comment ends on this line. 119 , ( re.compile ("{[^\s}]"), "missing space after open brace" ) 128 , ( re.compile ("[^\s\(\[\*&']\("), "missing space before open parenthesis" ) 130 , ( re.compile ("\s(do|for|if|when)\s.*{$"), "trailing open parenthesis at end of line" ) 131 , ( re.compile ("\( [^;]"), "space after open parenthesis" ) 135 , ( re.compile ("[^\s\(\]]\["), "missing space before open square brace" ) 137 , ( re.compile ("\[ "), "space after open square brace" ) 151 , ( re.compile ("\)\s*{\s*$"), "open curly brace at end of line" ) 176 cfile = open (filenam [all...] |
/third_party/libwebsockets/lib/plat/freertos/ |
H A D | freertos-file.c | 39 int ret = open(filename, *flags, 0664); in _lws_plat_file_open() 47 fop_fd = lws_malloc(sizeof(*fop_fd), "fops open"); in _lws_plat_file_open() 163 lwsl_notice("%s: failed to open nvs\n", __func__); in lws_plat_write_file() 200 lwsl_notice("%s: failed to open nvs\n", __func__); in lws_plat_read_file()
|
/third_party/libsnd/programs/ |
H A D | sndfile-salvage.c | 109 if ((fd = open (broken_wav, O_RDONLY)) < 0) in salvage_file() 110 { printf ("Error : Not able to open file '%s' : %s\n", broken_wav, strerror (errno)) ; in salvage_file()
|
/third_party/libsnd/tests/ |
H A D | multi_file_test.c | 141 if ((fd = open (filename, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR)) < 0) in multi_file_test() 142 { printf ("\n\nLine %d: open failed : %s\n", __LINE__, strerror (errno)) ; in multi_file_test()
|
/third_party/lzma/CPP/7zip/Crypto/ |
H A D | RandGen.cpp | 128 int f = open("/dev/urandom", O_RDONLY);
in Init()
|
/third_party/jerryscript/tools/ |
H A D | gen-doctest.py | 104 with open(outname, 'w') as outfile:
|
/third_party/jerryscript/targets/curie_bsp/ |
H A D | setup.py | 114 with open(norm_path, "w+") as f:
|
/third_party/mesa3d/src/freedreno/perfcntrs/ |
H A D | freedreno_dt.c | 246 int fd = open("/dev/mem", O_RDWR | O_SYNC); in fd_dt_find_io()
|