/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
H A D | pwrite.c | 41 int fd = open("pwrite_0100", O_CREAT | O_RDWR, TEST_MODE); in pwrite_0100() 59 * @tc.desc : Provide illegal parameter data, write data to the open file 68 int fd = open("pwrite_0200", O_CREAT | O_RDWR, TEST_MODE); in pwrite_0200()
|
H A D | renameat.c | 46 oldfd = open(oldPath, O_RDWR); in renameat_0100() 56 newfd = open(newPath, O_RDWR); in renameat_0100()
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/t/ |
H A D | taint.t | 32 open my $fh, '>', $file or die "Couldn't write temporary file $file: $!"; 82 open $fh, '<', $file or die "Couldn't open $file for reading: $!; aborting"; 86 open $fh, '<', $file or die "Couldn't open $file for reading: $!; aborting";
|
/third_party/python/Tools/freeze/ |
H A D | makeconfig.py | 47 infp = open(sys.argv[1]) 51 outfp = open(sys.argv[2], 'w')
|
/third_party/python/Tools/peg_generator/scripts/ |
H A D | joinstats.py | 27 with open(filename) as f: 44 with open(filename) as f:
|
/third_party/python/Tools/scripts/ |
H A D | parseentities.py | 53 with open(sys.argv[1]) as infile: 61 with open(sys.argv[2],'w') as outfile:
|
/third_party/protobuf/examples/ |
H A D | add_person.py | 53 with open(sys.argv[1], "rb") as f: 62 with open(sys.argv[1], "wb") as f:
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | start-child.c | 80 pa_assert_se(open("/dev/null", O_RDONLY) == STDIN_FILENO); in pa_start_child_for_read() 83 pa_assert_se(open("/dev/null", O_WRONLY) == STDERR_FILENO); in pa_start_child_for_read()
|
/third_party/python/Lib/ |
H A D | io.py | 2 builtin open function is defined in this module. 25 of open() are intended to be used as keyword arguments. 32 I/O classes. open() uses the file's blksize (as obtained by os.stat) if 44 __all__ = ["BlockingIOError", "open", "open_code", "IOBase", "RawIOBase", 55 open, open_code, FileIO, BytesIO, StringIO, BufferedReader, 62 # bpo-43680: Until Python 3.9, _pyio.open was not a static method and 63 # builtins.open was set to OpenWrapper to not become a bound method 64 # when set to a class variable. _io.open is a built-in function whereas 65 # _pyio.open is a Python function. In Python 3.10, _pyio.open() i [all...] |
/third_party/vk-gl-cts/external/amber/src/tools/ |
H A D | update_build_version.py | 74 with open(file, 'r') as f: 77 with open(file, 'w') as f:
|
/third_party/skia/third_party/externals/spirv-tools/test/scripts/ |
H A D | test_compact_ids.py | 38 with open(converted_dis_path, 'r') as f: 41 with open(optimized_dis_path, 'r') as f:
|
/third_party/skia/third_party/externals/spirv-tools/utils/ |
H A D | generate_registry_tables.py | 81 with open(args.xml) as xml_in: 85 with open(args.generator_output, 'w') as f:
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/file_hooking/ |
H A D | shader_cache_file_hooking.cpp | 31 return open(path, flags, mode); in HookedOpen() 35 std::cerr << "open(\"" << path << "\", \"" << flags << "\") is skipped" << std::endl; in HookedOpen() 79 DYLD_INTERPOSE(HookedOpen, open)
|
/third_party/openssl/external/perl/Text-Template-1.56/t/ |
H A D | taint.t | 32 open my $fh, '>', $file or die "Couldn't write temporary file $file: $!"; 82 open $fh, '<', $file or die "Couldn't open $file for reading: $!; aborting"; 86 open $fh, '<', $file or die "Couldn't open $file for reading: $!; aborting";
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/scripts/ |
H A D | test_compact_ids.py | 38 with open(converted_dis_path, 'r') as f: 41 with open(optimized_dis_path, 'r') as f:
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/ |
H A D | generate_registry_tables.py | 81 with open(args.xml) as xml_in: 85 with open(args.generator_output, 'w') as f:
|
/third_party/skia/third_party/externals/oboe/src/common/ |
H A D | FixedBlockReader.cpp | 30 int32_t FixedBlockReader::open(int32_t bytesPerFixedBlock) { in open() function in FixedBlockReader 31 int32_t result = FixedBlockAdapter::open(bytesPerFixedBlock); in open()
|
/third_party/skia/third_party/externals/oboe/tests/ |
H A D | testAAudio.cpp | 31 return (mAAudioLoader->open() != 0); in openAAudio() 36 ASSERT_EQ(0, mAAudioLoader->open()); in createBuilder()
|
/third_party/skia/third_party/externals/brotli/scripts/dictionary/ |
H A D | step-04-generate-java-literals.py | 20 with open(bin_path, "rb") as raw: 78 with open(src_path, "w") as source:
|
/third_party/skia/third_party/icu/ |
H A D | make_data_cpp.py | 21 with open(path, 'rb') as f: 35 with open(dst_path, 'w') as o:
|
/third_party/skia/tools/ |
H A D | build_workaround_header.py | 25 with open(filename, 'r') as f: 33 with open(filename, 'w') as f:
|
/third_party/toybox/toys/other/ |
H A D | shred.c | 43 // respond to files we can't open via chmod. in shred_main() 47 int fd = open(*try, O_RDWR), iter = 0, throw; in shred_main() 52 fd = open(*try, O_RDWR); in shred_main()
|
/third_party/python/Programs/ |
H A D | freeze_test_frozenmain.py | 25 with tokenize.open(filename) as source_fp: 39 with open(filename, "w") as fp:
|
/third_party/python/Doc/tools/extensions/ |
H A D | escape4chm.py | 45 with open(outdir / (outname + '.hhk'), 'rb') as f: 47 with open(outdir / (outname + '.hhk'), 'wb') as f:
|
/third_party/skia/experimental/tools/ |
H A D | mskp_parser.py | 22 src = open(mskp_src, 'rb') 49 with open(sys.argv[2], 'wb') as o:
|