Home
last modified time | relevance | path

Searched refs:deviceID (Results 1 – 25 of 76) sorted by relevance

1234

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothConnectionFacade.java136 public DiscoverConnectReceiver(String deviceID) { in DiscoverConnectReceiver() argument
138 mDeviceID = deviceID; in DiscoverConnectReceiver()
185 public DiscoverBondReceiver(String deviceID) { in DiscoverBondReceiver() argument
187 mDeviceID = deviceID; in DiscoverBondReceiver()
239 public ConnectStateChangeReceiver(String deviceID) { in ConnectStateChangeReceiver() argument
240 mDeviceID = deviceID; in ConnectStateChangeReceiver()
275 private void connectProfile(BluetoothDevice device, String deviceID) { in connectProfile() argument
287 ConnectStateChangeReceiver receiver = new ConnectStateChangeReceiver(deviceID); in connectProfile()
289 listeningDevices.put("A2dpConnecting" + deviceID, receiver); in connectProfile()
301 ConnectStateChangeReceiver receiver = new ConnectStateChangeReceiver(deviceID); in connectProfile()
[all …]
DBluetoothHidFacade.java116 String deviceID) { in bluetoothHidGetConnectionStatus()
123 device = BluetoothFacade.getDevice(deviceList, deviceID); in bluetoothHidGetConnectionStatus()
134 String deviceID, in bluetoothHidSetReport()
141 deviceID); in bluetoothHidSetReport()
150 String deviceID, in bluetoothHidGetReport()
159 deviceID); in bluetoothHidGetReport()
168 String deviceID, in bluetoothHidSendData()
172 deviceID); in bluetoothHidSendData()
180 String deviceID) throws Exception { in bluetoothHidVirtualUnplug()
182 deviceID); in bluetoothHidVirtualUnplug()
DBluetoothFacade.java144 public static boolean deviceMatch(BluetoothDevice device, String deviceID) { in deviceMatch() argument
145 return deviceID.equals(device.getAliasName()) || deviceID.equals(device.getAddress()); in deviceMatch()
157 public static BluetoothDevice getDevice(Collection<BluetoothDevice> devices, String deviceID) in getDevice() argument
159 Log.d("Looking for " + deviceID); in getDevice()
162 if (deviceMatch(bd, deviceID)) { in getDevice()
167 throw new Exception("Can't find device " + deviceID); in getDevice()
170 public static boolean deviceExists(Collection<BluetoothDevice> devices, String deviceID) { in deviceExists() argument
172 if (deviceMatch(bd, deviceID)) { in deviceExists()
DBluetoothA2dpFacade.java104 String deviceID) in bluetoothA2dpConnect()
109 BluetoothFacade.DiscoveredDevices, deviceID); in bluetoothA2dpConnect()
124 String deviceID) in bluetoothA2dpDisconnect()
130 BluetoothDevice mDevice = BluetoothFacade.getDevice(connectedA2dpDevices, deviceID); in bluetoothA2dpDisconnect()
DBluetoothAvrcpFacade.java99 String deviceID, in bluetoothAvrcpSendPassThroughCmd()
109 deviceID); in bluetoothAvrcpSendPassThroughCmd()
DBluetoothMapFacade.java83 String deviceID) in bluetoothMapDisconnect()
88 BluetoothDevice mDevice = BluetoothFacade.getDevice(connectedMapDevices, deviceID); in bluetoothMapDisconnect()
/external/opencv3/modules/videoio/src/
Dcap_dshow.cpp491 static char * getDeviceName(int deviceID);
498 void setIdealFramerate(int deviceID, int idealFramerate);
506 bool setupDevice(int deviceID);
507 bool setupDevice(int deviceID, int w, int h);
508 bool setupDeviceFourcc(int deviceID, int w, int h,int fourcc);
512 bool setupDevice(int deviceID, int connection);
513 bool setupDevice(int deviceID, int w, int h, int connection);
525 bool isFrameNew(int deviceID);
527 bool isDeviceSetup(int deviceID) const;
530 unsigned char * getPixels(int deviceID, bool flipRedAndBlue = true, bool flipImage = false);
[all …]
Dcap_msmf.cpp459 …static HRESULT CreateInstance(ImageGrabber **ppIG, unsigned int deviceID, bool synchronous = false…
467 ImageGrabber(unsigned int deviceID, bool synchronous);
482 …tance(ImageGrabberThread **ppIGT, IMFMediaSource *pSource, unsigned int deviceID, bool synchroniou…
490 ImageGrabberThread(IMFMediaSource *pSource, unsigned int deviceID, bool synchronious);
675 void closeDevice(int deviceID);
677 void setEmergencyStopEvent(int deviceID, void *userData, void(*func)(int, void *));
681 CamParametrs getParametrs(int deviceID);
683 void setParametrs(int deviceID, CamParametrs parametrs);
687 unsigned int getCountFormats(int deviceID) const;
689 unsigned int getWidth(int deviceID) const;
[all …]
/external/skia/platform_tools/chromeos/bin/
Dchromeos_make16 deviceID=""
22 deviceID="$2"
31 if [[ -z "${deviceID}" ]]; then
70 cros chrome-sdk --nogoma --board ${deviceID} --debug -- /bin/sh -c "cd ${SKIA_TOP_DIR}; platform_to…
Dbuild_skia_in_chroot8 deviceID=""
14 deviceID="$2"
27 setup_device $deviceID
/external/mesa3d/src/gallium/winsys/i915/sw/
Di915_sw_winsys.c36 unsigned int deviceID; in i915_sw_winsys_create() local
42 i915_sw_get_device_id(&deviceID); in i915_sw_winsys_create()
50 isws->base.pci_id = deviceID; in i915_sw_winsys_create()
/external/mesa3d/src/gallium/winsys/i915/drm/
Di915_drm_winsys.c45 unsigned int deviceID; in i915_drm_winsys_create() local
51 i915_drm_get_device_id(drmFD, &deviceID); in i915_drm_winsys_create()
58 idws->base.pci_id = deviceID; in i915_drm_winsys_create()
/external/opencv3/modules/cudaimgproc/test/
Dtest_histogram.cpp62 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
107 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
150 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
191 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
Dtest_match_template.cpp76 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
135 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
186 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
233 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
284 cv::cuda::setDevice(devInfo.deviceID()); in SetUp()
/external/opencv3/modules/cudastereo/test/
Dtest_stereo.cpp60 cv::cuda::setDevice(devInfo.deviceID()); in SetUp()
95 cv::cuda::setDevice(devInfo.deviceID()); in SetUp()
138 cv::cuda::setDevice(devInfo.deviceID()); in SetUp()
188 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
/external/opencv3/modules/cudaarithm/test/
Dtest_core.cpp68 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
135 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
198 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
265 cv::cuda::setDevice(devInfo.deviceID()); in CV_ENUM()
317 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
385 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
Dtest_element_operations.cpp71 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
132 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
193 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
281 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
374 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
435 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
496 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
584 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
677 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
765 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
[all …]
/external/opencv3/modules/cudafilters/test/
Dtest_filters.cpp93 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
144 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
192 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
245 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
316 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
381 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
443 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
513 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
564 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
619 cv::cuda::setDevice(devInfo.deviceID()); in CV_ENUM()
/external/webrtc/webrtc/modules/audio_device/mac/
Daudio_mixer_manager_mac.h24 int32_t OpenSpeaker(AudioDeviceID deviceID);
25 int32_t OpenMicrophone(AudioDeviceID deviceID);
/external/opencv3/modules/cudacodec/test/
Dtest_video.cpp56 cv::cuda::setDevice(GET_PARAM(0).deviceID()); in CUDA_TEST_P()
78 cv::cuda::setDevice(GET_PARAM(0).deviceID()); in CUDA_TEST_P()
/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_screen.c787 if (IS_9XX(intelScreen->deviceID)) { in intelCreateContext()
1082 intelScreen->deviceID = drm_intel_bufmgr_gem_get_devid(intelScreen->bufmgr); in intelInitScreen2()
1088 if (IS_GEN7(intelScreen->deviceID)) { in intelInitScreen2()
1090 } else if (IS_GEN6(intelScreen->deviceID)) { in intelInitScreen2()
1092 } else if (IS_GEN5(intelScreen->deviceID)) { in intelInitScreen2()
1094 } else if (IS_965(intelScreen->deviceID)) { in intelInitScreen2()
1096 } else if (IS_9XX(intelScreen->deviceID)) { in intelInitScreen2()
1123 if (IS_9XX(intelScreen->deviceID) || IS_965(intelScreen->deviceID)) in intelInitScreen2()
/external/mesa3d/src/mesa/drivers/dri/intel/
Dintel_screen.c787 if (IS_9XX(intelScreen->deviceID)) { in intelCreateContext()
1082 intelScreen->deviceID = drm_intel_bufmgr_gem_get_devid(intelScreen->bufmgr); in intelInitScreen2()
1088 if (IS_GEN7(intelScreen->deviceID)) { in intelInitScreen2()
1090 } else if (IS_GEN6(intelScreen->deviceID)) { in intelInitScreen2()
1092 } else if (IS_GEN5(intelScreen->deviceID)) { in intelInitScreen2()
1094 } else if (IS_965(intelScreen->deviceID)) { in intelInitScreen2()
1096 } else if (IS_9XX(intelScreen->deviceID)) { in intelInitScreen2()
1123 if (IS_9XX(intelScreen->deviceID) || IS_965(intelScreen->deviceID)) in intelInitScreen2()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_screen.c787 if (IS_9XX(intelScreen->deviceID)) { in intelCreateContext()
1082 intelScreen->deviceID = drm_intel_bufmgr_gem_get_devid(intelScreen->bufmgr); in intelInitScreen2()
1088 if (IS_GEN7(intelScreen->deviceID)) { in intelInitScreen2()
1090 } else if (IS_GEN6(intelScreen->deviceID)) { in intelInitScreen2()
1092 } else if (IS_GEN5(intelScreen->deviceID)) { in intelInitScreen2()
1094 } else if (IS_965(intelScreen->deviceID)) { in intelInitScreen2()
1096 } else if (IS_9XX(intelScreen->deviceID)) { in intelInitScreen2()
1123 if (IS_9XX(intelScreen->deviceID) || IS_965(intelScreen->deviceID)) in intelInitScreen2()
/external/opencv3/modules/cudalegacy/test/
Dtest_calib3d.cpp62 cv::cuda::setDevice(devInfo.deviceID()); in SetUp()
110 cv::cuda::setDevice(devInfo.deviceID()); in SetUp()
160 cv::cuda::setDevice(devInfo.deviceID()); in SetUp()
/external/opencv3/modules/cudawarping/test/
Dtest_pyramids.cpp66 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()
106 cv::cuda::setDevice(devInfo.deviceID()); in PARAM_TEST_CASE()

1234