Searched defs:deviceName (Results 1 - 25 of 32) sorted by relevance

12

/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILDeviceInfo.cpp20 getDeviceFromName(const std::string &deviceName, AMDGPUSubtarget *ptr, argument
23 if (deviceName.c_str()[2] == '7') {
24 switch (deviceName.c_str()[3]) {
32 } else if (deviceName == "cypress") {
39 } else if (deviceName == "juniper") {
46 } else if (deviceName == "redwood") {
53 } else if (deviceName == "cedar") {
60 } else if (deviceName == "barts"
61 || deviceName == "turks") {
68 } else if (deviceName
[all...]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DVideoCapturer.java37 public static VideoCapturer create(String deviceName) { argument
38 Object capturer = nativeCreateVideoCapturer(deviceName);
67 private static native Object nativeCreateVideoCapturer(String deviceName); argument
/external/webrtc/webrtc/modules/video_capture/
H A Dvideo_capture_delay.h29 char * deviceName; member in struct:webrtc::videocapturemodule::DelayValues
/external/rmi4utils/f54test/
H A Dmain.cpp105 char *deviceName = NULL; local
126 deviceName = optarg;
150 if (deviceName) {
151 rc = RunF54Test(deviceName, reportType, continuousMode, noReset);
/external/rmi4utils/rmi4update/
H A Dmain.cpp105 char *deviceName = NULL; local
131 deviceName = optarg;
151 if (!deviceName) {
155 rc = GetFirmwareProps(deviceName, props);
177 if (deviceName) {
178 rc = UpdateDevice(image, force, performLockdown, deviceName);
/external/opencv3/samples/cpp/
H A Dautofocus.cpp46 const char * deviceName; member in struct:Args_t
248 GlobalArgs.deviceName = "Nikon";
295 GlobalArgs.deviceName = arg;
312 VideoCapture cap(GlobalArgs.deviceName);
315 cout << "Cannot find device " << GlobalArgs.deviceName << endl;
/external/webrtc/webrtc/modules/audio_device/linux/
H A Daudio_mixer_manager_alsa_linux.cc163 int32_t AudioMixerManagerLinuxALSA::OpenSpeaker(char* deviceName) argument
166 "AudioMixerManagerLinuxALSA::OpenSpeaker(name=%s)", deviceName);
213 GetControlName(controlName, deviceName);
256 int32_t AudioMixerManagerLinuxALSA::OpenMicrophone(char *deviceName) argument
260 deviceName);
315 GetControlName(controlName, deviceName);
1292 char* deviceName) const
1295 // deviceName: "front:CARD=Intel,DEV=0"
1297 char* pos1 = strchr(deviceName, ':');
1298 char* pos2 = strchr(deviceName, ',');
[all...]
H A Daudio_device_alsa_linux.cc1056 char deviceName[kAdmMaxDeviceNameSize] = {0}; local
1057 GetDevicesInfo(2, true, _outputDeviceIndex, deviceName,
1061 " InitPlayout open (%s)", deviceName);
1065 deviceName,
1076 deviceName,
1213 char deviceName[kAdmMaxDeviceNameSize] = {0}; local
1214 GetDevicesInfo(2, false, _inputDeviceIndex, deviceName,
1218 "InitRecording open (%s)", deviceName);
1221 deviceName,
1233 deviceName,
[all...]
/external/mesa3d/src/glx/
H A Ddri2.c267 DRI2Connect(Display * dpy, XID window, char **driverName, char **deviceName) argument
318 *deviceName = Xmalloc(rep.deviceNameLength + 1);
319 if (*deviceName == NULL) {
326 _XReadPad(dpy, *deviceName, rep.deviceNameLength);
327 (*deviceName)[rep.deviceNameLength] = '\0';
H A Ddri2_glx.c1029 char *driverName, *deviceName, *tmp; local
1046 &driverName, &deviceName)) {
1078 psc->fd = open(deviceName, O_RDWR | O_CLOEXEC);
1082 psc->fd = open(deviceName, O_RDWR);
1167 Xfree(deviceName);
1190 Xfree(deviceName);
/external/rmi4utils/rmidevice/
H A Dhiddevice.cpp688 bool HIDDevice::LookupHidDeviceName(int bus, int vendorId, int productId, std::string & deviceName) argument
703 deviceName = devDirEntry->d_name;
713 bool HIDDevice::FindHidRawFile(std::string & deviceName, std::string & hidrawFile) argument
720 snprintf(hidrawDir, PATH_MAX, "/sys/bus/hid/devices/%s/hidraw", deviceName.c_str());
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DVideoCapturerAndroid.java349 // Returns the camera index for camera with name |deviceName|, or -1 if no such camera can be
350 // found. If |deviceName| is empty, the first available device is used.
351 private static int lookupDeviceName(String deviceName) { argument
352 Logging.d(TAG, "lookupDeviceName: " + deviceName);
353 if (deviceName == null || android.hardware.Camera.getNumberOfCameras() == 0) {
356 if (deviceName.isEmpty()) {
360 if (deviceName.equals(CameraEnumerationAndroid.getDeviceName(i))) {
/external/opencv3/modules/videoio/src/
H A Dcap_gphoto2.cpp139 DigitalCameraCapture(const String &deviceName);
155 int findDevice(const char * deviceName) const;
372 DigitalCameraCapture::DigitalCameraCapture(const String & deviceName) argument
375 int index = findDevice(deviceName.c_str());
905 int DigitalCameraCapture::findDevice(const char * deviceName) const
910 if (deviceName != 0)
915 if (model != 0 && strstr(model, deviceName))
1213 * @param deviceName is a substring in digital camera model name.
1215 Ptr<IVideoCapture> createGPhoto2Capture(const String & deviceName) argument
1217 Ptr<IVideoCapture> capture = makePtr<gphoto2::DigitalCameraCapture>(deviceName);
[all...]
H A Dcap_libv4l.cpp311 char* deviceName; member in struct:CvCaptureCAM_V4L
396 char deviceName[MAX_DEVICE_DRIVER_NAME]; local
401 sprintf(deviceName, "/dev/video%1d", CameraNumber);
403 deviceHandle = open(deviceName, O_RDONLY);
419 static int try_init_v4l(CvCaptureCAM_V4L* capture, char *deviceName) argument
433 capture->deviceHandle = v4l1_open(deviceName, O_RDWR);
463 static int try_init_v4l2(CvCaptureCAM_V4L* capture, char *deviceName) argument
475 capture->deviceHandle = v4l2_open (deviceName, O_RDWR /* required */ | O_NONBLOCK, 0);
665 static int _capture_V4L2 (CvCaptureCAM_V4L *capture, char *deviceName) argument
669 capture->deviceName
873 _capture_V4L(CvCaptureCAM_V4L *capture, char *deviceName) argument
1031 char deviceName[MAX_DEVICE_DRIVER_NAME]; local
1501 char deviceName[MAX_DEVICE_DRIVER_NAME]; local
[all...]
H A Dcap_v4l.cpp374 char deviceName[MAX_DEVICE_DRIVER_NAME]; local
379 sprintf(deviceName, "/dev/video%1d", CameraNumber);
381 deviceHandle = open(deviceName, O_RDONLY);
443 static int try_init_v4l(CvCaptureCAM_V4L* capture, char *deviceName) argument
456 capture->deviceHandle = open(deviceName, O_RDWR);
487 static int try_init_v4l2(CvCaptureCAM_V4L* capture, char *deviceName) argument
498 capture->deviceHandle = open (deviceName, O_RDWR /* required */ | O_NONBLOCK, 0);
502 fprintf(stderr, "(DEBUG) try_init_v4l2 open \"%s\": %s\n", deviceName, strerror(errno));
512 fprintf(stderr, "(DEBUG) try_init_v4l2 VIDIOC_QUERYCAP \"%s\": %s\n", deviceName, strerror(errno));
522 fprintf(stderr, "(DEBUG) try_init_v4l2 VIDIOC_G_INPUT \"%s\": %s\n", deviceName, strerro
793 _capture_V4L2(CvCaptureCAM_V4L *capture, char *deviceName) argument
989 _capture_V4L(CvCaptureCAM_V4L *capture, char *deviceName) argument
1114 char deviceName[MAX_DEVICE_DRIVER_NAME]; local
[all...]
/external/opencv3/modules/core/src/
H A Docl.cpp2215 // Layout: <Platform>:<CPU|GPU|ACCELERATOR|nothing=GPU/CPU>:<deviceName>
2250 std::string platform, deviceName; local
2256 !parseOpenCLDeviceConfiguration(std::string(configuration), platform, deviceTypes, deviceName)
2262 if (deviceName.length() == 1)
2270 for (size_t i = 0; i < deviceName.length(); i++)
2272 if (!isdigit(deviceName[i]))
2280 deviceID = atoi(deviceName.c_str());
2377 if ( (isID || name.find(deviceName) != std::string::npos) && useGPU)
2395 std::cerr << std::endl << " Device name: " << (deviceName.length() == 0 ? "any" : deviceName) << st
[all...]
/external/skia/third_party/vulkan/
H A Dvulkan.h1352 char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE]; member in struct:VkPhysicalDeviceProperties
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h1361 char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE]; member in struct:VkPhysicalDeviceProperties
/external/robolectric/v3/runtime/
H A Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-22.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 888 milliseconds

12