HomeSort by relevance Sort by last modified time
    Searched refs:bus (Results 101 - 125 of 481) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioFileReader.h 49 PLATFORM_EXPORT void writeBusToAudioFile(AudioBus* bus, const char* filePath, double fileSampleRate);
MultiChannelResampler.cpp 56 virtual void provideInput(AudioBus* bus, size_t framesToProcess) OVERRIDE
58 bool isBusGood = bus && bus->numberOfChannels() == 1;
80 memcpy(bus->channel(0)->mutableData(), m_multiChannelBus->channel(m_currentChannel)->data(), sizeof(float) * framesToProcess);
  /external/guava/guava-tests/test/com/google/common/eventbus/
AsyncEventBusTest.java 34 private AsyncEventBus bus; field in class:AsyncEventBusTest
39 bus = new AsyncEventBus(executor);
44 bus.register(catcher);
47 bus.post(EVENT);
  /external/chromium_org/chrome/browser/chromeos/dbus/
cros_dbus_service.cc 17 #include "dbus/bus.h"
33 explicit CrosDBusServiceImpl(dbus::Bus* bus)
36 bus_(bus) {
43 // Starts the D-Bus service.
62 dbus::Bus::REQUIRE_PRIMARY_ALLOW_REPLACEMENT,
97 dbus::Bus* bus_;
121 dbus::Bus* bus = DBusThreadManager::Get()->GetSystemBus(); local
122 if (base::SysInfo::IsRunningOnChromeOS() && bus) {
    [all...]
  /external/qemu/hw/pci-host/
pci_host.h 39 PCIBus *bus; member in struct:PCIHostState
49 pci_data_write(s->bus, s->config_reg | (addr & 3), val, 1);
61 pci_data_write(s->bus, s->config_reg | (addr & 3), val, 2);
73 pci_data_write(s->bus, s->config_reg, val, 4);
83 val = pci_data_read(s->bus, s->config_reg | (addr & 3), 1);
95 val = pci_data_read(s->bus, s->config_reg | (addr & 3), 2);
110 val = pci_data_read(s->bus, s->config_reg | (addr & 3), 4);
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new.py 31 if_obj = bus.get_object(WPAS_DBUS_SERVICE, path)
41 net_obj = bus.get_object(WPAS_DBUS_SERVICE, bss)
98 global bus
99 bus = dbus.SystemBus()
100 wpas_obj = bus.get_object(WPAS_DBUS_SERVICE, WPAS_DBUS_OPATH)
107 bus.add_signal_receiver(scanDone,
110 bus.add_signal_receiver(bssAdded,
113 bus.add_signal_receiver(bssRemoved,
116 bus.add_signal_receiver(propertiesChanged,
138 if_obj = bus.get_object(WPAS_DBUS_SERVICE, path
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
ChannelMergerNode.cpp 69 ASSERT_UNUSED(framesToProcess, framesToProcess == output->bus()->length());
71 // Output bus not updated yet, so just output silence.
73 output->bus()->zero();
84 unsigned numberOfInputChannels = input->bus()->numberOfChannels();
91 AudioChannel* inputChannel = input->bus()->channel(j);
92 AudioChannel* outputChannel = output->bus()->channel(outputChannelIndex);
127 // There can in rare cases be a slight delay before the output bus is updated to the new number of
AudioBasicProcessorNode.cpp 72 AudioBus* destinationBus = output(0)->bus();
77 AudioBus* sourceBus = input(0)->bus();
90 // Render input stream - suggest to the input to render directly into output bus for in-place processing in process() if possible.
91 input(0)->pull(output(0)->bus(), framesToProcess);
AudioDestinationNode.h 68 void set(AudioBus* bus)
70 if (bus)
71 m_sourceBus->copyFrom(*bus);
  /external/chromium_org/media/audio/sounds/
wav_audio_handler.cc 89 bool WavAudioHandler::CopyTo(AudioBus* bus,
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);
wav_audio_handler_unittest.cc 29 scoped_ptr<AudioBus> bus = AudioBus::Create( local
33 ASSERT_TRUE(handler.CopyTo(bus.get(), 0, &bytes_written));
wav_audio_handler.h 27 // Copies the audio data to |bus| starting from the |cursor| and in
30 bool CopyTo(AudioBus* bus, size_t cursor, size_t* bytes_written) const;
  /external/libusb-compat/examples/
testlibusb.c 131 struct usb_bus *bus; local
141 for (bus = usb_busses; bus; bus = bus->next) {
142 if (bus->root_dev && !verbose)
143 print_device(bus->root_dev, 0);
147 for (dev = bus->devices; dev; dev = dev->next)
  /external/libusb-compat/libusb/
core.c 175 struct usb_bus *bus; local
194 * bus number. */
203 bus = busses;
206 if (bus_num == bus->location) {
210 } while ((bus = bus->next) != NULL);
216 bus = malloc(sizeof(*bus));
217 if (!bus)
220 memset(bus, 0, sizeof(*bus))
243 struct usb_bus *bus; local
568 struct usb_bus *bus; local
    [all...]
  /external/chromium_org/chromeos/dbus/
blocking_method_caller.h 15 class Bus;
22 // A utility class to call D-Bus methods in a synchronous (blocking) way.
27 BlockingMethodCaller(dbus::Bus* bus, dbus::ObjectProxy* proxy);
34 dbus::Bus* bus_;
fake_image_burner_client.h 21 virtual void Init(dbus::Bus* bus) OVERRIDE;
fake_sms_client.h 20 virtual void Init(dbus::Bus* bus) OVERRIDE;
fake_system_clock_client.h 19 virtual void Init(dbus::Bus* bus) OVERRIDE;
fake_lorgnette_manager_client.cc 22 void FakeLorgnetteManagerClient::Init(dbus::Bus* bus) {}
  /external/chromium_org/dbus/
mock_exported_object.h 19 MockExportedObject(Bus* bus,
mock_object_manager.h 21 MockObjectManager(Bus* bus,
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_find.py 36 global bus
76 self.bus = dbus.SystemBus()
77 self.wpas_object = self.bus.get_object(
95 self.interface_object = self.bus.get_object(
101 self.bus.add_signal_receiver(deviceFound,
104 self.bus.add_signal_receiver(deviceLost,
p2p_group_add.py 42 global bus
90 self.bus = dbus.SystemBus()
91 self.wpas_object = self.bus.get_object(
109 self.interface_object = self.bus.get_object(
115 self.bus.add_signal_receiver(GroupStarted,
118 self.bus.add_signal_receiver(WpsFailure,
p2p_stop_find.py 34 global bus
74 self.bus = dbus.SystemBus()
75 self.wpas_object = self.bus.get_object(
93 self.interface_object = self.bus.get_object(
99 self.bus.add_signal_receiver(deviceLost,
102 self.bus.add_signal_receiver(p2pStateChange,
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmdefs.h 89 /* Bus types */
99 /* Allows size optimization for single-bus image */
101 #define BUSTYPE(bus) (BCMBUSTYPE)
103 #define BUSTYPE(bus) (bus)
108 #define CHIPTYPE(bus) (BCMCHIPTYPE)
110 #define CHIPTYPE(bus) (bus)
217 * be needed to get across the dongle bus to the host. (These messages

Completed in 4560 milliseconds

1 2 3 45 6 7 8 91011>>