HomeSort by relevance Sort by last modified time
    Searched defs:open (Results 51 - 75 of 448) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/boringssl/src/crypto/fipsmodule/cipher/
internal.h 92 int (*open)(const EVP_AEAD_CTX *ctx, uint8_t *out, size_t *out_len, member in struct:evp_aead_st
  /external/clang/tools/scan-view/share/
startfile.py 6 __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(self, filename) member in class:Controller.Start
200 def open(filename): function
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/io/
InputFileProvider.java 42 public static InputFileProvider open(Path path) throws IOException { method in interface:InputFileProvider
  /external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/oboe/src/aaudio/
AAudioLoader.cpp 2 * Copyright 2016 The Android Open Source Project
34 int AAudioLoader::open() { function in class:AAudioLoader
40 ALOGI("AAudioLoader::open() could not find " LIB_AAUDIO_NAME);
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
ClassLoaderResourceLoader.java 44 * 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);
ClassResourceLoader.java 39 * 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);
FileSystemResourceLoader.java 45 public Reader open(String name) throws IOException { method in class:FileSystemResourceLoader
58 Reader reader = open(name);
InMemoryResourceLoader.java 40 public Reader open(String name) throws IOException { method in class:InMemoryResourceLoader
47 Reader reader = open(name);
ResourceLoader.java 41 * Open a resource. If this resource is not found, null should be returned.
48 * @throws IOException if resource fails to open
50 Reader open(String name) throws IOException; method in interface:ResourceLoader
53 * Open a resource or throw an exception if no such resource is found.
61 * @throws IOException if resource fails to open
92 * if a call to {@link #open(String)} would also return null.
  /external/libpcap/testprogs/
unix.h 46 #define open _open macro
  /external/libxcam/xcore/
file_handle.cpp 39 open (name, option);
57 FileHandle::open (const char *name, const char *option) function in class:XCam::FileHandle
  /external/lua/src/
lfunc.h 39 struct { /* (when open) */
42 } open; member in union:UpVal::__anon32359
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
OkUrlFactory.java 53 public HttpURLConnection open(URL url) { method in class:OkUrlFactory
54 return open(url, client.getProxy());
57 HttpURLConnection open(URL url, Proxy proxy) { method in class:OkUrlFactory
82 return open(url);
86 return open(url, proxy);
  /external/okhttp/repackaged/okhttp-urlconnection/src/main/java/com/android/okhttp/
OkUrlFactory.java 57 public HttpURLConnection open(URL url) { method in class:OkUrlFactory
58 return open(url, client.getProxy());
61 HttpURLConnection open(URL url, Proxy proxy) { method in class:OkUrlFactory
86 return open(url);
90 return open(url, proxy);
  /external/python/cpython2/Lib/distutils/
text_file.py 36 TextFile creates its own using the 'open()' builtin.
103 self.open (filename)
115 def open (self, filename): member in class:TextFile
116 """Open a new file named 'filename'. This overrides both the
120 self.file = open (self.filename, 'r')
  /external/python/cpython2/Lib/idlelib/
GrepDialog.py 20 dialog.open(text, searchphrase, io)
34 def open(self, text, searchphrase, io=None): member in class:GrepDialog
35 SearchDialogBase.open(self, text, searchphrase)
90 with open(fn) as f:
101 "(Hint: right-click to open locations.)"
SearchDialogBase.py 34 top (level widget): set in create_widgets() called from open().
35 text (Text searched): set in open(), only used in subclasses().
47 def open(self, text, searchphrase=None): member in class:SearchDialogBase
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/_builtinSuites/
builtin_Suite.py 1 """Suite builtin_Suite: Every application supports open, reopen, print, run, and quit
12 def open(self, _object, _attributes={}, **_arguments): member in class:builtin_Suite_Events
13 """open: Open the specified object(s)
14 Required argument: list of objects to open
33 """run: Run an application. Most applications will open an empty, untitled window.
52 """reopen: Reactivate a running application. Some applications will open a new untitled window if no window is open.
96 Keyword argument saving: specifies whether to save currently open documents
  /external/python/cpython2/Lib/
posixfile.py 3 f = posixfile.open(filename, [mode, [bufsize]])
62 states = ['open', 'closed']
76 def open(self, name, mode='r', bufsize=-1): member in class:_posixfile_
78 return self.fileopen(__builtin__.open(name, mode, bufsize))
220 def open(name, mode='r', bufsize=-1): function
221 """Public routine to open a file as a posixfile object."""
222 return _posixfile_().open(name, mode, bufsize)
  /external/python/cpython2/Lib/test/
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
72 open = open variable in class:BuiltinBufferSizeTest
    [all...]
  /external/python/cpython3/Lib/distutils/
text_file.py 33 TextFile creates its own using 'io.open()'.
100 self.open(filename)
111 def open(self, filename): member in class:TextFile
112 """Open a new file named 'filename'. This overrides both the
115 self.file = io.open(self.filename, 'r', errors=self.errors)
  /external/python/cpython3/Lib/idlelib/
grep.py 36 dialog.open(text, searchphrase, io)
62 def open(self, text, searchphrase, io=None): member in class:GrepDialog
64 SearchDialogBase.open(self, text, searchphrase)
118 For the each file in the path directory, open the file and
133 with open(fn, errors='replace') as f:
142 print(f"Hits found: {hits}\n(Hint: right-click to open locations.)"
  /external/python/cpython3/Lib/test/
test_largefile.py 26 with self.open(TESTFN, mode) as f:
42 with cls.open(TESTFN, 'wb'):
53 with self.open(TESTFN, "rb") as f:
61 with self.open(TESTFN, 'rb') as f:
92 with self.open(TESTFN, 'rb') as f:
105 with self.open(TESTFN, 'r+b') as f:
107 raise unittest.SkipTest("open().truncate() not available "
139 with self.open(TESTFN, 'rb') as f:
164 f = open(TESTFN, 'wb', buffering=0)
180 open = staticmethod(io.open variable in class:CLargeFileTest
183 open = staticmethod(pyio.open) variable in class:PyLargeFileTest
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLinux.java 54 protected FileDescriptor open(String path, int flags, int mode) throws ErrnoException { method in class:ShadowLinux
59 Log.e("ShadowLinux", "open failed for " + path, e);
60 throw new ErrnoException("open", OsConstants.EIO);
  /frameworks/av/media/img_utils/src/
EndianUtils.cpp 2 * Copyright 2014 The Android Open Source Project
27 status_t EndianOutput::open() { function in class:android::img_utils::EndianOutput
29 return mOutput->open();

Completed in 3649 milliseconds

1 23 4 5 6 7 8 91011>>