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

1 2 34 5 6 7 8 91011>>

  /external/selinux/libsepol/cil/test/integration_testing/
nonmls.conf 15 open
23 open
57 allow typea_t typeb_t : testing {open close};
  /tools/metalava/src/main/java/com/android/tools/metalava/model/
CompilationUnit.kt 2 * Copyright (C) 2017 The Android Open Source Project
24 open class CompilationUnit(
30 open fun getHeaderComments(): String? = null
34 open fun getImportStatements(predicate: Predicate<Item>): Collection<Item> = emptyList()
  /external/python/cpython2/Lib/test/
make_ssl_certs.py 100 with open(req_file, 'w') as f:
121 with open(cert_file, 'r') as f:
123 with open(key_file, 'r') as f:
137 with open(os.path.join('cadir','index.txt'),'a+') as f:
139 with open(os.path.join('cadir','crl.txt'),'a+') as f:
141 with open(os.path.join('cadir','index.txt.attr'),'w+') as f:
164 with open('ssl_cert.pem', 'w') as f:
166 with open('ssl_key.pem', 'w') as f:
172 with open('keycert.pem', 'w') as f:
176 with open('keycert.passwd.pem', 'a+') as f
    [all...]
test_dumbdbm.py 34 f = dumbdbm.open(_fname, 'c')
46 f = dumbdbm.open(_fname, 'c', 0637)
64 f = dumbdbm.open(_fname)
72 f = dumbdbm.open(_fname, 'w')
79 f = dumbdbm.open(_fname, 'r')
85 f = dumbdbm.open(_fname)
91 f = dumbdbm.open(_fname)
95 f = dumbdbm.open(_fname)
102 f = dumbdbm.open(_fname)
108 data = open(_fname + '.dir').read(
    [all...]
  /external/python/cpython3/Lib/test/
make_ssl_certs.py 99 with open(req_file, 'w') as f:
120 with open(cert_file, 'r') as f:
122 with open(key_file, 'r') as f:
136 with open(os.path.join('cadir','index.txt'),'a+') as f:
138 with open(os.path.join('cadir','crl.txt'),'a+') as f:
140 with open(os.path.join('cadir','index.txt.attr'),'w+') as f:
163 with open('ssl_cert.pem', 'w') as f:
165 with open('ssl_key.pem', 'w') as f:
171 with open('keycert.pem', 'w') as f:
175 with open('keycert.passwd.pem', 'a+') as f
    [all...]
test_bufio.py 16 # Write s + "\n" + s to file, then open it and ensure that successive
19 # Ensure we can open TESTFN for writing.
24 f = self.open(support.TESTFN, "wb")
31 f = open(support.TESTFN, "rb")
66 open = io.open variable in class:CBufferSizeTest
69 open = staticmethod(pyio.open) variable in class:PyBufferSizeTest
  /external/autotest/client/site_tests/kernel_CpufreqMinMax/
kernel_CpufreqMinMax.py 41 f = open(self.sys_cpufreq_path + filename, 'w')
45 f = open(self.sys_cpufreq_path + filename, 'r')
64 f = open(self.sys_cpufreq_path + 'scaling_driver', 'r')
66 fmin = open(self.sys_cpufreq_path + 'cpuinfo_min_freq', 'r')
67 fmax = open(self.sys_cpufreq_path + 'cpuinfo_max_freq', 'r')
80 f = open(self.sys_cpufreq_path + 'scaling_available_frequencies', 'r')
89 f = open(self.sys_cpufreq_path + 'scaling_max_freq', 'r')
  /libcore/dalvik/src/test/java/libcore/dalvik/system/
CloseGuardTest.java 2 * Copyright (C) 2016 The Android Open Source Project
62 owner.open();
70 owner.open();
80 owner.open();
91 owner.open();
94 // We report if CloseGuard was enabled on open.
109 owner.open();
117 owner.open();
127 owner.open();
129 // The enabled state only matters during the open call
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
tool.py 21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
25 outfile = open(sys.argv[2], 'wb')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
tool.py 21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
25 outfile = open(sys.argv[2], 'wb')
  /external/python/cpython2/Lib/json/
tool.py 21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
25 outfile = open(sys.argv[2], 'wb')
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
InputPort.java 2 * Copyright (C) 2011 The Android Open Source Project
42 public void open() { method in class:InputPort
43 super.open();
45 mSourcePort.open();
  /frameworks/base/tools/fonts/
add_additional_fonts.py 3 # Copyright (C) 2017 The Android Open Source Project
30 with open(original_file, 'r') as input_file:
31 with open(output_file_path, 'w') as output_file:
36 with open(override_file_path) as override_file:
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
TestAssetRepository.java 2 * Copyright (C) 2017 The Android Open Source Project
39 private static InputStream open(String path) throws FileNotFoundException { method in class:TestAssetRepository
55 return open(mAssetPath + path);
60 return open(path);
  /frameworks/support/lifecycle/compiler/
reset_results.py 4 # Copyright 2017, The Android Open Source Project
26 with open(sys.argv[1]) as f:
29 with open("src/tests/test-data/expected/license.txt") as license:
34 file = open("src/tests/test-data/expected/" + fileName, "w")
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
PipeTest.java 34 * @tests java.nio.channels.Pipe#open()
37 Pipe pipe = Pipe.open();
45 Pipe pipe = Pipe.open();
54 Pipe pipe = Pipe.open();
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
tool.py 21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
25 outfile = open(sys.argv[2], 'wb')
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
tool.py 21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
25 outfile = open(sys.argv[2], 'wb')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
tool.py 21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
25 outfile = open(sys.argv[2], 'wb')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
tool.py 21 infile = open(sys.argv[1], 'rb')
24 infile = open(sys.argv[1], 'rb')
25 outfile = open(sys.argv[2], 'wb')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
whichdb.py 2 """Guess which db package to use to open a db file."""
18 """Guess which db package to use to open a db file.
32 f = open(filename + os.extsep + "pag", "rb")
36 f = open(filename + os.extsep + "dir", "rb")
43 f = open(filename + os.extsep + "db", "rb")
45 # guarantee we can actually open the file using dbm
49 d = dbm.open(filename)
63 f = open(filename + os.extsep + "dir", "rb")
74 f = open(filename, "rb")
  /external/python/cpython2/Lib/
whichdb.py 2 """Guess which db package to use to open a db file."""
18 """Guess which db package to use to open a db file.
32 f = open(filename + os.extsep + "pag", "rb")
36 f = open(filename + os.extsep + "dir", "rb")
43 f = open(filename + os.extsep + "db", "rb")
45 # guarantee we can actually open the file using dbm
49 d = dbm.open(filename)
63 f = open(filename + os.extsep + "dir", "rb")
74 f = open(filename, "rb")
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/serializer/
SerializerTest.java 41 serializer.open();
43 serializer.open();
51 serializer.open();
54 serializer.open();
62 serializer.open();
73 serializer.open();
  /external/syslinux/memdisk/
postprocess.pl 24 open(OUT, "> $out\0") or die "$0: Cannot create file: $out\n";
26 open(FILE, "< $file16\0") or die "$0: Cannot open file: $file16\n";
51 open(FILE, "+< $file32\0") or die "$0: Cannot open file: $file32\n";
  /prebuilts/gdb/darwin-x86/lib/python2.7/
whichdb.py 2 """Guess which db package to use to open a db file."""
18 """Guess which db package to use to open a db file.
32 f = open(filename + os.extsep + "pag", "rb")
36 f = open(filename + os.extsep + "dir", "rb")
43 f = open(filename + os.extsep + "db", "rb")
45 # guarantee we can actually open the file using dbm
49 d = dbm.open(filename)
63 f = open(filename + os.extsep + "dir", "rb")
74 f = open(filename, "rb")

Completed in 653 milliseconds

1 2 34 5 6 7 8 91011>>