Searched defs:bus (Results 51 - 75 of 130) sorted by relevance

123456

/external/chromium_org/chromeos/dbus/
H A Dcras_audio_client_stub_impl.cc17 void CrasAudioClientStubImpl::Init(dbus::Bus* bus) { argument
H A Dfake_bluetooth_gatt_service_client.cc64 void FakeBluetoothGattServiceClient::Init(dbus::Bus* bus) { argument
H A Dfake_cros_disks_client.cc23 void FakeCrosDisksClient::Init(dbus::Bus* bus) { argument
H A Dfake_debug_daemon_client.cc22 void FakeDebugDaemonClient::Init(dbus::Bus* bus) {} argument
H A Dnfc_device_client.cc12 #include "dbus/bus.h"
123 virtual void Init(dbus::Bus* bus) OVERRIDE {
125 DCHECK(bus); variable
126 bus_ = bus;
206 // We maintain a pointer to the bus to be able to request proxies for
H A Dnfc_record_client.cc12 #include "dbus/bus.h"
97 virtual void Init(dbus::Bus* bus) OVERRIDE {
99 DCHECK(bus); variable
100 bus_ = bus;
245 // We maintain a pointer to the bus to be able to request proxies for
H A Dnfc_tag_client.cc12 #include "dbus/bus.h"
124 virtual void Init(dbus::Bus* bus) OVERRIDE {
126 DCHECK(bus); variable
127 bus_ = bus;
226 // We maintain a pointer to the bus to be able to request proxies for
H A Dbluetooth_agent_service_provider.cc15 #include "dbus/bus.h"
27 BluetoothAgentServiceProviderImpl(dbus::Bus* bus, argument
31 bus_(bus),
436 // D-Bus bus object is exported on, not owned by this object and must
469 dbus::Bus* bus,
473 return new BluetoothAgentServiceProviderImpl(bus, object_path, delegate);
468 Create( dbus::Bus* bus, const dbus::ObjectPath& object_path, Delegate* delegate) argument
H A Dbluetooth_gatt_characteristic_service_provider.cc34 dbus::Bus* bus,
43 bus_(bus),
419 // D-Bus bus object is exported on, not owned by this object and must
460 dbus::Bus* bus,
469 bus, object_path, delegate, uuid, flags, permissions, service_path);
33 BluetoothGattCharacteristicServiceProviderImpl( dbus::Bus* bus, const dbus::ObjectPath& object_path, Delegate* delegate, const std::string& uuid, const std::vector<std::string>& flags, const std::vector<std::string>& permissions, const dbus::ObjectPath& service_path) argument
459 Create( dbus::Bus* bus, const dbus::ObjectPath& object_path, Delegate* delegate, const std::string& uuid, const std::vector<std::string>& flags, const std::vector<std::string>& permissions, const dbus::ObjectPath& service_path) argument
H A Dbluetooth_gatt_descriptor_service_provider.cc33 dbus::Bus* bus,
41 bus_(bus),
416 // D-Bus bus object is exported on, not owned by this object and must
457 dbus::Bus* bus,
465 bus, object_path, delegate, uuid, permissions, characteristic_path);
32 BluetoothGattDescriptorServiceProviderImpl( dbus::Bus* bus, const dbus::ObjectPath& object_path, Delegate* delegate, const std::string& uuid, const std::vector<std::string>& permissions, const dbus::ObjectPath& characteristic_path) argument
456 Create( dbus::Bus* bus, const dbus::ObjectPath& object_path, Delegate* delegate, const std::string& uuid, const std::vector<std::string>& permissions, const dbus::ObjectPath& characteristic_path) argument
H A Dfake_bluetooth_adapter_client.cc101 void FakeBluetoothAdapterClient::Init(dbus::Bus* bus) { argument
H A Dfake_bluetooth_gatt_characteristic_client.cc79 void FakeBluetoothGattCharacteristicClient::Init(dbus::Bus* bus) { argument
H A Dfake_bluetooth_gatt_descriptor_client.cc64 void FakeBluetoothGattDescriptorClient::Init(dbus::Bus* bus) { argument
H A Dfake_nfc_adapter_client.cc112 void FakeNfcAdapterClient::Init(dbus::Bus* bus) { argument
H A Dfake_nfc_device_client.cc66 void FakeNfcDeviceClient::Init(dbus::Bus* bus) { argument
H A Dfake_nfc_record_client.cc121 void FakeNfcRecordClient::Init(dbus::Bus* bus) { argument
/external/chromium_org/components/copresence/mediums/audio/
H A Daudio_player_unittest.cc113 void GatherSamples(scoped_ptr<media::AudioBus> bus, int frames) { argument
116 bus->CopyPartialFramesTo(0, frames, buffer_index_, buffer_.get());
H A Daudio_recorder.cc41 void ProcessSamples(scoped_ptr<media::AudioBus> bus, argument
44 AudioBusToString(bus.Pass(), &samples);
/external/chromium_org/dbus/
H A Dbus_unittest.cc5 #include "dbus/bus.h"
78 scoped_refptr<Bus> bus = new Bus(options); local
81 bus->GetObjectProxy("org.chromium.TestService",
87 bus->GetObjectProxy("org.chromium.TestService",
94 bus->GetObjectProxy(
100 bus->ShutdownAndBlock();
105 scoped_refptr<Bus> bus = new Bus(options); local
108 bus->GetObjectProxyWithOptions(
116 bus->GetObjectProxyWithOptions(
125 bus
148 scoped_refptr<Bus> bus = new Bus(options); local
196 scoped_refptr<Bus> bus = new Bus(options); local
228 scoped_refptr<Bus> bus = new Bus(options); local
260 scoped_refptr<Bus> bus = new Bus(options); local
278 scoped_refptr<Bus> bus = new Bus(options); local
289 scoped_refptr<Bus> bus = new Bus(options); local
310 scoped_refptr<Bus> bus = new Bus(options); local
355 scoped_refptr<Bus> bus = new Bus(bus_options); local
[all...]
/external/chromium_org/media/audio/sounds/
H A Dwav_audio_handler.cc89 bool WavAudioHandler::CopyTo(AudioBus* bus, argument
92 if (!bus)
94 if (bus->channels() != params_.channels()) {
99 bus->Zero();
104 const int frames = std::min(bus->frames(), remaining_frames);
105 bus->FromInterleaved(data_.data() + cursor, frames,
108 bus->ZeroFramesPartial(frames, bus->frames() - frames);
/external/chromium_org/media/base/
H A Daudio_buffer_unittest.cc14 static void VerifyBusWithOffset(AudioBus* bus, argument
20 for (int ch = 0; ch < bus->channels(); ++ch) {
21 const float v = start_offset + start + ch * bus->frames() * increment;
23 ASSERT_FLOAT_EQ(v + i * increment, bus->channel(ch)[i]) << "i=" << i
29 static void VerifyBus(AudioBus* bus, int frames, float start, float increment) { argument
30 VerifyBusWithOffset(bus, 0, frames, start, 0, increment);
51 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, frames); local
54 buffer->ReadFrames(frames, 0, 0, bus.get());
55 VerifyBus(bus.get(), frames, 0, 1);
65 bus
228 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, frames); local
252 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, frames); local
276 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, frames); local
299 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, frames); local
323 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, frames); local
361 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, 100); local
384 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, frames); local
411 scoped_ptr<AudioBus> bus = AudioBus::Create(channels, frames); local
[all...]
H A Daudio_bus_unittest.cc31 void VerifyParams(AudioBus* bus) { argument
32 EXPECT_EQ(kChannels, bus->channels());
33 EXPECT_EQ(kFrameCount, bus->frames());
68 void VerifyChannelData(AudioBus* bus) { argument
69 for (int i = 0; i < bus->channels(); ++i) {
71 bus->channel(i)) & (AudioBus::kChannelAlignment - 1));
72 std::fill(bus->channel(i), bus->channel(i) + bus->frames(), i);
75 for (int i = 0; i < bus
108 scoped_ptr<AudioBus> bus = AudioBus::Create(kChannels, kFrameCount); local
115 scoped_ptr<AudioBus> bus = AudioBus::Create(AudioParameters( local
130 scoped_ptr<AudioBus> bus = AudioBus::WrapVector(kFrameCount, data_); local
149 scoped_ptr<AudioBus> bus = AudioBus::WrapMemory(params, data.get()); local
203 scoped_ptr<AudioBus> bus = AudioBus::Create(kChannels, kFrameCount); local
264 scoped_ptr<AudioBus> bus = AudioBus::Create( local
304 scoped_ptr<AudioBus> bus = AudioBus::Create( local
324 scoped_ptr<AudioBus> bus = AudioBus::Create( local
386 scoped_ptr<AudioBus> bus = AudioBus::Create(kChannels, kFrameCount); local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioNodeOutput.cpp144 return bus();
147 AudioBus* AudioNodeOutput::bus() const function in class:blink::AudioNodeOutput
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioDestination.cpp167 void AudioDestination::provideInput(AudioBus* bus, size_t framesToProcess) argument
175 m_callback.render(sourceBus, bus, framesToProcess);
/external/chromium_org/chrome/browser/chromeos/settings/
H A Ddevice_settings_test_helper.cc94 void DeviceSettingsTestHelper::Init(dbus::Bus* bus) {} argument

Completed in 667 milliseconds

123456