Searched refs:bus (Results 101 - 125 of 276) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebMediaPlayerClientImpl.cpp280 void WebMediaPlayerClientImpl::AudioSourceProviderImpl::provideInput(AudioBus* bus, size_t framesToProcess) argument
282 ASSERT(bus);
283 if (!bus)
288 bus->zero();
293 size_t n = bus->numberOfChannels();
296 webAudioData[i] = bus->channel(i)->mutableData();
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DSincResampler.cpp136 RefPtr<AudioBus> bus = AudioBus::create(1, numberOfSourceFrames, false);
139 bus->setChannelMemory(0, buffer, numberOfSourceFrames);
141 m_sourceProvider->provideInput(bus.get(), numberOfSourceFrames);
157 virtual void provideInput(AudioBus* bus, size_t framesToProcess) OVERRIDE
159 ASSERT(m_source && bus); variable
160 if (!m_source || !bus)
163 float* buffer = bus->channel(0)->mutableData();
H A DAudioDestination.cpp167 void AudioDestination::provideInput(AudioBus* bus, size_t framesToProcess) argument
175 m_callback.render(sourceBus, bus, framesToProcess);
/external/chromium_org/chromeos/dbus/
H A Dmodem_messaging_client.cc14 #include "dbus/bus.h"
31 ModemMessagingProxy(dbus::Bus* bus, argument
34 : bus_(bus),
35 proxy_(bus->GetObjectProxy(service_name, object_path)),
170 virtual void Init(dbus::Bus* bus) OVERRIDE {
171 bus_ = bus;
H A Dbluetooth_gatt_service_client.cc10 #include "dbus/bus.h"
109 virtual void Init(dbus::Bus* bus) OVERRIDE {
110 object_manager_ = bus->GetObjectManager(
H A Dbluetooth_input_client.cc11 #include "dbus/bus.h"
82 virtual void Init(dbus::Bus* bus) OVERRIDE {
83 object_manager_ = bus->GetObjectManager(
H A Dimage_burner_client.cc9 #include "dbus/bus.h"
56 virtual void Init(dbus::Bus* bus) OVERRIDE {
58 bus->GetObjectProxy(imageburn::kImageBurnServiceName,
H A Dnfc_client_helpers.h17 #include "dbus/bus.h"
88 dbus::Bus* bus);
170 // |service_name|, |delegate|, and |bus| are passed to the constructor of the
177 dbus::Bus* bus);
H A Dsystem_clock_client.cc10 #include "dbus/bus.h"
56 virtual void Init(dbus::Bus* bus) OVERRIDE {
57 system_clock_proxy_ = bus->GetObjectProxy(
H A Dbluetooth_agent_service_provider.h13 #include "dbus/bus.h"
163 // Creates the instance where |bus| is the D-Bus bus connection to export
168 dbus::Bus* bus,
H A Dbluetooth_gatt_service_service_provider.cc31 dbus::Bus* bus,
38 bus_(bus),
238 // D-Bus bus object is exported on, not owned by this object and must
268 dbus::Bus* bus,
274 bus, object_path, uuid, includes);
30 BluetoothGattServiceServiceProviderImpl( dbus::Bus* bus, const dbus::ObjectPath& object_path, const std::string& uuid, const std::vector<dbus::ObjectPath>& includes) argument
267 Create( dbus::Bus* bus, const dbus::ObjectPath& object_path, const std::string& uuid, const std::vector<dbus::ObjectPath>& includes) argument
H A Dbluetooth_profile_service_provider.cc15 #include "dbus/bus.h"
27 BluetoothProfileServiceProviderImpl(dbus::Bus* bus, argument
31 bus_(bus),
219 // D-Bus bus object is exported on, not owned by this object and must
252 dbus::Bus* bus,
256 return new BluetoothProfileServiceProviderImpl(bus, object_path, delegate);
251 Create( dbus::Bus* bus, const dbus::ObjectPath& object_path, Delegate* delegate) argument
H A Dcras_audio_client_stub_impl.h22 virtual void Init(dbus::Bus* bus) OVERRIDE;
H A Dfake_bluetooth_agent_manager_client.cc22 void FakeBluetoothAgentManagerClient::Init(dbus::Bus* bus) { argument
H A Dfake_bluetooth_gatt_manager_client.h33 virtual void Init(dbus::Bus* bus) OVERRIDE;
H A Dfake_bluetooth_gatt_service_client.h43 virtual void Init(dbus::Bus* bus) OVERRIDE;
H A Dfake_bluetooth_input_client.h39 virtual void Init(dbus::Bus* bus) OVERRIDE;
H A Dfake_gsm_sms_client.h24 virtual void Init(dbus::Bus* bus) OVERRIDE;
H A Dfake_modem_messaging_client.cc19 void FakeModemMessagingClient::Init(dbus::Bus* bus) {} argument
H A Dfake_nfc_manager_client.h38 virtual void Init(dbus::Bus* bus) OVERRIDE;
H A Dfake_shill_ipconfig_client.h25 virtual void Init(dbus::Bus* bus) OVERRIDE;
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dlist_ports_linux.py67 bus, dev = os.path.basename(os.path.realpath(sysfs_path)).split('-')
81 bus = base.split('-')[0]
84 desc = popen(['lsusb', '-v', '-s', '%s:%s' % (bus, dev)])
/external/chromium_org/device/serial/
H A Dserial_device_enumerator_linux.cc70 // a bus identifier (e.g., "pci" or "usb") seems to be a good heuristic
74 const char* bus = udev_device_get_property_value(device.get(), kHostBusKey); local
75 if (path != NULL && bus != NULL) {
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DConvolverNode.cpp79 AudioBus* outputBus = output(0)->bus();
92 m_reverb->process(input(0)->bus(), outputBus, framesToProcess);
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DMediaStreamSource.cpp98 void MediaStreamSource::consumeAudio(AudioBus* bus, size_t numberOfFrames) argument
103 (*it)->consumeAudio(bus, numberOfFrames);

Completed in 253 milliseconds

1234567891011>>