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

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/sound/
soundsysteminterface.cc 18 SoundSystemInterface::SoundDeviceLocatorList *devices) {
19 for (SoundDeviceLocatorList::iterator i = devices->begin();
20 i != devices->end();
26 devices->clear();
soundsystemproxy.cc 16 SoundDeviceLocatorList *devices) {
17 return wrapped_ ? wrapped_->EnumeratePlaybackDevices(devices) : false;
21 SoundDeviceLocatorList *devices) {
22 return wrapped_ ? wrapped_->EnumerateCaptureDevices(devices) : false;
soundsystemproxy.h 28 bool EnumeratePlaybackDevices(SoundDeviceLocatorList *devices) override;
29 bool EnumerateCaptureDevices(SoundDeviceLocatorList *devices) override;
  /external/webrtc/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"
32 #include "talk/media/devices/deviceinfo.h"
33 #include "talk/media/devices/filevideocapturer.h"
34 #include "talk/media/devices/yuvframescapturer.h"
94 std::vector<Device> devices; local
96 if (GetAudioInputDevices(&devices) && !devices.empty()) {
99 if (GetAudioOutputDevices(&devices) && !devices.empty()) {
102 if (GetVideoCaptureDevices(&devices) && !devices.empty())
144 std::vector<Device> devices; local
287 std::vector<Device> devices; local
306 std::vector<Device> devices; local
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/tools/
list_ports_posix.py 34 devices = glob.glob('/dev/com*')
35 return [(d, d, d) for d in devices]
39 devices = glob.glob('/dev/cua*')
40 return [(d, d, d) for d in devices]
46 devices = glob.glob('/dev/cuad*')
47 return [(d, d, d) for d in devices]
55 devices = glob.glob('/dev/dty*')
56 return [(d, d, d) for d in devices]
61 devices = glob.glob('/dev/ttyf*')
62 return [(d, d, d) for d in devices]
    [all...]
  /platform_testing/scripts/perf-setup/
dragon-setup.sh 10 echo userspace > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
11 echo 1530000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
12 echo 1530000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
13 echo 1530000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed
sailin-setup.sh 1 #Setup for newer devices
12 echo 0 > /sys/devices/system/cpu/cpu0/online
13 echo 0 > /sys/devices/system/cpu/cpu1/online
15 echo performance > /sys/devices/system/cpu/cpu2/cpufreq/scaling_governor
16 echo 2150400 > /sys/devices/system/cpu/cpu2/cpufreq/scaling_max_freq
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
InputSource.cpp 41 * @param[in] devices selected for the given input source.
47 status_t Element<audio_source_t>::set(audio_devices_t devices)
49 if (devices != AUDIO_DEVICE_NONE) {
50 devices |= AUDIO_DEVICE_BIT_IN;
52 if (!audio_is_input_device(devices)) {
54 __FUNCTION__, devices, getName().c_str());
57 ALOGD("%s: 0x%X for input source %s", __FUNCTION__, devices, getName().c_str());
58 mApplicableDevices = devices;
Strategy.cpp 42 * @param[in] devices selected for the given strategy.
47 status_t Element<routing_strategy>::set<audio_devices_t>(audio_devices_t devices)
49 if (!audio_is_output_devices(devices) || devices == AUDIO_DEVICE_NONE) {
51 __FUNCTION__, devices, getName().c_str());
54 ALOGD("%s: 0x%X for strategy %s", __FUNCTION__, devices, getName().c_str());
55 mApplicableDevices = devices;
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_device_test.cc 58 std::vector<tensorflow::Device*> devices; local
60 opts, kDeviceNamePrefix, &devices);
68 std::vector<tensorflow::Device*> devices; local
70 opts, kDeviceNamePrefix, &devices);
79 std::vector<tensorflow::Device*> devices; local
81 opts, kDeviceNamePrefix, &devices);
90 std::vector<tensorflow::Device*> devices; local
92 opts, kDeviceNamePrefix, &devices);
103 std::vector<tensorflow::Device*> devices; local
105 opts, kDeviceNamePrefix, &devices);
116 std::vector<tensorflow::Device*> devices; local
131 std::vector<tensorflow::Device*> devices; local
145 std::vector<tensorflow::Device*> devices; local
157 std::vector<tensorflow::Device*> devices; local
167 std::vector<tensorflow::Device*> devices; local
177 std::vector<tensorflow::Device*> devices; local
    [all...]
gpu_device_on_non_gpu_machine_test.cc 36 std::vector<tensorflow::Device*> devices; local
38 opts, "/job:localhost/replica:0/task:0", &devices));
39 EXPECT_TRUE(devices.empty());
  /frameworks/av/services/audiopolicy/
