Searched defs:open (Results 1 - 25 of 165) sorted by relevance

1234567

/external/openssh/openbsd-compat/
H A Dbsd-cygwin_util.h48 #define open binary_open macro
H A Dbsd-cygwin_util.c34 #if defined(open) && open == binary_open
35 # undef open macro
56 return (open(filename, flags | O_BINARY, mode));
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ServerSocket.java34 public void open() throws IOException; method in interface:Support_ServerSocket
H A DSupport_HttpConnector.java25 * This interface contains the basic methods necessary to open and use a
31 public void open(String address) throws IOException; method in interface:Support_HttpConnector
H A DSupport_HttpServerSocket.java68 public void open() throws IOException { method in class:Support_HttpServerSocket
H A DSupport_URLConnector.java37 * @see com.ibm.support.Support_HttpConnector#open(String)
39 public void open(String address) throws IOException { method in class:Support_URLConnector
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DClassLoaderResourceLoader.java44 * loader.open("my-template.cs");
45 * loader.open("subdir/my-template.cs");
66 public Reader open(String name) throws IOException { method in class:ClassLoaderResourceLoader
74 Reader reader = open(name);
H A DClassResourceLoader.java39 * loader.open("my-template.cs");
40 * loader.open("subdir/my-template.cs");
45 * loader.open("my-template.cs");
71 public Reader open(String name) throws IOException { method in class:ClassResourceLoader
78 Reader reader = open(name);
H A DFileSystemResourceLoader.java45 public Reader open(String name) throws IOException { method in class:FileSystemResourceLoader
58 Reader reader = open(name);
H A DInMemoryResourceLoader.java40 public Reader open(String name) throws IOException { method in class:InMemoryResourceLoader
47 Reader reader = open(name);
H A DResourceLoader.java48 * @throws IOException if resource fails to open
50 Reader open(String name) throws IOException; method in interface:ResourceLoader
61 * @throws IOException if resource fails to open
92 * if a call to {@link #open(String)} would also return null.
H A DCompositeResourceLoader.java53 public Reader open(String name) throws IOException { method in class:CompositeResourceLoader
55 Reader reader = loader.open(name);
65 Reader reader = open(name);
75 throw new IllegalArgumentException("I can't close a reader I didn't open.");
93 * search order as {@link #open(String)}.
/external/webkit/Source/WebCore/loader/icon/
H A DIconDatabaseBase.cpp44 bool IconDatabaseBase::open(const String&, const String&) function in class:WebCore::IconDatabaseBase
/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);
H A DIDBKeyRange.cpp49 PassRefPtr<IDBKeyRange> IDBKeyRange::lowerBound(PassRefPtr<IDBKey> bound, bool open) argument
51 return IDBKeyRange::create(bound, 0, open, false);
54 PassRefPtr<IDBKeyRange> IDBKeyRange::upperBound(PassRefPtr<IDBKey> bound, bool open) argument
56 return IDBKeyRange::create(0, bound, false, open);
/external/webkit/Source/WebKit/android/wds/
H A DConnection.cpp44 bool Socket::open() { function in class:android::WDS::Socket
54 if (!m_socket.open())
/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBFactory.h59 // The WebKit implementation of open ignores the WebFrame* parameter.
60 virtual void open(const WebString& name, WebIDBCallbacks*, const WebSecurityOrigin&, WebFrame*, const WebString& dataDir, unsigned long long maximumSize, BackingStoreType) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebIDBFactory
/external/webkit/Source/WebKit/chromium/src/
H A DIDBFactoryBackendProxy.cpp64 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));
H A DWebIDBFactoryImpl.cpp61 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/Tools/Scripts/webkitpy/common/system/
H A Ddirectoryfileset.py51 def open(self, filename): member in class:DirectoryFileSet
H A Dzip_mock.py43 def open(self, filename): member in class:MockZip
51 contents = self.open(filename).contents()
H A Dzipfileset.py49 def open(self, filename): member in class:ZipFileSet
/external/chromium/net/http/
H A Dmock_gssapi_library_posix.h30 int open);
41 int open; member in class:net::test::GssContextMockImpl
177 int* open);
/external/guava/guava-tests/test/com/google/common/io/
H A DCheckCloseSupplier.java38 private final Set<Callback> open = Sets.newHashSet(); field in class:CheckCloseSupplier
68 open.remove(this);
74 open.add(callback);
82 * {@code Closeable} is not longer open.
91 return open.isEmpty();
/external/webkit/Source/WebCore/history/
H A DCachedFrame.cpp111 m_childFrames[i]->open();
187 void CachedFrame::open() function in class:WebCore::CachedFrame
190 m_view->frame()->loader()->open(*this);

Completed in 2867 milliseconds

1234567