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

1234567

/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ServerSocket.java33 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
30 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/droiddriver/src/io/appium/droiddriver/util/
H A DFileUtils.java40 public static BufferedOutputStream open(String path) throws FileNotFoundException { method in class:FileUtils
/external/jetty/src/java/org/eclipse/jetty/server/nio/
H A DInheritedChannelConnector.java50 public void open() throws IOException method in class:InheritedChannelConnector
71 super.open();
/external/openssh/openbsd-compat/
H A Dbsd-cygwin_util.h62 #define open binary_open macro
/external/bison/lib/
H A Dopen.c25 /* Get the original definition of open. It might be defined as a macro. */
33 return open (filename, flags, mode);
53 open (const char *filename, int flags, ...) function
74 file types that require non-blocking handling in open().
97 - if O_CREAT is specified, open() must fail because of the semantics
99 - if O_WRONLY or O_RDWR is specified, open() must fail because POSIX
100 <http://www.opengroup.org/susv3/functions/open.html> says that it
103 - if O_CREAT is specified, open() must fail since open() cannot create
105 - if O_WRONLY or O_RDWR is specified, open() mus
[all...]
/external/boringssl/src/crypto/cipher/
H A Dinternal.h93 int (*open)(const EVP_AEAD_CTX *ctx, uint8_t *out, size_t *out_len, member in struct:evp_aead_st
/external/conscrypt/src/compat/java/dalvik/system/
H A DCloseGuard.java33 m_open = c_closeGuard.getDeclaredMethod("open", String.class);
61 public void open(String message) { method in class:CloseGuard
/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/libdrm/tests/
H A Dgem_flink.c44 struct drm_gem_open open; local
47 printf("Testing flink and open.\n");
58 open.name = flink.name;
59 ret = ioctl(fd, DRM_IOCTL_GEM_OPEN, &open);
61 assert(open.handle != 0);
105 struct drm_gem_open open; local
108 printf("Testing error return on bad open ioctl.\n");
110 open.name = 0x10101010;
111 ret = ioctl(fd, DRM_IOCTL_GEM_OPEN, &open);
127 fprintf(stderr, "failed to open inte
[all...]
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
H A DOkUrlFactory.java47 public HttpURLConnection open(URL url) { method in class:OkUrlFactory
48 return open(url, client.getProxy());
51 HttpURLConnection open(URL url, Proxy proxy) { method in class:OkUrlFactory
76 return open(url);
80 return open(url, proxy);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAssetManager.java37 public final InputStream open(String fileName) throws IOException { method in class:ShadowAssetManager
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DFileToStreamDecoder.java38 is = fileOpener.open(source);
59 public InputStream open(File file) throws FileNotFoundException { method in class:FileToStreamDecoder.FileOpener
/external/libxml2/win32/wince/
H A Dwincecompat.c15 "","File exists","Cross-device link","","","","Invalid argument","","Too many open files",
32 int open(const char *filename,int oflag, ...) function
/external/marisa-trie/lib/marisa/
H A Dmapper.cc64 void Mapper::open(const char *filename, long offset, int whence) { function in class:marisa::Mapper
92 void Mapper::open(const char *filename, long offset, int whence) { function in class:marisa::Mapper
106 temp.fd_ = ::open(filename, O_RDONLY);
H A Dreader.cc32 void Reader::open(const char *filename, long offset, int whence) { function in class:marisa::Reader
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dmapper.cc66 void Mapper::open(const char *filename, long offset, int whence) { function in class:marisa_alpha::Mapper
95 void Mapper::open(const char *filename, long offset, int whence) { function in class:marisa_alpha::Mapper
110 temp.fd_ = ::open(filename, O_RDONLY);
H A Dreader.cc32 void Reader::open(const char *filename, long offset, int whence) { function in class:marisa_alpha::Reader

Completed in 683 milliseconds

1234567