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

<<11121314151617181920>>

  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
adb_wrapper_devicetest.py 21 devices = adb_wrapper.AdbWrapper.Devices()
22 assert devices, 'A device must be attached'
23 self._adb = devices[0]
  /external/tensorflow/tensorflow/compiler/xla/tests/
client_test.cc 128 TF_ASSERT_OK_AND_ASSIGN(std::vector<xla::DeviceHandle> devices,
130 ASSERT_EQ(devices.size(), 1);
133 *options.add_device_handles() = devices[0];
  /external/tensorflow/tensorflow/contrib/tpu/profiler/
trace_events_to_json.cc 56 void AddDeviceMetadata(const std::map<uint32, const Device *> &devices,
58 for (const auto &pair : devices) {
73 // Convert to a std::map so that devices are sorted by the device id.
103 // Convert to a std::map so that devices are sorted by the device id.
105 for (const auto &pair : trace.devices()) {
  /frameworks/av/services/audioflinger/
AudioStreamOut.cpp 120 audio_devices_t devices,
132 devices,
154 devices,
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareInterface.h 254 uint32_t devices,
260 uint32_t devices,
270 uint32_t devices,
  /packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
BluetoothDeviceListAdapter.java 261 ArrayList<CachedBluetoothDevice> devices = new ArrayList<>(mBondedDevices); local
262 Collections.sort(devices);
263 mBondedDevicesSorted = devices;
347 ArrayList<CachedBluetoothDevice> devices = local
349 Collections.sort(devices);
350 mBondedDevicesSorted = devices;
498 // TODO: improve the way we sort BT devices. Ideally we should keep all devices in a TreeSet
499 // and as devices are added the correct order is maintained, that requires a consistent
501 // CachedBluetoothDevice class. Fix that and improve the way we order devices
513 ArrayList<CachedBluetoothDevice> devices = local
    [all...]
  /test/vti/test_serving/gae/webapp/src/dashboard/
job_list.py 65 devices = device_query.fetch()
67 for device in devices:
75 message = "Can't create a job because at some devices are not available (%s)." % error_devices
77 for device in devices:
  /frameworks/base/tools/preload2/src/com/android/preload/
Main.java 275 IDevice devices[] = DeviceUtils.findDevices(DEFAULT_TIMEOUT_MILLIS); local
276 if (devices == null || devices.length == 0) {
277 throw new RuntimeException("Could not find any devices...");
282 DeviceWrapper deviceWrappers[] = new DeviceWrapper[devices.length];
283 for (int i = 0; i < devices.length; i++) {
284 deviceWrappers[i] = new DeviceWrapper(devices[i]);
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowGraphServlet.java 111 * Get a summary string describing the devices in the test run.
113 * @param devices The list of device descriptors for a particular test run.
114 * @return A string describing the devices in the test run.
116 private static String getDeviceSummary(List<DeviceInfoEntity> devices) {
117 if (devices == null) return null;
119 for (DeviceInfoEntity device : devices) {
147 List<String> devices = DatastoreHelper.getAllBuildFlavors(); local
148 if (!devices.contains(selectedDevice)) selectedDevice = null;
243 request.setAttribute("devices", devices);
    [all...]
  /build/make/target/board/generic/
BoardConfig.mk 31 # for real devices newly launched for Pi. These devices are usualy not
32 # as performant as the mainstream 64-bit devices and the performance
75 # Set this to create /cache mount point for non-A/B devices that mounts /cache.
  /compatibility/cdd/3_software/
3_16_companion_device_pairing.md 4 association with companion devices and provides the [`CompanionDeviceManager`
  /compatibility/cdd/8_performance-and-power/
8_4_power-consumption-accounting.md 12 http://source.android.com/devices/tech/power/values.html)
22 http://source.android.com/devices/tech/power/batterystats.html)
  /external/autotest/client/common_lib/cros/fake_device_server/client_lib/
client_lib_test.py 28 import devices
84 d_client = devices.DevicesClient(server_url=server_url,
90 device_list = d_client.list_devices()['devices']
  /external/autotest/client/common_lib/
powerplay_util.py 52 Get a list of connected USB devices and try to establish a serial
57 devices = [x for x in os.listdir('/dev/') if x.startswith('ttyUSB')]
59 for device in devices:
  /external/autotest/client/site_tests/touch_WakeupSource/
touch_WakeupSource.py 17 # Devices whose touchpads should not be a wake source.
20 # Devices with Synaptics touchpads that do not report wake source,
22 # or devices like Cyan which don't report this way: crosbug.com/p/46019.
31 as well, as is the setup for some devices.
39 device_dir = self.player.devices[input_type].device_dir
48 event = self.player.devices[input_type].node.split('/')[-1]
51 i2c_devices_dir = os.path.join('/', 'sys', 'bus', 'i2c', 'devices')
110 # Devices without a touchpad should have touchscreen as wake source.
  /external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
jitter.sh 51 cpus=`ls /sys/devices/system/cpu/*/online |
  /external/ltp/testcases/kernel/power_management/
runpwtests05.sh 46 if [ ! -f /sys/devices/system/cpu/sched_mc_power_savings \
  /external/mesa3d/src/gallium/state_trackers/clover/api/
context.cpp 125 buf.as_scalar<cl_uint>() = ctx.devices().size();
129 buf.as_vector<cl_device_id>() = descs(ctx.devices());
  /external/tensorflow/tensorflow/c/eager/
c_api_internal.h 73 // session->devices[i].
85 const std::vector<tensorflow::Device*>& devices() { return session->devices; } function in struct:TFE_Context
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_device_factory.cc 110 std::vector<Device*>* devices) override {
118 devices->push_back(new GPUCompatibleCPUDevice(
  /external/tensorflow/tensorflow/python/eager/
context.py 162 """Initialize handle and devices."""
180 # Store list of devices
212 devices = self._context_devices
213 if devices is None:
217 return devices
221 return "Eager TensorFlow Context. Devices currently uninitialized."
223 devices = self._devices
224 lines = ["Eager TensorFlow Context with %d devices" % (len(devices))]
225 for i, d in enumerate(devices)
334 def devices(self): member in class:Context
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
eap_proxy_qmi_oc.mk 26 # This is supported only in B Family devices.
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
IOProfile.h 114 void setSupportedDevices(const DeviceVector &devices)
116 mSupportedDevices = devices;
155 DeviceVector mSupportedDevices; // supported devices: this input/output can be routed from/to
  /frameworks/base/libs/hwui/tests/scripts/
prep_buller.sh 4 cpubase=/sys/devices/system/cpu
prep_taieye.sh 2 cpubase=/sys/devices/system/cpu

Completed in 1067 milliseconds

<<11121314151617181920>>