HomeSort by relevance Sort by last modified time
    Searched refs:open (Results 26 - 50 of 2894) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/utils/
DSAclean.py 17 input = open(sys.argv[1], 'r')
18 output = open(sys.argv[2], 'w')
  /external/qemu/distrib/sdl-1.2.15/src/main/macos/exports/
gendef.pl 8 if ( ! defined(open(FILE, $file)) ) {
9 warn "Couldn't open $file: $!\n";
  /external/webkit/Source/WebCore/
make-export-file-generator 50 File.open(output_file, "w") do |output|
51 File.open(input_file) do |input|
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/ifstream.members/
close.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
25 fs.open("test.dat");
33 fs.open("test.dat");
open_pointer.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
15 // void open(const char* s, ios_base::openmode mode = ios_base::in);
29 fs.open("test.dat");
41 fs.open("test.dat");
  /external/webkit/Tools/Scripts/
update-javascriptcore-test-results 41 open EXPECTED, "expected.html" or die;
52 open ACTUAL, "actual.html" or die;
71 open EXPECTED, ">expected.html";
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/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();
  /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();
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioStream.java 55 protected boolean open = false; field in class:AudioStream
76 open = true;
90 if (!open)
170 * @return Whether the stream is open or not. Reading from a closed
174 return open;
183 if (in != null && open){
188 open = false;
  /external/webkit/Source/WebCore/css/
make-css-file-arrays.pl 32 open HEADER, ">", $header or die;
33 open OUT, ">", $out or die;
43 open IN, "<", $in or die;
  /external/webkit/Source/WebCore/inspector/
combine-javascript-resources.pl 54 open HTML, $htmlFile or die;
63 open SCRIPT_OUT, ">", "$outputDirectory/$scriptName" or die "Can't open $outputDirectory/$scriptName: $!";
67 open SCRIPT_IN, "$generatedScriptsDirectory/$1" or open SCRIPT_IN, "$htmlDirectory/$1" or die "Can't open $htmlDirectory/$1: $!";
79 open HTML, ">", "$outputDirectory/" . basename($htmlFile) or die "Can't open $outputDirectory/" . basename($htmlFile) . ": $!";
  /external/apache-http/src/org/apache/http/impl/
SocketHttpClientConnection.java 60 private volatile boolean open; field in class:SocketHttpClientConnection
68 if (this.open) {
69 throw new IllegalStateException("Connection is already open");
74 if (!this.open) {
75 throw new IllegalStateException("Connection is not open");
111 this.open = true;
115 return this.open;
180 this.open = false;
188 if (!this.open) {
191 this.open = false
    [all...]
SocketHttpServerConnection.java 60 private volatile boolean open; field in class:SocketHttpServerConnection
68 if (this.open) {
69 throw new IllegalStateException("Connection is already open");
74 if (!this.open) {
75 throw new IllegalStateException("Connection is not open");
109 this.open = true;
117 return this.open;
178 this.open = false;
186 if (!this.open) {
189 this.open = false
    [all...]
  /external/compiler-rt/lib/tsan/lit_tests/
fd_close_norace.cc 10 int f = open("/dev/random", O_RDONLY);
17 int f = open("/dev/random", O_RDONLY);
  /external/okhttp/android/main/java/com/squareup/okhttp/
HttpHandler.java 28 return new OkHttpClient().open(url);
35 return new OkHttpClient().setProxy(proxy).open(url);
HttpsHandler.java 28 return new OkHttpClient().open(url);
35 return new OkHttpClient().setProxy(proxy).open(url);
  /external/webkit/Source/WebKit/chromium/src/
IDBFactoryBackendProxy.cpp 64 void IDBFactoryBackendProxy::open(const String& name, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<SecurityOrigin> origin, Frame* frame, const String& dataDir, int64_t maximumSize, BackingStoreType backingStoreType) function in class:WebKit::IDBFactoryBackendProxy
67 m_webIDBFactory->open(name, new WebIDBCallbacksImpl(callbacks), origin, webFrame, dataDir, maximumSize, static_cast<WebIDBFactory::BackingStoreType>(backingStoreType));
WebIDBFactoryImpl.cpp 61 void WebIDBFactoryImpl::open(const WebString& name, WebIDBCallbacks* callbacks, const WebSecurityOrigin& origin, WebFrame*, const WebString& dataDir, unsigned long long maximumSize, BackingStoreType backingStoreType) function in class:WebKit::WebIDBFactoryImpl
63 m_idbFactoryBackend->open(name, IDBCallbacksProxy::create(callbacks), origin, 0, dataDir, maximumSize, static_cast<IDBFactoryBackendInterface::BackingStoreType>(backingStoreType));
  /external/webkit/Source/WebKit/win/WebKit.vcproj/
FixMIDLHeaders.pl 50 open(IN, "<", $fileName);
54 open(OUT, ">", $fileName);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Kernel/
CKMod.cpp 67 mcResult_t CKMod::open(const char *deviceName) function in class:CKMod
70 LOG_W("already open");
76 // open return -1 on error, "errno" is set with details
77 int openRet = ::open(deviceName, O_RDWR);
79 LOG_ERRNO("open");
100 LOG_W(" Kernel module device not open");
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/fstream.members/
close.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
27 fs.open(temp, std::ios_base::out);
36 fs.open(temp, std::ios_base::out);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/ofstream.members/
close.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
27 fs.open(temp);
36 fs.open(temp);
  /system/extras/tests/cpueater/
cpueater.c 2 * Copyright (C) 2008 The Android Open Source Project
51 open("/dev/null", 0);
53 if(open("/dev/null", O_WRONLY) < 0) {
  /bionic/libc/upstream-netbsd/libc/compat-43/
creat.c 51 return(open(path, O_WRONLY|O_CREAT|O_TRUNC, mode));
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
ANTLRFileStream.pm 28 open $fh, "<:encoding($encoding)", $file_name
29 or croak "Can't open $file_name: $!";
32 open $fh, '<', $file_name
33 or croak "Can't open $file_name: $!";
57 open $fh, "<:encoding($encoding)", $file_name
58 or croak "Can't open $file_name: $!";
61 open $fh, '<', $file_name
62 or croak "Can't open $file_name: $!";

Completed in 938 milliseconds

12 3 4 5 6 7 8 91011>>