HomeSort by relevance Sort by last modified time
    Searched refs:open (Results 401 - 425 of 10793) sorted by null

<<11121314151617181920>>

  /external/autotest/server/site_tests/video_VDAStress/
generate_controlfiles.py 68 with open(filename, 'w+') as f:
  /external/autotest/site_utils/presubmit_hooks/
check_json_files.py 31 with open(f) as json_file:
  /external/clang/utils/analyzer/
update_plist_test.pl 18 open (IN, $testFile) or die "cannot open $testFile\n";
26 open (IN, $plistFile) or die "cannot open $plistFile\n";
  /external/compiler-rt/test/sanitizer_common/TestCases/Posix/
sanitizer_set_report_fd_test.cc 29 int fd = open(argv[1], O_CREAT | O_WRONLY | O_TRUNC, S_IRWXU);
  /external/curl/tests/
extern-scan.pl 49 open H, "<$f" || die;
  /external/curl/tests/libtest/
test1013.pl 14 open(CURL, "$ARGV[1]") || die "Can't get curl $what list\n";
31 open(CURLCONFIG, "sh $ARGV[0] --$what|") || die "Can't get curl-config $what list\n";
  /external/honggfuzz/examples/externalfuzzers/
lowBytesIncrease.py 9 with open(sys.argv[1], "r+b") as f:
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
MemoryMultiReportOutput.java 38 private final Set<String> open = new HashSet<String>(); field in class:MemoryMultiReportOutput
44 open.add(path);
48 open.remove(path);
87 assertEquals(Collections.emptySet(), open); local
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
ResourceLoader.java 41 * Open a resource. If this resource is not found, null should be returned.
48 * @throws IOException if resource fails to open
50 Reader open(String name) throws IOException; method in interface:ResourceLoader
53 * Open a resource or throw an exception if no such resource is found.
61 * @throws IOException if resource fails to open
92 * if a call to {@link #open(String)} would also return null.
  /external/libese/esed/
ScopedEseConnection.h 2 * Copyright (C) 2017 The Android Open Source Project
34 int res = mEse_.open();
36 LOG(ERROR) << "Failed to open eSE connection: " << res;
  /external/libese/libese-cpp/
NxpPn80tNqNci.cpp 2 * Copyright (C) 2017 The Android Open Source Project
29 int NxpPn80tNqNci::open() { function in class:android::NxpPn80tNqNci
  /external/linux-kselftest/tools/testing/selftests/efivarfs/
open-unlink.c 20 fd = open(path, O_RDONLY);
51 fd = open(path, O_RDONLY);
89 fd = open(path, O_WRONLY | O_CREAT, 0600);
91 perror("open(O_WRONLY)");
115 fd = open(path, O_RDONLY);
117 perror("open");
  /external/llvm/utils/
UpdateCMakeLists.pl 64 open(IN, $cmakeList);
65 open(OUT, ">", $cmakeListNew);
87 open(FILE, $cmakeList) or
88 die("Cannot open $cmakeList when computing digest\n");
93 open(FILE, $cmakeListNew) or
94 die("Cannot open $cmakeListNew when computing digest\n");
test_debuginfo.pl 38 open(INPUT, $testcase_file);
39 open(OUTPUT, ">$debugger_script_file");
  /external/ltp/testcases/realtime/scripts/
parser.py 36 self.__log_file = open(log_file, "r")
  /external/ply/ply/example/yply/
yply.py 45 yacc.parse(open(filename).read())
  /external/protobuf/jenkins/
make_test_output.py 32 with open(basedir + "/joblog") as jobs:
52 with open(basedir + "/logs/1/" + testname + "/stdout") as f:
55 with open(basedir + "/logs/1/" + testname + "/stderr") as f:
62 with open(basedir + '/logs/1/cpp/build_time', 'r') as f:
  /external/python/cpython2/Demo/scripts/
from.py 9 # Open mailbox file. Exits with exception when this fails.
18 mail = open(mailbox)
20 sys.exit('Cannot open mailbox file: ' + mailbox)
  /external/python/cpython2/Doc/includes/
email-simple.py 7 # Open a plain text file for reading. For this example, assume that
9 fp = open(textfile, 'rb')
  /external/python/cpython2/Lib/test/
test_pipes.py 23 f = t.open(TESTFN, 'w')
26 with open(TESTFN) as f:
30 with open(TESTFN, 'w') as f:
35 with open(TESTFN2) as f:
39 with open(TESTFN, 'w') as f:
43 with t.open(TESTFN, 'r') as f:
49 with open(TESTFN, 'w') as f:
51 with open(TESTFN2, 'w') as f:
55 with open(TESTFN2) as f:
61 with open(TESTFN, 'w') as f
    [all...]
  /external/python/cpython2/Tools/scripts/
google.py 20 webbrowser.open(url)
  /external/python/cpython3/Lib/test/
test_pipes.py 26 f = t.open(TESTFN, 'w')
29 with open(TESTFN) as f:
35 with open(TESTFN, 'w') as f:
40 with open(TESTFN2) as f:
46 with open(TESTFN, 'w') as f:
50 f = t.open(TESTFN, 'r')
59 with open(TESTFN, 'w') as f:
61 with open(TESTFN2, 'w') as f:
65 with open(TESTFN2) as f:
71 with open(TESTFN, 'w') as f
    [all...]
test_symbol.py 17 with open(source_file) as fp:
19 with open(dest_file, 'w') as fp:
32 with open(file1) as fp:
34 with open(file2) as fp:
  /external/python/cpython3/Tools/scripts/
google.py 20 webbrowser.open(url)
  /external/strace/tests/
scm_rights.c 58 while ((i = open("/dev/null", O_RDWR)) <= ac + 2)
71 assert((fds[0] = open("/dev/null", O_RDWR)) == 4);
73 assert((fds[i] = open(av[i], O_RDONLY)) == i + 4);
89 assert(open("/dev/null", O_RDWR) == sv[1]);

Completed in 801 milliseconds

<<11121314151617181920>>