HomeSort by relevance Sort by last modified time
    Searched refs:device (Results 1951 - 1975 of 4438) sorted by null

<<71727374757677787980>>

  /external/chromium-trace/catapult/devil/devil/android/
flag_changer.py 18 def __init__(self, device, cmdline_file):
22 device: A DeviceUtils instance.
23 cmdline_file: Path to the command line file on the device.
25 self._device = device
29 if not device.HasRoot() and not '/data/local/tmp/' in cmdline_file:
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
cros_browser_finder.py 83 def FindAllAvailableBrowsers(finder_options, device):
86 if not isinstance(device, cros_device.CrOSDevice):
104 platform = platform_module.GetPlatformForDevice(device, finder_options)
113 logging.warn('Could not ssh into %s. Your device must be configured',
116 logging.warn('For a test-build device, pass this to your script:')
119 logging.warn('For a developer-mode device, the steps are:')
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
vtune_profiler.py 64 device = self._browser_backend.device
66 android_profiling_helper.CreateSymFs(device,
132 # VTune checks if 'su' is available on the device.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
volume.py 64 if not params.get('device', None):
65 prop = self.cls.find_property('device')
66 params['device'] = propget.get(prop)
84 device = StringProperty(verbose_name="Device Name", default='/dev/sdp') variable in class:Volume
110 v.device = params.get('device')
149 v.device = self.device
208 ec2.attach_volume(self.volume_id, self.server.instance_id, self.device)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiDeviceInitializationTests.cpp 21 * \brief Device Initialization Tests
371 const Unique<VkDevice> device (createDevice(instanceDriver, physicalDevice, &deviceCreateInfo));
372 const DeviceDriver deviceDriver (instanceDriver, device.get());
375 deviceDriver.getDeviceQueue(device.get(), queueFamilyIndex, queueIndex, &queue);
426 resultCollector.fail("Failed to create Device No." + de::toString(deviceNdx) + ", Error Code: " + de::toString(result));
508 VkDevice device = (VkDevice)0; local
509 const VkResult result = instanceDriver.createDevice(physicalDevice, &deviceCreateInfo, DE_NULL/*pAllocator*/, &device);
510 const bool gotDevice = !!device;
512 if (device)
514 const DeviceDriver deviceIface (instanceDriver, device);
    [all...]
  /external/libdrm/tests/vbltest/
vbltest.c 91 fprintf(stderr, " -D DEVICE open the given device\n");
99 const char *device = NULL, *module = NULL; local
109 device = optarg;
123 fd = util_open(module, device);
  /external/libweave/examples/daemon/common/
daemon.h 5 #include <weave/device.h>
33 << "\t--registration_ticket=TICKET Register device with the "
85 device_ = weave::Device::Create(config_store_.get(), task_runner_.get(),
98 weave::Device* GetDevice() const { return device_.get(); }
105 static void OnRegisterDeviceDone(weave::Device* device,
108 LOG(ERROR) << "Fail to register device: " << error->GetMessage();
110 LOG(INFO) << "Device registered: " << device->GetSettings().cloud_id;
121 std::unique_ptr<weave::Device> device_
    [all...]
  /external/libweave/src/
base_api_handler.cc 8 #include <weave/device.h>
25 Device* device)
26 : device_info_{device_info}, device_{device} {
  /external/mesa3d/src/gallium/state_trackers/clover/core/
memory.hpp 87 std::map<clover::device *,
103 std::map<clover::device *,
131 std::map<clover::device *,
  /external/mesa3d/src/gallium/state_trackers/d3d1x/dxgid3d10/
dxgid3d10.cpp 73 ComPtr<ID3D10Device1> device;
74 hr = GalliumD3D10DeviceCreate1(screen, context, TRUE, flags, adapter, &device);
81 *out_device = device.steal();
  /external/mesa3d/src/gallium/state_trackers/vdpau/
decode.c 41 vlVdpDecoderCreate(VdpDevice device,
66 dev = vlGetDataHTAB(device);
92 vldecoder->device = dev;
138 pipe_mutex_lock(vldecoder->device->mutex);
140 pipe_mutex_unlock(vldecoder->device->mutex);
453 if (vlsurf->device != vldecoder->device)
460 pipe_mutex_lock(vlsurf->device->mutex);
484 pipe_mutex_unlock(vlsurf->device->mutex);
513 pipe_mutex_unlock(vlsurf->device->mutex)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_screen.c 104 /* Open the DRM device. */
105 ret = nouveau_device_wrap(dri_screen->fd, 0, &screen->device);
107 nouveau_error("Error opening the DRM device.\n");
112 switch (screen->device->chipset & 0xf0) {
145 nouveau_device_del(&screen->device);
  /external/opencv3/modules/cudaimgproc/src/
corners.cpp 55 namespace cv { namespace cuda { namespace device
138 using namespace cv::cuda::device::imgproc;
166 using namespace cv::cuda::device::imgproc;
  /external/opencv3/modules/videoio/src/
cap_openni2.cpp 135 openni::Device device; member in class:CvCapture_OpenNI2
234 status = device.open(deviceURI);
237 CV_Error(CV_StsError, cv::format("OpenCVKinect: Device open failed see: %s\n", openni::OpenNI::getExtendedError()));
242 //device.setDepthColorSyncEnabled(true);
245 status = depth.create(device, openni::SENSOR_DEPTH);
271 status = color.create(device, openni::SENSOR_COLOR);
336 status = device.open(filename);
469 propValue = const_cast<CvCapture_OpenNI2 *>(this)->device.getDepthColorSyncEnabled();
502 isSet = device.setDepthColorSyncEnabled(propValue > 0.0) == openni::STATUS_OK
    [all...]
  /external/skia/src/core/
SkSpecialSurface.cpp 129 SkAutoTUnref<SkGpuDevice> device(SkGpuDevice::Create(fTexture->asRenderTarget(), props,
131 if (!device) {
135 fCanvas.reset(new SkCanvas(device));
  /external/skia/src/gpu/
GrPathRenderer.h 211 // If we can, we draw lots faster (raster device does this same test).
228 // Helper for getting the device bounds of a path. Inverse filled paths will have bounds set
238 const GrSurface* device,
241 GetPathDevBounds(path, device->width(), device->height(), matrix, bounds);
  /external/toybox/lib/
getmountlist.c 183 mt->device = stpcpy(mt->dir, me->mnt_dir)+1;
184 mt->opts = stpcpy(mt->device, me->mnt_fsname)+1;
188 octal_deslash(mt->device);
  /external/vulkan-validation-layers/libs/vkjson/
vkjson_info.cc 61 if (arg == "--device-index" || arg == "-d") {
68 } else if (arg == "--device-name" || arg == "-n") {
80 std::cerr << "Specifying a specific device is incompatible with dumping "
85 std::cerr << "Must specify only one of device index and device name."
96 std::cerr << "Must specify instance, device index, or device name when "
109 std::cerr << "Error: device " << options.device_index
116 for (const auto& device : instance.devices) {
117 if (device.properties.deviceName == options.device_name)
    [all...]
  /frameworks/av/services/audiopolicy/service/
AudioPolicyInterfaceImpl.cpp 29 status_t AudioPolicyService::setDeviceConnectionState(audio_devices_t device,
40 if (!audio_is_output_device(device) && !audio_is_input_device(device)) {
50 return mAudioPolicyManager->setDeviceConnectionState(device, state,
55 audio_devices_t device,
61 return mAudioPolicyManager->getDeviceConnectionState(device,
420 audio_devices_t device)
434 device);
439 audio_devices_t device)
450 device);
    [all...]
  /frameworks/base/core/jni/
android_hardware_UsbRequest.cpp 47 struct usb_device* device = get_device_from_object(env, java_device); local
48 if (!device) {
49 ALOGE("device null in native_init");
62 struct usb_request* request = usb_request_new(device, &desc);
  /frameworks/base/services/core/java/com/android/server/hdmi/
RoutingControlAction.java 36 * <li> New CEC device at the tail of the active routing path
37 * <li> Removed CEC device from the active routing path
48 // State in which we wait for <Report Power Status> in response to <Give Device Power Status>
49 // we have sent. If the response tells us the device power is on, we send <Set Stream Path>
163 HdmiDeviceInfo device = tv().getDeviceInfoByPath(mCurrentRoutingPath); local
164 if (device != null && mQueryDevicePowerStatus) {
165 int deviceLogicalAddress = device.getLogicalAddress();
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
iio.hpp 64 * Iio Constructor, takes a device number which will map directly to sysfs
65 * e.g. device 0 maps to /sys/bus/iio/devices/iio:device0
67 * @param device IIO device number
71 Iio(int device)
73 m_iio = mraa_iio_init(device);
76 oss << "IIO device " << device << " is not valid"; local
84 * @param deviceName IIO device name
93 oss << "IIO device name " << deviceName << " not found"
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/lsm9ds0/
lsm9ds0.cxx 289 mraa::I2c *device; local
293 case DEV_GYRO: device = &m_i2cG; break;
294 case DEV_XM: device = &m_i2cXM; break;
297 ": Internal error, invalid device specified");
301 return device->readReg(reg);
306 mraa::I2c *device; local
310 case DEV_GYRO: device = &m_i2cG; break;
311 case DEV_XM: device = &m_i2cXM; break;
314 ": Internal error, invalid device specified");
320 device->readBytesReg(reg | m_autoIncrementMode, buffer, len)
325 mraa::I2c *device; local
    [all...]
  /hardware/qcom/camera/QCamera2/HAL/
QCameraMuxer.h 40 * physical cameras enumerated on the device
47 // Device version
57 // Reference to camera device structure
68 // Camera Device to be shared to Frameworks
70 // Device version
146 const char* id, uint32_t halVersion, struct hw_device_t** device);
150 struct hw_device_t** device);
262 struct camera_device * device);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransfer.java 67 * This class run an actual Opp transfer session (from connect target device to
350 * 3) new a thread to connect to target device
351 * 3.1) Try a few times to do SDP query for target device OPUSH channel
505 private final BluetoothDevice device; field in class:BluetoothOppTransfer.SocketConnectThread
522 this.device = null;
527 public SocketConnectThread(BluetoothDevice device, int channel, boolean
530 this.device = device;
538 public SocketConnectThread(BluetoothDevice device, boolean
541 this.device = device
    [all...]

Completed in 1232 milliseconds

<<71727374757677787980>>