audio_policy.conf 7 # lists input and output devices always present on the device
9 # Devices are designated by a string that corresponds to the enum in audio.h
24 # other attributes (attached devices, default device) have to be included in the
36 # The "channel_masks", "formats", "devices" and "flags" are specified using strings corresponding
42 # - Optionally a "devices" section:
43 # This section contains descriptors for audio devices with attributes like an address or a
44 # gain controller. The syntax for the devices section and device descriptor is as follows:
45 # devices {
71 # its name in their "devices" section instead of specifying a device type. e.g. :
77 # devices <device name
    [all...]
  /external/tensorflow/tensorflow/python/client/
device_lib_test.py 30 devices = device_lib.list_local_devices()
31 self.assertGreater(len(devices), 0)
32 self.assertEqual(devices[0].device_type, "CPU")
36 self.assertGreater(len(devices), 1)
37 self.assertTrue("GPU" in [d.device_type for d in devices] or
38 "SYCL" in [d.device_type for d in devices])
  /external/tensorflow/tensorflow/core/grappler/costs/
virtual_placer_test.cc 28 std::unordered_map<string, DeviceProperties> devices; local
31 devices["/job:localhost/replica:0/task:0/cpu:0"] = cpu_device;
34 devices["/job:localhost/replica:0/task:0/device:GPU:0"] = gpu_device;
35 VirtualCluster cluster(devices);
58 std::unordered_map<string, DeviceProperties> devices; local
61 devices["/CPU:0"] = cpu_device;
64 devices["/GPU:0"] = gpu_device;
65 VirtualCluster cluster(devices);
88 std::unordered_map<string, DeviceProperties> devices; local
91 devices["/job:localhost/replica:0/task:0/cpu:0"] = cpu_device
116 std::unordered_map<string, DeviceProperties> devices; local
141 std::unordered_map<string, DeviceProperties> devices; local
169 std::unordered_map<string, DeviceProperties> devices; local
192 std::unordered_map<string, DeviceProperties> devices; local
256 std::unordered_map<string, DeviceProperties> devices; local
269 std::unordered_map<string, DeviceProperties> devices; local
286 std::unordered_map<string, DeviceProperties> devices; local
    [all...]
  /device/generic/goldfish/
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|AUDIO_DEVICE_OUT_WIRED_HEADPHONE|AUDIO_DEVICE_OUT_WIRED_HEADSET
42 devices AUDIO_DEVICE_IN_BUILTIN_MIC|AUDIO_DEVICE_IN_WIRED_HEADSET
52 devices AUDIO_DEVICE_OUT_REMOTE_SUBMIX
60 devices AUDIO_DEVICE_IN_REMOTE_SUBMIX
  /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
  /test/vti/test_serving/gae/webapp/src/dashboard/
device_list.py 32 devices = device_query.fetch()
37 if devices:
38 devices = sorted(
39 devices, key=lambda x: (x.hostname, x.product, x.status),
44 "devices": devices,
  /external/tensorflow/tensorflow/core/common_runtime/
placer.h 33 // devices the given DeviceSet, respecting the following constraints:
46 // is then assigned to a set of valid devices.
49 // possible devices.
63 // given DeviceSet "devices".
65 // The "graph", and "devices" pointer arguments
67 Placer(Graph* graph, const DeviceSet* devices, const SessionOptions* options);
69 Placer(Graph* graph, const DeviceSet* devices);
74 // set of devices.
82 // found in 'devices'.
84 const std::vector<Device*>& devices) const
    [all...]
  /device/google/atv/sdk/
atv_sdk.atree 21 # devices.xml file with custom device definitions
22 device/google/atv/sdk/devices.xml system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/devices.xml
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
script_common.py 15 devices = device_utils.DeviceUtils.HealthyDevices(blacklist)
16 if not devices:
20 available = set(str(d) for d in devices)
27 return devices
  /external/ltp/testcases/kernel/power_management/
runpwtests04.sh 29 if [ -d /sys/devices/system/cpu/cpuidle ] ; then
32 cat /sys/devices/system/cpu/cpuidle/${files} \
  /external/ltp/testcases/kernel/security/mmc_security/
force_erase.sh 49 if grep -q "unlocked" /sys/bus/mmc/devices/mmc0\:*/lockable; then
65 echo erase > /sys/bus/mmc/devices/mmc0\:*/lockable || \
  /external/ltp/tools/pounder21/build_scripts/
cpufreq 24 CPUFREQ_ENABLED_CPUS=`/bin/ls -lad /sys/devices/system/cpu/cpu*/cpufreq 2> /dev/null | wc -l`
  /frameworks/rs/perf-test-scripts/
switch-device 20 <blank> list currently attached devices
25 ./sdv prints all connected devices
52 # get devices...
54 adb devices -l
58 STR=(`adb devices -l | grep "$1"`)

Completed in 645 milliseconds

1 2 3 4 5 6 7 8 91011>>