HomeSort by relevance Sort by last modified time
    Searched refs:devices (Results 1 - 25 of 461) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/sound/
soundsysteminterface.cc 35 SoundSystemInterface::SoundDeviceLocatorList *devices) {
36 for (SoundDeviceLocatorList::iterator i = devices->begin();
37 i != devices->end();
43 devices->clear();
soundsystemproxy.cc 33 SoundDeviceLocatorList *devices) {
34 return wrapped_ ? wrapped_->EnumeratePlaybackDevices(devices) : false;
38 SoundDeviceLocatorList *devices) {
39 return wrapped_ ? wrapped_->EnumerateCaptureDevices(devices) : false;
nullsoundsystem.h 52 virtual bool EnumeratePlaybackDevices(SoundDeviceLocatorList *devices);
53 virtual bool EnumerateCaptureDevices(SoundDeviceLocatorList *devices);
soundsystemproxy.h 45 virtual bool EnumeratePlaybackDevices(SoundDeviceLocatorList *devices);
46 virtual bool EnumerateCaptureDevices(SoundDeviceLocatorList *devices);
nullsoundsystem.cc 129 SoundSystemInterface::SoundDeviceLocatorList *devices) {
130 ClearSoundDeviceLocatorList(devices);
133 devices->push_back(device);
138 SoundSystemInterface::SoundDeviceLocatorList *devices) {
139 ClearSoundDeviceLocatorList(devices);
142 devices->push_back(device);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
dummydevicemanager.h 34 #include "talk/media/devices/fakedevicemanager.h"
41 std::vector<std::string> devices; local
42 devices.push_back(DeviceManagerInterface::kDefaultDeviceName);
43 SetAudioInputDevices(devices);
44 SetAudioOutputDevices(devices);
45 SetVideoCaptureDevices(devices);
devicemanager.cc 28 #include "talk/media/devices/devicemanager.h"
38 #include "talk/media/devices/deviceinfo.h"
39 #include "talk/media/devices/filevideocapturer.h"
120 std::vector<Device> devices; local
122 if (GetAudioInputDevices(&devices) && !devices.empty()) {
125 if (GetAudioOutputDevices(&devices) && !devices.empty()) {
128 if (GetVideoCaptureDevices(&devices) && !devices.empty())
170 std::vector<Device> devices; local
305 std::vector<Device> devices; local
324 std::vector<Device> devices; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/signedin_devices/
id_mapping_helper_unittest.cc 32 ScopedVector<DeviceInfo> devices; local
34 devices.push_back(new DeviceInfo(
38 devices.push_back(new DeviceInfo(
44 CreateMappingForUnmappedDevices(&(devices.get()), &dictionary);
46 std::string public_id1 = devices[0]->public_id();
47 std::string public_id2 = devices[1]->public_id();
55 devices.push_back(new DeviceInfo(
59 CreateMappingForUnmappedDevices(&(devices.get()), &dictionary);
62 EXPECT_EQ(public_id1, devices[0]->public_id());
63 EXPECT_EQ(public_id2, devices[1]->public_id());
    [all...]
  /external/chromium_org/ui/base/x/
device_list_cache_x.cc 20 XFreeDeviceList(xp->second.devices);
23 XIFreeDeviceInfo(xip->second.devices);
32 if (new_x_dev_list.devices)
33 XFreeDeviceList(new_x_dev_list.devices);
34 new_x_dev_list.devices = XListInputDevices(display, &new_x_dev_list.count);
37 if (new_xi_dev_list.devices)
38 XIFreeDeviceInfo(new_xi_dev_list.devices);
39 new_xi_dev_list.devices = XIQueryDevice(display, XIAllDevices,
46 if (!x_dev_list.devices && !x_dev_list.count)
47 x_dev_list.devices = XListInputDevices(display, &x_dev_list.count)
    [all...]
  /frameworks/base/services/jni/
com_android_server_LightsService.cpp 47 struct Devices {
67 Devices* devices; local
69 devices = (Devices*)malloc(sizeof(Devices));
73 devices->lights[LIGHT_INDEX_BACKLIGHT]
75 devices->lights[LIGHT_INDEX_KEYBOARD]
77 devices->lights[LIGHT_INDEX_BUTTONS]
79 devices->lights[LIGHT_INDEX_BATTERY
98 Devices* devices = (Devices*)ptr; local
109 Devices* devices = (Devices*)ptr; local
    [all...]
  /device/samsung/manta/
audio_policy.conf 1 # Global configuration section: lists input and output devices always present on the device
3 # Devices are designated by a string that corresponds to the enum in audio.h
19 # The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
29 devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL|AUDIO_DEVICE_OUT_DGTL_DOCK_HEADSET
36 # devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE
43 devices AUDIO_DEVICE_OUT_AUX_DIGITAL
52 devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET|AUDIO_DEVICE_IN_WIRED_HEADSET
62 devices AUDIO_DEVICE_OUT_ALL_A2DP
72 devices AUDIO_DEVICE_OUT_USB_ACCESSORY
78 devices AUDIO_DEVICE_OUT_USB_DEVIC
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
media_devices_selection_handler.cc 54 const content::MediaStreamDevices& devices) {
55 UpdateDevicesMenu(AUDIO, devices);
59 const content::MediaStreamDevices& devices) {
60 UpdateDevicesMenu(VIDEO, devices);
86 DeviceType type, const content::MediaStreamDevices& devices) {
103 // Build the list of devices to send to JS.
106 for (size_t i = 0; i < devices.size(); ++i) {
108 entry->SetString("name", devices[i].name);
109 entry->SetString("id", devices[i].id);
111 if (devices[i].id == default_device
129 content::MediaStreamDevices devices; local
    [all...]
media_devices_selection_handler.h 15 // Handler for media devices selection in content settings.
30 const content::MediaStreamDevices& devices) OVERRIDE;
32 const content::MediaStreamDevices& devices) OVERRIDE;
48 const content::MediaStreamDevices& devices);
  /external/chromium_org/content/public/browser/
media_observer.h 19 const MediaStreamDevices& devices) = 0;
23 const MediaStreamDevices& devices) = 0;
  /external/openssh/
auth2-chall.c 64 KbdintDevice *devices[] = { variable
81 char *devices; member in struct:KbdintAuthctxt
93 for (i = 0; devices[i] != NULL; i++)
94 if (strcmp(devices[i]->name, devname) == 0) {
95 for (j = i; devices[j] != NULL; j++)
96 devices[j] = devices[j+1];
117 for (i = 0; devices[i]; i++) {
120 buffer_append(&b, devices[i]->name,
121 strlen(devices[i]->name))
    [all...]
  /hardware/libhardware_legacy/audio/
audio_policy.conf 5 # Global configuration section: lists input and output devices always present on the device
7 # Devices are designated by a string that corresponds to the enum in audio.h
23 # The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
33 devices AUDIO_DEVICE_OUT_SPEAKER
42 devices AUDIO_DEVICE_IN_BUILTIN_MIC
52 devices AUDIO_DEVICE_OUT_REMOTE_SUBMIX
60 devices AUDIO_DEVICE_IN_REMOTE_SUBMIX
  /system/core/rootdir/etc/
mountd.conf 16 driver_store_path /sys/devices/platform/usb_mass_storage/lun0/file
18 ##driver_store_path /sys/devices/platform/msm_hsusb/gadget/lun0/file
  /device/asus/grouper/
audio_policy.conf 1 # Global configuration section: lists input and output devices always present on the device
3 # Devices are designated by a string that corresponds to the enum in audio.h
19 # The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
29 devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_ANLG_DOCK_HEADSET
38 devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET|AUDIO_DEVICE_IN_WIRED_HEADSET
48 devices AUDIO_DEVICE_OUT_ALL_A2DP
58 devices AUDIO_DEVICE_OUT_USB_ACCESSORY
64 devices AUDIO_DEVICE_OUT_USB_DEVICE
74 devices AUDIO_DEVICE_OUT_REMOTE_SUBMIX
82 devices AUDIO_DEVICE_IN_REMOTE_SUBMI
    [all...]
  /device/lge/hammerhead/
audio_policy.conf 2 # - lists input and output devices always present on the device
4 # Devices are designated by a string that corresponds to the enum in audio.h
23 # The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
33 devices AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
40 devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
47 devices AUDIO_DEVICE_OUT_AUX_DIGITAL
54 devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE
63 devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_WIRED_HEADSET|AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET|AUDIO_DEVICE_IN_VOICE_CALL|AUDIO_DEVICE_IN_BACK_MIC
73 devices AUDIO_DEVICE_OUT_ALL_A2DP
83 devices AUDIO_DEVICE_OUT_USB_ACCESSOR
    [all...]
  /device/asus/flo/
audio_policy.conf 1 # Global configuration section: lists input and output devices always present on the device
3 # Devices are designated by a string that corresponds to the enum in audio.h
19 # The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
29 devices AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
36 devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
43 devices AUDIO_DEVICE_OUT_AUX_DIGITAL
52 devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_WIRED_HEADSET|AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET|AUDIO_DEVICE_IN_VOICE_CALL|AUDIO_DEVICE_IN_BACK_MIC
62 devices AUDIO_DEVICE_OUT_ALL_A2DP
72 devices AUDIO_DEVICE_OUT_USB_ACCESSORY
78 devices AUDIO_DEVICE_OUT_USB_DEVIC
    [all...]
  /device/lge/mako/
audio_policy.conf 1 # Global configuration section: lists input and output devices always present on the device
3 # Devices are designated by a string that corresponds to the enum in audio.h
19 # The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
29 devices AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
36 devices AUDIO_DEVICE_OUT_SPEAKER|AUDIO_DEVICE_OUT_EARPIECE|AUDIO_DEVICE_OUT_WIRED_HEADSET|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_ALL_SCO|AUDIO_DEVICE_OUT_AUX_DIGITAL
43 devices AUDIO_DEVICE_OUT_AUX_DIGITAL
52 devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_WIRED_HEADSET|AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET|AUDIO_DEVICE_IN_VOICE_CALL|AUDIO_DEVICE_IN_BACK_MIC
62 devices AUDIO_DEVICE_OUT_ALL_A2DP
72 devices AUDIO_DEVICE_OUT_USB_ACCESSORY
78 devices AUDIO_DEVICE_OUT_USB_DEVIC
    [all...]
  /external/chromium_org/ppapi/proxy/
device_enumeration_resource_helper.cc 40 PP_Resource* devices,
44 if (!devices)
53 AsWeakPtr(), devices, callback));
75 std::vector<DeviceRefData> devices; local
80 &devices);
83 result = WriteToArrayOutput(devices, output);
139 const std::vector<DeviceRefData>& devices) {
150 OBJECT_IS_PROXY, owner_->pp_instance(), devices);
160 const std::vector<DeviceRefData>& devices) {
171 result = WriteToArrayOutput(devices, output)
    [all...]
  /external/chromium_org/build/android/
host_heartbeat.py 7 """Sends a heart beat pulse to the currently online Android devices.
8 This heart beat lets the devices know that they are connected to a host.
22 devices = android_commands.GetAttachedDevices()
23 for device in devices:
  /external/chromium_org/device/bluetooth/
bluetooth_adapter.cc 23 DeviceList devices; local
26 devices.push_back(const_cast<BluetoothDevice *>(*i));
28 return devices;
32 ConstDeviceList devices; local
36 devices.push_back(iter->second);
38 return devices;
  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor_unittest.cc 88 std::vector<StorageInfo> devices = monitor.GetAllAvailableStorages(); local
89 EXPECT_EQ(0U, devices.size());
103 std::vector<StorageInfo> devices = monitor.GetAllAvailableStorages(); local
104 ASSERT_EQ(1U, devices.size());
105 EXPECT_EQ(kDeviceId1, devices[0].device_id());
106 EXPECT_EQ(kDeviceName1, devices[0].name());
107 EXPECT_EQ(kDevicePath1.value(), devices[0].location());
116 devices = monitor.GetAllAvailableStorages();
117 ASSERT_EQ(2U, devices.size());
118 EXPECT_EQ(kDeviceId1, devices[0].device_id())
    [all...]

Completed in 2147 milliseconds

1 2 3 4 5 6 7 8 91011>>