Home
last modified time | relevance | path

Searched refs:devicePath (Results 1 – 10 of 10) sorted by relevance

/external/autotest/server/site_tests/kernel_ExternalUsbPeripheralsDetectionStress/
Dkernel_ExternalUsbPeripheralsDetectionStress.py70 def check_driver_symlink_and_dir(self, devicePath, productName): argument
81 self.host.run('ls -1 %s' % devicePath,
91 driver_path = os.path.join(devicePath,
124 devicePath = connected_device_dict['deviceInfo']['devicePath']
128 lambda: self.host.path_exists(devicePath),
139 self.check_driver_symlink_and_dir(devicePath, productName)):
145 lambda: not self.host.path_exists(devicePath),
/external/cronet/test_runner/src/com.android.tests.chromium.host/
DChromiumHostDrivenTest.java167 String devicePath; in createFlagFileOnDevice() local
171 devicePath = String.format("/data/local/tmp/%s", tmpFlagFile.getName()); in createFlagFileOnDevice()
172 getDevice().pushFile(tmpFlagFile, devicePath); in createFlagFileOnDevice()
179 return devicePath; in createFlagFileOnDevice()
/external/skia/src/gpu/graphite/
DComputePathAtlas.cpp249 SkPath devicePath = shape.asPath(); in add_shape_to_scene() local
274 scene->solidStroke(devicePath, color, adjustedStyle, atlasTransform); in add_shape_to_scene()
276 scene->solidStroke(devicePath, SkColors::kRed, style, atlasTransform); in add_shape_to_scene()
280 scene->solidFill(devicePath, SkColors::kRed, shape.fillType(), atlasTransform); in add_shape_to_scene()
DDevice.cpp1247 SkPath devicePath = geometry.shape().asPath(); in drawGeometry() local
1248 devicePath.transform(localToDevice.matrix().asM33()); in drawGeometry()
1249 devicePath.setIsVolatile(true); in drawGeometry()
1250 this->drawGeometry(Transform::Identity(), Geometry(Shape(devicePath)), paint, style, flags, in drawGeometry()
1520 SkPath devicePath = geometry.shape().asPath(); in drawClipShape() local
1521 devicePath.transform(localToDevice.matrix().asM33()); in drawClipShape()
1522 fDC->recordDraw(renderer, Transform::Identity(), Geometry(Shape(devicePath)), clip, order, in drawClipShape()
/external/webrtc/modules/video_capture/windows/
Ddevice_info_ds.cc552 void DeviceInfoDS::GetProductId(const char* devicePath, in GetProductId() argument
556 char* startPos = strstr((char*)devicePath, "\\\\?\\"); in GetProductId()
565 if (!pos || pos >= (char*)devicePath + strlen((char*)devicePath)) { in GetProductId()
Ddevice_info_ds.h75 static void GetProductId(const char* devicePath,
/external/rmi4utils/rmidevice/
Dhiddevice.cpp878 std::string devicePath; in FindTransportDevice() local
894 devicePath = devicePrefix + "devices/"; in FindTransportDevice()
896 devicesDir = opendir(devicePath.c_str()); in FindTransportDevice()
912 std::string fullLinkPath = devicePath + buf; in FindTransportDevice()
/external/skia/src/xps/
DSkXPSDevice.h255 const SkPath& devicePath,
DSkXPSDevice.cpp1666 SkPath* devicePath = xpsCompatiblePath; in drawPath() local
1669 devicePath = pathIsMutable ? xpsCompatiblePath : &modifiedPath; in drawPath()
1670 xpsCompatiblePath->transform(matrix, devicePath); in drawPath()
1673 stroke, fill, *devicePath)); in drawPath()
/external/skia/src/gpu/ganesh/
DClipStack.cpp273 SkPath devicePath; in analytic_clip_fp() local
274 e.fShape.asPath(&devicePath); in analytic_clip_fp()
275 devicePath.transform(e.fLocalToDevice); in analytic_clip_fp()
276 return GrConvexPolyEffect::Make(std::move(fp), edgeType, devicePath); in analytic_clip_fp()