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

1 2 3 45 6 7 8 91011>>

  /cts/tests/tests/os/src/android/os/cts/
ConditionVariableTest.java 2 * Copyright (C) 2008 The Android Open Source Project
45 // test open then block(long)
46 mConditionVariable.open();
57 // test block then open
67 mConditionVariable.open();
86 mConditionVariable.open();
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreUtils.java 2 * Copyright (C) 2019 The Android Open Source Project
63 * Open a pending media item to make progress on it. You can open a pending
169 * Open the underlying file representing this media item. When a media
175 public @NonNull ParcelFileDescriptor open() throws FileNotFoundException { method in class:MediaStoreUtils.PendingSession
180 * Open the underlying file representing this media item. When a media
  /cts/tests/tests/speech/src/android/speech/tts/cts/
StubTextToSpeechService.java 2 * Copyright (C) 2011 The Android Open Source Project
41 // Condition variable that onSynthesizeText will #open when it started
90 sSynthesizeTextStartEvent.open();
  /development/samples/ApiDemos/src/com/example/android/apis/app/
NotifyingService.java 2 * Copyright (C) 2007 The Android Open Source Project
64 mCondition.open();
  /device/generic/goldfish/wifi/ipv6proxy/
socket.cpp 2 * Copyright (C) 2017 The Android Open Source Project
60 Result Socket::open(int domain, int type, int protocol) { function in class:Socket
62 return Result::error("open called on socket in invalid state");
68 mState = State::Open;
73 if (mState != State::Open) {
83 if (mState != State::Open) {
93 if (mState != State::Open) {
103 if (mState != State::Open) {
114 if (mState != State::Open) {
176 if (mState != State::Bound && mState != State::Open) {
    [all...]
  /device/generic/opengl-transport/host/libs/virglrenderer/include/hardware/
hardware.h 2 * Copyright (C) 2018 The Android Open Source Project
61 int (*open)(const hw_module_t*, const char*, hw_device_t**); member in struct:hw_module_methods_t
  /device/google/marlin/camera/mm-image-codec/qomx_core/
qomx_core.h 65 * @open: Is the component active
76 uint8_t open; //Is component active member in struct:_omx_core_component_t
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/io/
io_driver.h 40 int (*open)(io_dev_info_t *dev_info, const uintptr_t spec, member in struct:io_dev_funcs
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dumbdbm.py 28 _open = __builtin__.open
225 def open(file, flag=None, mode=0666): function
226 """Open the database file, filename, and return corresponding object.
pipes.py 12 from a disk file or from an open file, and similar for its output.
50 To open a file for reading or writing through a conversion pipeline:
51 fp = t.open(file, mode)
53 for the built-in function open() or for os.popen().
154 def open(self, file, rw): member in class:Template
155 """t.open(file, rw) returns a pipe or file object open for
162 'Template.open: rw must be \'r\' or \'w\', not %r' % (rw,)
166 t.open(file, 'r') and t.open(file, 'w') respectively."""
    [all...]
shelve.py 14 d = shelve.open(filename) # open, with (g)dbm filename -- no suffix
43 argument writeback=True in the call to shelve.open. When you use:
44 d = shelve.open(filename, writeback=True)
73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
179 modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
223 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
226 def open(filename, flag='c', protocol=None, writeback=False): function
227 """Open a persistent dictionary for reading and writing.
233 anydbm.open(). The optional protocol parameter specifies the
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_file.py 22 self.f = self.open(TESTFN, 'wb')
50 self.f = self.open(TESTFN, 'rb')
58 self.f = self.open(TESTFN, 'r')
67 self.f = self.open(TESTFN, 'rb')
138 open = io.open variable in class:CAutoFileTests
141 open = staticmethod(pyio.open) variable in class:PyAutoFileTests
150 f = self.open(TESTFN, mode)
171 f = self.open(TESTFN, bad_mode)
330 open = io.open variable in class:COtherFileTests
333 open = staticmethod(pyio.open) variable in class:PyOtherFileTests
    [all...]
test_univnewlines.py 50 with self.open(support.TESTFN, self.WRITEMODE) as fp:
60 with self.open(support.TESTFN, self.READMODE) as fp:
66 with self.open(support.TESTFN, self.READMODE) as fp:
72 with self.open(support.TESTFN, self.READMODE) as fp:
82 with self.open(support.TESTFN, self.READMODE) as fp:
105 with self.open(support.TESTFN, self.READMODE) as fp:
125 open = io.open variable in class:test_main.CTest
128 open = staticmethod(pyio.open) variable in class:test_main.PyTest
    [all...]
  /external/autotest/client/bin/net/
net_utils_mock.py 13 return os_stub('open')
21 def open(self, *args, **kwargs): member in class:os_stub
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialOutputLogger.java 56 synchronized void open() throws IOException { method in class:TrialOutputLogger
69 checkState(writer != null, "The logger is not open");
  /external/chromium-trace/catapult/third_party/pyserial/serial/
serialcli.py 32 def open(self): member in class:IronSerial
33 """Open port with current settings. This may throw a SerialException
38 raise SerialException("Port is already open.")
43 raise SerialException("could not open port %s: %s" % (self.portstr, msg))
46 self._port_handle.Open()
271 s.open()
  /external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/
protocol_loop.py 38 def open(self): member in class:LoopbackSerial
39 """Open port with current settings. This may throw a SerialException
42 raise SerialException("Port is already open.")
51 # not that there is anything to open, but the function applies the
protocol_socket.py 41 def open(self): member in class:SocketSerial
42 """Open port with current settings. This may throw a SerialException
48 raise SerialException("Port is already open.")
55 raise SerialException("Could not open port %s: %s" % (self.portstr, msg))
73 raise SerialException("Can only operate on open ports")
  /external/droiddriver/src/io/appium/droiddriver/util/
FileUtils.java 40 public static BufferedOutputStream open(String path) throws FileNotFoundException { method in class:FileUtils
  /external/e2fsprogs/include/nonunix/
unistd.h 19 #define open _open macro
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
MemoryMultiReportOutput.java 38 private final Set<String> open = new HashSet<String>(); field in class:MemoryMultiReportOutput
44 open.add(path);
48 open.remove(path);
87 assertEquals(Collections.emptySet(), open); local
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 43 * acceptor.open(endpoint.protocol());
72 * connections. The open() function must be called before the acceptor can
84 /// Construct an open acceptor.
101 this->get_service().open(this->get_implementation(), protocol, ec);
102 asio::detail::throw_error(ec, "open");
125 * acceptor.open(endpoint.protocol());
138 this->get_service().open(this->get_implementation(), protocol, ec);
139 asio::detail::throw_error(ec, "open");
259 /// Open the acceptor using the specified protocol.
271 * acceptor.open(asio::ip::tcp::v4())
274 void open(const protocol_type& protocol = protocol_type()) function in class:asio::basic_socket_acceptor
301 asio::error_code open(const protocol_type& protocol, function in class:asio::basic_socket_acceptor
    [all...]
  /external/parameter-framework/upstream/asio/stub/
asio.hpp 68 void open(const dummy_base &) const {}; function in struct:asio::basic_socket_acceptor
  /external/pdfium/fxjs/xfa/
cjx_source.cpp 27 {"open", open_static},
106 CJS_Return CJX_Source::open(CJS_V8* runtime, function in class:CJX_Source
  /external/python/cpython2/Lib/distutils/tests/
test_register.py 62 def open(self, req): member in class:FakeOpener
124 f = open(self.rc)

Completed in 1694 milliseconds

1 2 3 45 6 7 8 91011>>