/build/target/product/ |
emulator.mk | 25 # Device modules 57 device/generic/goldfish/fstab.goldfish:root/fstab.goldfish \ 58 device/generic/goldfish/init.goldfish.rc:root/init.goldfish.rc \ 59 device/generic/goldfish/init.goldfish.sh:system/etc/init.goldfish.sh \ 60 device/generic/goldfish/ueventd.goldfish.rc:root/ueventd.goldfish.rc \ 61 device/generic/goldfish/init.ranchu.rc:root/init.ranchu.rc \ 62 device/generic/goldfish/fstab.ranchu:root/fstab.ranchu \ 63 device/generic/goldfish/ueventd.ranchu.rc:root/ueventd.ranchu.rc \ 66 PRODUCT_PACKAGE_OVERLAYS := device/generic/goldfish/overlay
|
/development/tools/hosttestlib/src/com/android/hosttest/ |
DeviceTestCase.java | 24 * Helper JUnit test case that stores reference to an Android device and test data. 26 * Can be extended to verify an Android device's response to various adb commands. 30 /** Android device under test */ 41 public void setDevice(IDevice device) { 42 mDevice = device; 68 // ensure device has been set before test is run
|
/device/generic/goldfish/camera/ |
EmulatedBaseCamera.h | 27 * functionality common to all emulated camera device versions ("fake", 39 struct hw_device_t* device, 60 /* Creates connection to the emulated camera device. 65 virtual status_t connectCamera(hw_device_t** device) = 0; 75 * all function calls into the camera device will return 111 /* Version of the camera device HAL implemented by this camera */
|
/device/google/atv/products/ |
atv_arm.mk | 17 $(call inherit-product, device/google/atv/products/atv_generic.mk) 18 $(call inherit-product, $(SRC_TARGET_DIR)/board/generic/device.mk)
|
atv_x86.mk | 21 $(call inherit-product, device/google/atv/products/atv_generic.mk) 22 $(call inherit-product, $(SRC_TARGET_DIR)/board/generic_x86/device.mk)
|
/external/autotest/client/site_tests/network_WiMaxPresent/ |
network_WiMaxPresent.py | 15 network. It simply checks if shill creates a WiMAX device object, which 29 device = proxy.find_wimax_device_object() 30 if not device: 31 raise error.TestError('Could not find a WiMAX device.')
|
/external/autotest/server/site_tests/bluetooth_Sanity_AdapterPresent/ |
bluetooth_Sanity_AdapterPresent.py | 17 if not self.device.reset_off(): 22 if not self.device.has_adapter():
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/ |
desktop_device.py | 6 from telemetry.internal.platform import device namespace 9 class DesktopDevice(device.Device): 21 # If the host platform is Chrome OS, the device is also considered as cros.
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
BluetoothDiscoveryHelper.java | 57 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); local 58 Log.d("Found device " + device.getAliasName()); 60 if (device.getBondState() != BluetoothDevice.BOND_BONDED) { 61 mListener.addDevice(device.getName(), device.getAddress()); 77 for (BluetoothDevice device : pairedDevices) { 78 mListener.addBondedDevice(device.getName(), device.getAddress());
|
/hardware/intel/img/hwcomposer/merrifield/include/ |
DrmConfig.h | 30 static uint32_t getDrmConnector(int device); 31 static uint32_t getDrmEncoder(int device);
|
/hardware/libhardware/include/hardware/ |
vibrator.h | 32 * The id of the main vibrator device 39 * Common methods of the vibrator device. This *must* be the first member of 66 static inline int vibrator_open(const struct hw_module_t* module, vibrator_device_t** device) 68 return module->methods->open(module, VIBRATOR_DEVICE_ID_MAIN, (struct hw_device_t**)device);
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/privacy/ |
PrivacyActivity.java | 17 package com.android.tv.settings.device.privacy; 24 import com.android.tv.settings.device.storage.ResetActivity;
|
/system/connectivity/shill/test-scripts/ |
set-mtu | 13 for device in flim.GetObjectList("Device"): 14 device_properties = device.GetProperties(utf8_strings = True)
|
/device/intel/edison/ |
BoardConfig.mk | 35 BOARD_GPT_INI := device/intel/edison/gpt.ini 47 device/intel/edison/flash_tools/brillo-flashall-edison.sh:provision-device \ 48 device/intel/edison/fstab.device:root/fstab.${soc_name} 59 device/intel/edison/sepolicy
|
/external/autotest/server/site_tests/bluetooth_Sanity_ValidAddress/ |
bluetooth_Sanity_ValidAddress.py | 19 if not self.device.reset_off(): 24 bluez_properties = self.device.get_adapter_properties() 25 controller_info = self.device.read_info() 41 raise error.TestFail('Device portion of address is all zeros') 48 raise error.TestFail('Device portion of address is all ones') 51 self.device.set_powered(True) 52 bluez_properties = self.device.get_adapter_properties() 53 controller_info = self.device.read_info()
|
/external/blktrace/btt/ |
devmap.c | 26 char device[32], devno[32]; member in struct:devmap 35 if (strstr(line, "Device") != NULL) 39 if (sscanf(line, "%s %s", dmp->device, dmp->devno) != 2) { 48 char *dev_map_find(__u32 device) 53 sprintf(this, "%u,%u", MAJOR(device), MINOR(device)); 58 return dmp->device;
|
latency.c | 29 FILE *latency_open(__u32 device, char *name, char *post) 37 mjr = device >> MINORBITS; 38 mnr = device & ((1 << MINORBITS) - 1); 52 dip->q2d_ofp = latency_open(dip->device, q2d_name, "q2d"); 53 dip->d2c_ofp = latency_open(dip->device, d2c_name, "d2c"); 54 dip->q2c_ofp = latency_open(dip->device, q2c_name, "q2c");
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
shared_prefs_test.py | 34 device = mock.MagicMock(spec=device_utils.DeviceUtils) 35 device.FileExists = mock.Mock(side_effect=file_exists) 36 device.WriteFile = mock.Mock(side_effect=write_file) 37 device.ReadFile = mock.Mock(side_effect=read_file) 38 return device 44 self.device = MockDeviceWithFiles({ 58 self.device, 'com.some.package', 'prefs.xml') 72 self.device, 'com.some.package', 'prefs.xml') 82 self.device, 'com.some.package', 'prefs.xml') 91 self.device, 'com.some.package', 'prefs.xml' [all...] |
/external/skia/src/pdf/ |
SkPDFFormXObject.cpp | 18 SkPDFFormXObject::SkPDFFormXObject(SkPDFDevice* device) { 19 // We don't want to keep around device because we'd have two copies 22 SkAutoTUnref<SkPDFDict> resourceDict(device->createResourceDict()); 24 SkAutoTDelete<SkStreamAsset> content(device->content()); 27 SkAutoTUnref<SkPDFArray> bboxArray(device->copyMediaBox()); 33 if (!device->initialTransform().isIdentity()) { 35 if (!device->initialTransform().invert(&inverse)) {
|
/external/webrtc/webrtc/sound/ |
alsasoundsystem.h | 24 // Sound system implementation for ALSA, the predominant sound device API on 45 bool GetDefaultPlaybackDevice(SoundDeviceLocator **device) override; 46 bool GetDefaultCaptureDevice(SoundDeviceLocator **device) override; 49 const SoundDeviceLocator *device, 52 const SoundDeviceLocator *device, 63 bool GetDefaultDevice(SoundDeviceLocator **device); 69 const SoundDeviceLocator *device,
|
/frameworks/av/include/camera/ndk/ |
NdkCameraDevice.h | 49 * ACameraDevice is opaque type that provides access to a camera device. 58 * The camera device is in use already. 70 * The camera is disabled due to a device policy, and cannot be opened. 75 * The camera device has encountered a fatal error. 76 * <p>The camera device needs to be re-opened to be used again.</p> 82 * <p>The Android device may need to be shut down and restarted to restore 92 * Camera device state callbacks to be used in {@link ACameraDevice_stateCallbacks}. 96 * @param device The {@link ACameraDevice} that is being disconnected. 98 typedef void (*ACameraDevice_StateCallback)(void* context, ACameraDevice* device); 101 * Camera device error state callbacks to be used in {@link ACameraDevice_stateCallbacks} [all...] |
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
IOProfile.cpp | 30 bool IOProfile::isCompatibleProfile(audio_devices_t device, 47 if (device != AUDIO_DEVICE_NONE) { 49 if (popcount(device & ~AUDIO_DEVICE_BIT_IN) > 1) { 50 if ((mSupportedDevices.types() & device) != device) { 53 } else if (mSupportedDevices.getDevice(device, address) == 0) {
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothSap.java | 55 * <li> {@link BluetoothDevice#EXTRA_DEVICE} - The remote device. </li> 210 * Get the currently connected remote Bluetooth device (PCE). 211 * @return The remote Bluetooth device, or null if not in connected or 230 * Returns true if the specified Bluetooth device is connected. 235 public boolean isConnected(BluetoothDevice device) { 236 if (VDBG) log("isConnected(" + device + ")"); 239 return mService.isConnected(device); 253 public boolean connect(BluetoothDevice device) { 254 if (DBG) log("connect(" + device + ")" + "not supported for SAPS"); 261 * @param device Remote Bluetooth Devic [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d3dx9shape.h | 29 HRESULT WINAPI D3DXCreateBox(struct IDirect3DDevice9 *device, float width, float height, 31 HRESULT WINAPI D3DXCreateCylinder(struct IDirect3DDevice9 *device, float radius1, float radius2, 33 HRESULT WINAPI D3DXCreateSphere(struct IDirect3DDevice9 *device, float radius, UINT slices, 35 HRESULT WINAPI D3DXCreateTeapot(struct IDirect3DDevice9 *device, 37 HRESULT WINAPI D3DXCreateTextA(struct IDirect3DDevice9 *device, HDC hdc, const char *text, float deviation, 39 HRESULT WINAPI D3DXCreateTextW(struct IDirect3DDevice9 *device, HDC hdc, const WCHAR *text, float deviation,
|
/system/core/init/ |
perfboot.py | 25 CPU temperature of the device. 91 def __init__(self, interval, device): 93 self._device = device 94 self._temp_paths = device.shell( 96 self._product = device.get_prop('ro.build.product') 170 def disable_dropbox(device): 172 device.root() 173 device.wait() 174 device.shell(['rm', '-rf', '/system/data/dropbox']) 175 original_dropbox_max_files = device.shell [all...] |