/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDGPUSubtarget.cpp | 37 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()
|
D | AMDGPUSubtarget.h | 32 const AMDGPUDevice *mDevice; variable
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
D | BluetoothConnectionFacade.java | 128 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 …]
|
D | BluetoothMapFacade.java | 88 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()
|
D | BluetoothA2dpFacade.java | 108 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()
|
D | BluetoothHspFacade.java | 89 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()
|
D | BluetoothHidFacade.java | 88 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()
|
D | BluetoothPairingHelper.java | 38 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()
|
D | BluetoothA2dpSinkFacade.java | 86 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()
|
D | BluetoothRfcommFacade.java | 105 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()
|
D | BluetoothAvrcpFacade.java | 108 BluetoothDevice mDevice = BluetoothFacade.getDevice(sAvrcpProfile.getConnectedDevices(), in bluetoothAvrcpSendPassThroughCmd() local 110 sAvrcpProfile.sendPassThroughCmd(mDevice, keyCode, keyState); in bluetoothAvrcpSendPassThroughCmd()
|
D | BluetoothFacade.java | 209 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/ |
D | DeqpTestRunner.java | 141 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 …]
|