Searched refs:open (Results 51 - 75 of 1378) sorted by relevance

1234567891011>>

/external/webkit/Tools/Scripts/
H A Dread-checksum-from-png38 with open(filename, 'r') as filehandle:
H A Dcheck-for-exit-time-destructors60 if (!open LIST, $list) {
61 print "ERROR: Could not open $list\n";
76 if (!open NM, "(nm '$file' | sed 's/^/STDOUT:/') 2>&1 |") {
77 print "ERROR: Could not open $file\n";
110 open(TOUCH, ">", $path) or die "$!";
117 if (!open FILT, "c++filt $symbol |") {
118 print "ERROR: Could not open c++filt\n";
130 if (!open OTOOL, "otool -tV '$path' |") {
131 print "WARNING: Could not open $path\n";
/external/openssh/openbsd-compat/
H A Dbsd-openpty.c87 if ((*aslave = open(slave, O_RDWR | O_NOCTTY)) == -1) {
102 if ((ptm = open("/dev/ptmx", O_RDWR | O_NOCTTY)) == -1)
119 if ((*aslave = open(pts, O_RDWR | O_NOCTTY)) == -1) {
142 if ((*amaster = open("/dev/ptc", O_RDWR | O_NOCTTY)) == -1)
146 if ((*aslave = open(ttname, O_RDWR | O_NOCTTY)) == -1) {
166 if ((*amaster = open(ptbuf, O_RDWR|O_NOCTTY)) == -1)
169 if ((*aslave = open(ttbuf, O_RDWR|O_NOCTTY)) == -1) {
194 if ((*amaster = open(ptbuf, O_RDWR | O_NOCTTY)) == -1) {
198 if ((*amaster = open(ptbuf, O_RDWR | O_NOCTTY)) == -1)
203 if ((*aslave = open(ttbu
[all...]
/external/apache-harmony/nio/src/test/java/unix/org/apache/harmony/nio/tests/java/nio/channels/
H A DUnixSelectorTest.java31 private ServerSocketChannel serverChannel = ServerSocketChannel.open();
74 Selector sel0 = Selector.open();
75 Selector sel1 = Selector.open();
90 SocketChannel socketChannel = SocketChannel.open();
92 Selector sel2 = Selector.open();
107 SocketChannel socketChannel2 = SocketChannel.open();
109 Selector sel3 = Selector.open();
118 Selector sel4 = Selector.open();
124 Selector sel5 = Selector.open();
/external/clang/tools/scan-view/
H A Dstartfile.py6 __all__ = ['open']
18 '''Base class for open program controllers.'''
23 def open(self, filename): member in class:BaseController
28 '''Controller for a generic open program.'''
61 # It is assumed that this kind of tools (gnome-open, kfmclient,
62 # exo-open, xdg-open and open for OSX) immediately exit after lauching
69 def open(self, filename): member in class:Controller
87 def open(sel member in class:Controller.Start
200 def open(filename): function
[all...]
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt018llstar.py16 cStream = antlr3.StringStream(open(inputPath).read())
25 testOutput = open(outputPath).read()
44 ## input = open(inputPath).read()
H A Dt020fuzzy.py16 stream = antlr3.StringStream(open(inputPath).read())
28 testOutput = open(outputPath).read()
H A Dt019lexer.py13 stream = antlr3.StringStream(open(inputPath).read())
/external/e2fsprogs/lib/ext2fs/
H A Dgetsectsize.c51 fd = open(file, O_RDONLY);
77 fd = open(file, O_RDONLY);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
H A DFingerprints.js6 window.open(document.URL+"?fp_type="+type, "_self");
8 window.open(document.URL.substring(0,idx)+"php?fp_type="+type, "_self");
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dmyocamlbuild.ml0 open Ocamlbuild_plugin;;
H A Dtoy.ml5 open Llvm
6 open Llvm_executionengine
7 open Llvm_target
8 open Llvm_scalar_opts
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dmyocamlbuild.ml0 open Ocamlbuild_plugin;;
H A Dtoy.ml5 open Llvm
6 open Llvm_executionengine
7 open Llvm_target
8 open Llvm_scalar_opts
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dmyocamlbuild.ml0 open Ocamlbuild_plugin;;
H A Dtoy.ml5 open Llvm
6 open Llvm_executionengine
7 open Llvm_target
8 open Llvm_scalar_opts
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dmyocamlbuild.ml0 open Ocamlbuild_plugin;;
H A Dtoy.ml5 open Llvm
6 open Llvm_executionengine
7 open Llvm_target
8 open Llvm_scalar_opts
/external/openssh/
H A Dfixprogs26 if (!open(IN, "<".$infilename)) {
27 die("Couldn't open input file");
30 if (!open(OUT, ">$outfilename")) {
31 die("Couldn't open output file $outfilename");
47 open (STDIN, "</dev/null");
48 open (STDOUT, ">/dev/null");
49 open (STDERR, ">/dev/null");
/external/webkit/LayoutTests/http/tests/resources/
H A Dpost-and-verify.cgi18 open FILE, $values{'path'} || die("Could not open file\n");
/external/webkit/Source/WebCore/storage/
H A DIDBFactory.cpp60 PassRefPtr<IDBRequest> IDBFactory::open(ScriptExecutionContext* context, const String& name, ExceptionCode& ec) function in class:WebCore::IDBFactory
77 m_factoryBackend->open(name, request, document->securityOrigin(), document->frame(), groupSettings->indexedDBDatabasePath(), groupSettings->indexedDBQuotaBytes(), IDBFactoryBackendInterface::DefaultBackingStore);
/external/webkit/Source/WebKit/android/wds/
H A DConnectionAndroid.cpp44 bool Socket::open() { function in class:android::WDS::Socket
54 if (!m_socket.open())
/external/webkit/Source/WebKit/chromium/scripts/
H A Dgenerate_devtools_html.py59 inspector_html = open(inspector_html_name, 'r')
60 devtools_html = open(devtools_html_name, 'w')
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dzip_mock.py43 def open(self, filename): member in class:MockZip
51 contents = self.open(filename).contents()
/external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
H A Dlasthit.rb15 file = File.open(ARGV[0])

Completed in 580 milliseconds

1234567891011>>