HomeSort by relevance Sort by last modified time
    Searched defs:device (Results 26 - 50 of 2498) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skqp/src/android/
SkAndroidFrameworkUtils.cpp 29 SkBaseDevice* device = canvas->getDevice(); local
30 if (!device) {
33 GrRenderTargetContext* rtc = device->accessRenderTargetContext();
  /external/swiftshader/src/D3D8/
Direct3DVertexDeclaration8.hpp 29 Direct3DVertexDeclaration8(Direct3DDevice8 *device, const unsigned long *vertexElements);
43 Direct3DDevice8 *const device; member in class:D3D8::Direct3DVertexDeclaration8
  /external/tensorflow/tensorflow/compiler/jit/
xla_cpu_device.cc 16 // Registers the XLA_CPU device, which is an XlaDevice instantiation that runs
31 std::vector<Device*>* devices) override;
36 std::vector<Device*>* devices) {
41 std::unique_ptr<XlaDevice> device; local
44 /*register_device_for_compilation=*/true, &device));
45 devices->push_back(device.release());
  /external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_colorbot/
rnn_colorbot_test.py 29 def device(): function
30 return "/device:GPU:0" if tfe.num_gpus() else "/device:CPU:0"
56 with tf.device(device()):
65 with tf.device(device()):
  /external/webrtc/talk/media/devices/
dummydevicemanager_unittest.cc 31 using cricket::Device;
53 std::vector<Device> audio_ins, audio_outs, video_ins;
62 Device device; local
65 cricket::DeviceManagerInterface::kDefaultDeviceName, &device));
66 EXPECT_EQ("-1", device.id);
68 cricket::DeviceManagerInterface::kDefaultDeviceName, &device));
69 EXPECT_EQ("-1", device.id);
70 EXPECT_FALSE(dm.GetAudioInputDevice("_NOT A REAL DEVICE_", &device));
71 EXPECT_FALSE(dm.GetAudioOutputDevice("_NOT A REAL DEVICE_", &device));
77 Device device; local
    [all...]
  /hardware/interfaces/camera/device/3.3/default/include/
convert.h 25 #include <android/hardware/camera/device/3.3/types.h>
32 namespace device { namespace in namespace:android::hardware::camera
36 using ::android::hardware::camera::device::V3_2::implementation::Camera3Stream;
44 } // namespace device
  /hardware/interfaces/camera/device/3.4/default/include/
convert.h 20 #include <android/hardware/camera/device/3.4/types.h>
27 namespace device { namespace in namespace:android::hardware::camera
31 using ::android::hardware::camera::device::V3_2::implementation::Camera3Stream;
41 } // namespace device
  /packages/apps/Camera2/src/com/android/camera/device/
CameraDeviceActionProvider.java 17 package com.android.camera.device;
20 * Provides a set of executable actions for a given camera device key.
28 * @param <TDevice> The type of camera device the actions produce.
33 * Return a new set of device and api specific actions for the given
CameraOpenException.java 17 package com.android.camera.device;
SingleDeviceActions.java 17 package com.android.camera.device;
22 * Device specific actions for opening and closing a device.
27 * Open the device represented by this instance. This should only
28 * be called if there is a reasonable expectation that the device is
32 * parameters or if the camera device determined to be un-openable.
37 * Close the device represented by this instance.
42 public void executeClose(SingleDeviceCloseListener closeListener, TDevice device)
SingleDeviceCloseListener.java 17 package com.android.camera.device;
20 * Listener for device closing lifecycle events.
24 * Occurs when the device is closed.
29 * Occurs when there is an exception closing the device.
SingleDeviceOpenListener.java 17 package com.android.camera.device;
24 * Executed when a device is successfully opened.
25 * @param device the open device.
27 public void onDeviceOpened(TDevice device);
30 * Executed when an exception occurs opening the device.
35 * Executed when an exception occurs opening the device
36 * and the actual device object is provided.
38 public void onDeviceOpenException(TDevice device);
SingleDeviceShutdownListener.java 17 package com.android.camera.device;
20 * Listen to full shutdown events of a single device and api combination.
24 * This should be called once, and only once, when a single device
  /platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/annotations/
OptionClass.java 16 package android.device.collectors.annotations;
  /platform_testing/libraries/device-collectors/src/test/java/android/device/collectors/
StubScheduledRunMetricListener.java 16 package android.device.collectors;
  /platform_testing/libraries/device-collectors/src/test/java/android/device/loggers/test/
StubInstrumentationAnnotatedTest.java 16 package android.device.loggers.test;
18 import android.device.loggers.TestLogData;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
UnknownFileSystemException.java 25 * system being used on a block device.
32 private final BlockDevice device; field in class:UnknownFileSystemException
37 * @param device the {@code BlockDevice} whose file system could not
40 public UnknownFileSystemException(BlockDevice device) {
42 this.device = device;
52 return this.device;
  /tools/tradefederation/core/src/com/android/tradefed/device/
DeviceDisconnectedException.java 16 package com.android.tradefed.device;
19 * Thrown when a device is no longer reachable via it's transport type. e.g. if the device is no
58 * @param cause the root {@link Throwable} that caused the device to become unavailable.
72 * @param cause the root {@link Throwable} that caused the device to become disconnected.
DeviceFatalError.java 16 package com.android.tradefed.device;
19 * Thrown when a fatal error has occurred with device, and it should no longer be used for testing.
21 * This should typically be used when the device is still visible through adb, but it is in some
23 * requires human inspection while device is in the current state.
DeviceRuntimeException.java 16 package com.android.tradefed.device;
19 * Thrown when a device action did not results in the expected results.
DeviceUnresponsiveException.java 16 package com.android.tradefed.device;
20 * A specialization of {@link DeviceNotAvailableException} that indicates device is visible to
57 * @param cause the root {@link Throwable} that caused the device to become unavailable.
71 * @param cause the root {@link Throwable} that caused the device to become unavailable.
IBatteryTemperature.java 17 package com.android.tradefed.device;
24 * Get the device's battery temperature, in degrees celsius.
28 * @return The device's temperature, in degrees celsius. If unavailable, the return value is 0.
30 Integer getBatteryTemperature(IDevice device);
IManagedTestDeviceFactory.java 17 package com.android.tradefed.device;
29 * @param stubDevice that will define the type of device created
35 * Enable or not fastboot support for the device created.
IMultiDeviceRecovery.java 16 package com.android.tradefed.device;
23 * Interface for recovering multiple offline devices. There are some device recovery methods which
ITestDeviceMutator.java 16 package com.android.tradefed.device;
32 * @param device
34 public void setIDevice(ITestDevice testDevice, IDevice device);

Completed in 219 milliseconds

12 3 4 5 6 7 8 91011>>