/third_party/node/deps/zlib/ |
H A D | gzlib.c | 10 # define OPEN open 17 # define OPEN open 212 /* compute the flags for open() */ in gz_open() 233 /* open the file with the appropriate flags (or just use fd) */ in gz_open()
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | analyzer.py | 273 f = open(config_path) 277 raise Exception("Unable to open file " + config_path) 585 f = open(output_path, "w")
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | common.py | 482 with open(source_path) as source_file: 493 with open(tool_path, "w") as tool_file:
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | mount.c | 450 int fd = open("/dev/null", O_RDONLY); in fuse_mount_fusermount() 510 fd = open(devname, O_RDWR); in fuse_mount_sys() 516 fprintf(stderr, "fuse: failed to open %s: %s\n", devname, in fuse_mount_sys()
|
/third_party/mesa3d/src/loader/ |
H A D | loader.c | 121 fd = open(device_name, O_RDWR | O_CLOEXEC); in loader_open_device() 125 fd = open(device_name, O_RDWR); in loader_open_device() 130 log_(_LOADER_WARNING, "failed to open %s: %s\n", in loader_open_device() 675 log_(_LOADER_DEBUG, "MESA-LOADER: failed to open %s: %s\n", in loader_open_driver_lib() 687 "MESA-LOADER: failed to open %s: %s (search paths %s, suffix %s)\n", in loader_open_driver_lib()
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | analyzer.py | 273 f = open(config_path) 277 raise Exception("Unable to open file " + config_path) 585 f = open(output_path, "w")
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | common.py | 476 with open(source_path) as source_file: 487 with open(tool_path, "w") as tool_file:
|
/third_party/libevdev/libevdev/ |
H A D | libevdev-uinput.c | 261 fd = open(buf, O_RDONLY); in fetch_syspath_and_devnode() 382 fd = open("/dev/uinput", O_RDWR|O_CLOEXEC); in libevdev_uinput_create_from_device()
|
/third_party/libinput/tools/ |
H A D | libinput-measure-touchpad-size.py | 252 fd = open(args.path, "rb") 333 modalias = open("/sys/class/dmi/id/modalias").read().strip() 389 print("Unable to open device. Please run me as root", file=sys.stderr)
|
/third_party/ltp/testcases/kernel/syscalls/nftw/ |
H A D | test_func64.c | 573 if ((fd = open(path_name, O_RDONLY)) == -1) { in test_func21() 574 perror("open"); in test_func21() 602 if ((fd = open(path_name, O_RDONLY)) == -1) { in test_func22() 603 perror("open"); in test_func22()
|
H A D | test_func.c | 560 if ((fd = open(path_name, O_RDONLY)) == -1) { in test_func21() 561 perror("open"); in test_func21() 589 if ((fd = open(path_name, O_RDONLY)) == -1) { in test_func22() 590 perror("open"); in test_func22()
|
/third_party/ltp/testcases/realtime/lib/ |
H A D | librttest.c | 645 int fd = open(pathname, O_WRONLY); in write_file() 647 printf("Failed to open file \"%s\": %d (%s)\n", in write_file() 670 int fd = open(pathname, O_RDONLY); in read_and_print() 672 printf("Failed to open file \"%s\": %d (%s)\n", in read_and_print()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
H A D | trace-parser.py | 143 file = gzip.open(filename, "r") 146 file = open(filename, "r")
|
/third_party/mindspore/test/utils/ |
H A D | common.cpp | 67 printf("ERROR: cant't open file %s\n", infile.c_str()); in readTestDataFile() 78 printf("ERROR: cant't open file %s\n", infile.c_str()); in readTestDataFile() 182 file.open("cout.csv", std::ios::app); in allclose() 274 file.open("cout.csv", std::ios::app); in allclose_int8()
|
/third_party/node/deps/openssl/openssl/providers/implementations/rands/seeding/ |
H A D | rand_unix.c | 467 if ((fd = open(DEVRANDOM_WAIT, O_RDONLY)) != -1) { in wait_random_seeded() 508 * uncommon for daemons to close all open file handles when daemonizing. 536 /* open the random device ... */ in get_random_device() 537 if ((rd->fd = open(random_device_paths[n], O_RDONLY)) == -1) in get_random_device()
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | tables.py | 86 _open=open, 122 _open=open,
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _capi.py | 336 with open(filename) as infile: 364 infile = open(filename)
|
/third_party/python/Tools/scripts/ |
H A D | stable_abi.py | 610 with filename.open('rb') as file: 688 file = args.file.open('rb')
|
H A D | summarize_stats.py | 89 with open(os.path.join(DEFAULT_DIR, filename)) as fd: 235 with open(spec_path) as spec_src:
|
/third_party/python/Tools/ssl/ |
H A D | multissltests.py | 269 with open(self.src_file, "wb") as f: 279 tf = tarfile.open(self.src_file)
|
/third_party/python/Lib/ |
H A D | compileall.py | 227 with open(cfile, 'rb') as chandle: 410 open(args.flist, encoding="utf-8")) as f:
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_archive_util.py | 123 tar = tarfile.open(path) 384 archive = tarfile.open(archive_name)
|
/third_party/python/Lib/distutils/command/ |
H A D | sdist.py | 397 fp = open(self.manifest) 410 with open(self.manifest) as manifest:
|
/third_party/python/Lib/test/ |
H A D | multibytecodec_support.py | 379 with open(os.path.join(dir, name + '.txt'), 'rb') as f: 381 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f:
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/ |
H A D | vktWsiAcquireDrmDisplayTests.cpp | 298 TCU_THROW(NotSupportedError, "Could not open DRM."); in testGetDrmDisplayEXT() 327 TCU_THROW(NotSupportedError, "Could not open DRM."); in testGetDrmDisplayEXTInvalidFd() 334 int invalidFd = open("/", O_RDONLY | O_PATH); in testGetDrmDisplayEXTInvalidFd() 355 TCU_THROW(NotSupportedError, "Could not open DRM."); in testGetDrmDisplayEXTInvalidConnectorId() 386 TCU_THROW(NotSupportedError, "Could not open DRM."); in testGetDrmDisplayEXTNotMaster() 388 TCU_THROW(NotSupportedError, "Did not open 2 different fd."); in testGetDrmDisplayEXTNotMaster() 425 TCU_THROW(NotSupportedError, "Could not open DRM."); in testGetDrmDisplayEXTUnownedConnectorId() 473 TCU_THROW(NotSupportedError, "Could not open DRM."); in testAcquireDrmDisplayEXT() 509 TCU_THROW(NotSupportedError, "Could not open DRM."); in testAcquireDrmDisplayEXTInvalidFd() 524 int invalidFd = open("/", O_RDONL in testAcquireDrmDisplayEXTInvalidFd() [all...] |