Home
last modified time | relevance | path

Searched refs:mDevice (Results 1 – 13 of 13) sorted by relevance

/external/mesa3d/src/gallium/drivers/radeon/
DAMDGPUSubtarget.cpp37 mDevice = AMDGPUDeviceInfo::getDeviceFromName(mDevName, this, mIs64bit); in AMDGPUSubtarget()
42 delete mDevice; in ~AMDGPUSubtarget()
75 if (!mDevice) { in getDataLayout()
82 return mDevice->getDataLayout(); in getDataLayout()
93 return mDevice; in device()
DAMDGPUSubtarget.h32 const AMDGPUDevice *mDevice; variable
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothConnectionFacade.java128 private BluetoothDevice mDevice; field in BluetoothConnectionFacade.DiscoverConnectReceiver
150 mDevice = device; in onReceive()
154 if (mDevice == null) { in onReceive()
159 boolean status = mDevice.fetchUuidsWithSdp(); in onReceive()
177 private BluetoothDevice mDevice = null; field in BluetoothConnectionFacade.DiscoverBondReceiver
199 mDevice = device; in onReceive()
203 if (mDevice == null) { in onReceive()
210 Log.d("Bond with " + mDevice.getAliasName()); in onReceive()
211 if (mDevice.createBond()) { in onReceive()
215 Log.e("Failed to bond with " + mDevice.getAliasName()); in onReceive()
[all …]
DBluetoothMapFacade.java88 BluetoothDevice mDevice = BluetoothFacade.getDevice(connectedMapDevices, deviceID); in bluetoothMapDisconnect() local
89 if (!connectedMapDevices.isEmpty() && connectedMapDevices.get(0).equals(mDevice)) { in bluetoothMapDisconnect()
90 if (sMapProfile.getPriority(mDevice) > BluetoothProfile.PRIORITY_ON) { in bluetoothMapDisconnect()
91 sMapProfile.setPriority(mDevice, BluetoothProfile.PRIORITY_ON); in bluetoothMapDisconnect()
93 return sMapProfile.disconnect(mDevice); in bluetoothMapDisconnect()
DBluetoothA2dpFacade.java108 BluetoothDevice mDevice = BluetoothFacade.getDevice( in bluetoothA2dpConnect()
110 Log.d("Connecting to device " + mDevice.getAliasName()); in bluetoothA2dpConnect()
111 return a2dpConnect(mDevice); in bluetoothA2dpConnect()
130 BluetoothDevice mDevice = BluetoothFacade.getDevice(connectedA2dpDevices, deviceID); in bluetoothA2dpDisconnect() local
131 return a2dpDisconnect(mDevice); in bluetoothA2dpDisconnect()
DBluetoothHspFacade.java89 BluetoothDevice mDevice = BluetoothFacade.getDevice(BluetoothFacade.DiscoveredDevices, device); in bluetoothHspConnect()
90 Log.d("Connecting to device " + mDevice.getAliasName()); in bluetoothHspConnect()
91 return hspConnect(mDevice); in bluetoothHspConnect()
102 BluetoothDevice mDevice = BluetoothFacade.getDevice(sHspProfile.getConnectedDevices(), in bluetoothHspDisconnect() local
104 return hspDisconnect(mDevice); in bluetoothHspDisconnect()
DBluetoothHidFacade.java88 BluetoothDevice mDevice = BluetoothFacade.getDevice(BluetoothFacade.DiscoveredDevices, device); in bluetoothHidConnect()
89 Log.d("Connecting to device " + mDevice.getAliasName()); in bluetoothHidConnect()
90 return hidConnect(mDevice); in bluetoothHidConnect()
101 BluetoothDevice mDevice = BluetoothFacade.getDevice(sHidProfile.getConnectedDevices(), in bluetoothHidDisconnect() local
103 return hidDisconnect(mDevice); in bluetoothHidDisconnect()
DBluetoothPairingHelper.java38 BluetoothDevice mDevice = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); in onReceive() local
44 mDevice.setPairingConfirmation(true); in onReceive()
66 newIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice); in onReceive()
DBluetoothA2dpSinkFacade.java86 BluetoothDevice mDevice = BluetoothFacade.getDevice(BluetoothFacade.DiscoveredDevices, device); in bluetoothA2dpSinkConnect()
87 Log.d("Connecting to device " + mDevice.getAliasName()); in bluetoothA2dpSinkConnect()
88 return a2dpSinkConnect(mDevice); in bluetoothA2dpSinkConnect()
DBluetoothRfcommFacade.java105 BluetoothDevice mDevice; in bluetoothRfcommConnect() local
108 mDevice = mBluetoothAdapter.getRemoteDevice(address); in bluetoothRfcommConnect()
112 ConnectThread t = new ConnectThread(mDevice, uuid); in bluetoothRfcommConnect()
348 private BluetoothDevice mDevice; field in BluetoothConnection
364 mDevice = mSocket.getRemoteDevice(); in BluetoothConnection()
378 return mDevice.getAddress(); in getRemoteBluetoothAddress()
460 return mDevice.getName(); in getConnectedDeviceName()
DBluetoothAvrcpFacade.java108 BluetoothDevice mDevice = BluetoothFacade.getDevice(sAvrcpProfile.getConnectedDevices(), in bluetoothAvrcpSendPassThroughCmd() local
110 sAvrcpProfile.sendPassThroughCmd(mDevice, keyCode, keyState); in bluetoothAvrcpSendPassThroughCmd()
DBluetoothFacade.java209 BluetoothDevice mDevice; in bluetoothGetRemoteDeviceName() local
210 mDevice = mBluetoothAdapter.getRemoteDevice(address); in bluetoothGetRemoteDeviceName()
211 return mDevice.getName(); in bluetoothGetRemoteDeviceName()
/external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
DDeqpTestRunner.java141 private ITestDevice mDevice; field in DeqpTestRunner
204 mDevice = device; in setDevice()
212 return mDevice; in getDevice()
871 private ITestDevice mDevice; field in DeqpTestRunner.Recovery
889 mDevice = device; in setDevice()
1009 final String processes = mDevice.executeShellCommand("ps | grep com.drawelements"); in getDeqpProcessPids()
1030 mDevice.executeShellCommand(String.format("kill -9 %d", processId)); in killDeqpProcess()
1049 recoverDeviceMethod = mDevice.getClass().getMethod("recoverDevice"); in recoverDevice()
1056 recoverDeviceMethod.invoke(mDevice); in recoverDevice()
1071 mDevice.reboot(); in rebootDevice()
[all …]