HomeSort by relevance Sort by last modified time
    Searched refs:Open (Results 126 - 150 of 4029) sorted by null

1 2 3 4 56 7 8 91011>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvwriter.hpp 34 // to open. This function will overwrite the contents of |filename|. Returns
36 bool Open(const char* filename);
  /art/runtime/base/unix_file/
fd_file_test.cc 2 * Copyright (C) 2009 The Android Open Source Project
53 ASSERT_TRUE(file.Open(good_path, O_CREAT | O_WRONLY));
59 EXPECT_TRUE(file.Open(good_path, O_RDONLY));
71 ASSERT_TRUE(file.Open(tmp.GetFilename(), O_RDONLY));
  /external/chromium_org/ppapi/thunk/
ppb_file_system_thunk.cc 34 int32_t Open(PP_Resource file_system,
37 VLOG(4) << "PPB_FileSystem::Open()";
41 return enter.SetResult(enter.object()->Open(expected_size, enter.callback()));
55 &Open,
ppb_video_destination_private_thunk.cc 33 int32_t Open(PP_Resource destination,
40 return enter.SetResult(enter.object()->Open(stream_url, enter.callback()));
61 &Open,
ppb_video_source_private_thunk.cc 32 int32_t Open(PP_Resource source,
38 return enter.SetResult(enter.object()->Open(stream_url, enter.callback()));
59 &Open,
  /external/lzma/CPP/Common/
C_FileIO.cpp 18 _handle = ::open(name, flags, 0666);
49 bool CInFile::Open(const char *name)
56 return Open(name);
78 bool COutFile::Open(const char *name, DWORD creationDisposition)
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamRequest.java 20 import org.jivesoftware.smackx.bytestreams.ibb.packet.Open;
30 private final Open byteStreamRequest;
39 Open byteStreamRequest) {
45 * Returns the sender of the In-Band Bytestream open request.
47 * @return the sender of the In-Band Bytestream open request
54 * Returns the session ID of the In-Band Bytestream open request.
56 * @return the session ID of the In-Band Bytestream open request
63 * Accepts the In-Band Bytestream open request and returns the session to
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/packet/
Open.java 21 * Represents a request to open an In-Band Bytestream.
25 public class Open extends IQ {
37 * Creates a new In-Band Bytestream open request packet.
49 public Open(String sessionID, int blockSize, StanzaType stanza) {
64 * Creates a new In-Band Bytestream open request packet.
75 public Open(String sessionID, int blockSize) {
109 buf.append("<open ");
  /external/chromium_org/content/browser/indexed_db/
indexed_db_cleanup_on_io_error_unittest.cc 41 static scoped_ptr<LevelDBDatabase> Open(
65 *db = BustedLevelDBDatabase::Open(file_name, comparator);
98 IndexedDBBackingStore::Open(factory,
161 IndexedDBBackingStore::Open(factory,
175 IndexedDBBackingStore::Open(factory,
188 IndexedDBBackingStore::Open(factory,
202 IndexedDBBackingStore::Open(factory,
  /external/chromium_org/media/audio/cras/
cras_input_unittest.cc 82 ASSERT_TRUE(test_stream->Open());
126 EXPECT_TRUE(test_stream->Open());
132 EXPECT_TRUE(test_stream->Open());
144 EXPECT_FALSE(test_stream->Open());
157 EXPECT_FALSE(test_stream->Open());
169 EXPECT_FALSE(test_stream->Open());
175 EXPECT_TRUE(test_stream->Open());
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
filesystem_test.cc 50 // Fail to open non existent file
52 EXPECT_EQ(ENOENT, fs.Open(Path("/foo"), O_RDWR, &result_node));
57 EXPECT_EQ(0, fs.Open(Path("/foo"), O_RDWR | O_CREAT, &file));
69 // Open the root directory for write should fail.
70 EXPECT_EQ(EISDIR, fs.Open(Path("/"), O_RDWR, &root));
73 // Open the root directory, should not create a new file
74 EXPECT_EQ(0, fs.Open(Path("/"), O_RDONLY, &root));
85 fs.Open(Path("/foo"), O_RDWR | O_CREAT | O_EXCL, &result_node));
107 // Attempt to open the same file, create another ref to it, but does not
109 EXPECT_EQ(0, fs.Open(Path("/foo"), O_RDWR | O_CREAT, &result_node))
    [all...]
  /external/chromium_org/sandbox/linux/services/
broker_process_unittest.cc 42 // Creates and open a temporary file on creation and closes
97 int fd = open_broker.Open(NULL, O_RDONLY);
129 fd = open_broker.Open(kR_WhiteListed, O_RDONLY);
131 fd = open_broker.Open(kR_WhiteListed, O_WRONLY);
133 fd = open_broker.Open(kR_WhiteListed, O_RDWR);
153 fd = open_broker.Open(kR_WhiteListedButDenied, O_RDONLY);
157 fd = open_broker.Open(kR_WhiteListedButDenied, O_WRONLY);
159 fd = open_broker.Open(kR_WhiteListedButDenied, O_RDWR);
176 fd = open_broker.Open(kW_WhiteListed, O_RDONLY);
178 fd = open_broker.Open(kW_WhiteListed, O_WRONLY)
    [all...]
  /external/chromium_org/content/renderer/media/
video_source_handler_unittest.cc 63 EXPECT_FALSE(handler_->Open(kUnknownStreamUrl, &reader));
64 EXPECT_TRUE(handler_->Open(kTestStreamUrl, &reader));
93 EXPECT_TRUE(handler_->Open(kTestStreamUrl, &reader));
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
TwoWayCommunication.cc 129 _inFileA.Open(in_file_name, frequencyHz, "rb");
135 _outFileA.Open(out_file_a, frequencyHz, "wb");
137 _outFileRefA.Open(ref_file_name, frequencyHz, "wb");
145 _inFileB.Open(in_file_name, frequencyHz, "rb");
151 _outFileB.Open(out_file_b, frequencyHz, "wb");
153 _outFileRefB.Open(ref_file_name, frequencyHz, "wb");
218 _inFileA.Open(in_file_name, frequencyHz, "rb");
219 _inFileB.Open(in_file_name, frequencyHz, "rb");
224 _outFileA.Open(output_file_a, frequencyHz, "wb");
227 _outFileRefA.Open(output_ref_file_a, frequencyHz, "wb")
    [all...]
  /art/compiler/
elf_writer.cc 2 * Copyright (C) 2012 The Android Open Source Project
45 std::unique_ptr<ElfFile> elf_file(ElfFile::Open(file, false, false, &error_msg));
  /external/chromium_org/chrome/browser/ui/app_list/search/people/
people_result.h 27 virtual void Open(int event_flags) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/views/
color_chooser_aura.h 27 static ColorChooserAura* Open(content::WebContents* web_contents,
  /external/chromium_org/content/browser/media/capture/
web_contents_audio_input_stream_unittest.cc 101 ON_CALL(*this, Open())
102 .WillByDefault(Invoke(&real_, &VirtualAudioInputStream::Open));
133 MOCK_METHOD0(Open, bool());
205 void Open() {
208 EXPECT_CALL(*mock_vais_, Open());
224 wcais_->Open();
289 EXPECT_TRUE(out->Open());
413 RUN_ON_AUDIO_THREAD(Open);
418 RUN_ON_AUDIO_THREAD(Open);
426 RUN_ON_AUDIO_THREAD(Open);
    [all...]
  /external/chromium_org/content/child/npapi/
plugin_string_stream.cc 29 if (Open(mime_type, std::string(), length, 0, false)) {
  /external/chromium_org/content/renderer/
renderer_webcolorchooser_impl.h 34 void Open(SkColor initial_color,
  /external/chromium_org/media/audio/
audio_output_proxy.h 25 // AudioOutputProxy uses AudioOutputDispatcher to open and close
35 virtual bool Open() OVERRIDE;
fake_audio_output_stream.h 26 virtual bool Open() OVERRIDE;
  /external/chromium_org/media/filters/
audio_file_reader.h 31 // Open() reads the audio data format so that the sample_rate(),
34 bool Open();
37 // After a call to Open(), attempts to fully fill |audio_bus| with decoded
46 // These methods can be called once Open() has been called.
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
passthrough_fs.h 23 virtual Error Open(const Path& path, int mode, ScopedNode* out_node);
  /external/chromium_org/ppapi/cpp/dev/
audio_input_dev.cc 77 int32_t AudioInput_Dev::Open(const DeviceRef_Dev& device_ref,
83 return get_interface<PPB_AudioInput_Dev_0_4>()->Open(
91 int32_t AudioInput_Dev::Open(
98 return get_interface<PPB_AudioInput_Dev_0_3>()->Open(

Completed in 1025 milliseconds

1 2 3 4 56 7 8 91011>>