HomeSort by relevance Sort by last modified time
    Searched defs:device (Results 251 - 275 of 2498) sorted by null

<<11121314151617181920>>

  /hardware/libhardware/modules/hwcomposer/
hwcomposer.cpp 33 hwc_composer_device_1_t device; member in struct:hwc_context_t
38 struct hw_device_t** device);
111 struct hw_device_t** device)
122 dev->device.common.tag = HARDWARE_DEVICE_TAG;
123 dev->device.common.version = HWC_DEVICE_API_VERSION_1_0;
124 dev->device.common.module = const_cast<hw_module_t*>(module);
125 dev->device.common.close = hwc_device_close;
127 dev->device.prepare = hwc_prepare;
128 dev->device.set = hwc_set;
130 *device = &dev->device.common
    [all...]
  /hardware/libhardware/modules/local_time/
local_time_hw.c 35 struct local_time_hw_device device; member in struct:stub_local_time_device
65 static int ltdev_close(hw_device_t *device)
67 free(device);
72 hw_device_t** device)
83 ltdev->device.common.tag = HARDWARE_DEVICE_TAG;
84 ltdev->device.common.version = 0;
85 ltdev->device.common.module = (struct hw_module_t *) module;
86 ltdev->device.common.close = ltdev_close;
88 ltdev->device.get_local_time = ltdev_get_local_time;
89 ltdev->device.get_local_freq = ltdev_get_local_freq
    [all...]
  /hardware/libhardware/tests/fingerprint/
fingerprint_test_fixtures.h 56 hw_device_t *device = NULL; local
60 (const hw_module_t*)fp_module(), NULL, &device))
61 << "Can't open fingerprint device";
62 ASSERT_TRUE(NULL != device)
63 << "Fingerprint open() returned a NULL device";
64 ASSERT_EQ(kVersion, device->version)
66 fp_device_ = reinterpret_cast<fingerprint_device_t*>(device);
  /hardware/libhardware/tests/nusensors/
nusensors.cpp 65 struct sensors_poll_device_t* device; local
74 err = sensors_open(&module->common, &device);
106 err = device->activate(device, list[i].handle, 0);
115 err = device->activate(device, list[i].handle, 1);
121 device->setDelay(device, list[i].handle, ms2ns(10));
125 int n = device->poll(device, buffer, numEvents)
    [all...]
  /hardware/qcom/audio/post_proc/
equalizer.h 36 uint32_t device; member in struct:equalizer_context_s
46 int equalizer_set_device(effect_context_t *context, uint32_t device);
  /packages/apps/Camera2/src/com/android/camera/device/
CameraModuleHelper.java 17 package com.android.camera.device;
PortabilityCameraActionProvider.java 17 package com.android.camera.device;
23 import com.android.camera.device.CameraDeviceKey.ApiType;
31 * a portability layer camera device object.
SingleDeviceRequest.java 17 package com.android.camera.device;
30 * for a single device request.
61 public boolean set(TDevice device) {
63 return mFuture.set(device);
  /packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
ActivityTest.java 62 public UiDevice device; field in class:ActivityTest
106 device = UiDevice.getInstance(getInstrumentation());
112 bots = new Bots(device, automation, context, TIMEOUT);
120 device.setOrientationNatural();
138 device.unfreezeRotation();
157 device.waitForIdle();
IntegratedDownloadsUiTest.java 71 device.pressBack(); // to clear the dialog.
  /packages/apps/Settings/src/com/android/settings/bluetooth/
SavedBluetoothDeviceUpdater.java 61 final BluetoothDevice device = cachedDevice.getDevice(); local
62 return device.getBondState() == BluetoothDevice.BOND_BONDED && !device.isConnected();
67 final CachedBluetoothDevice device = ((BluetoothDevicePreference) preference) local
69 device.connect(true);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/p2p/
P2pThisDevicePreferenceControllerTest.java 60 WifiP2pDevice device = new WifiP2pDevice(); local
61 device.deviceAddress = "address";
63 mController.updateDeviceName(device);
65 assertThat(mPreference.getTitle()).isEqualTo(device.deviceAddress);
70 WifiP2pDevice device = new WifiP2pDevice(); local
71 device.deviceAddress = "address";
72 device.deviceName = "name";
74 mController.updateDeviceName(device);
76 assertThat(mPreference.getTitle()).isEqualTo(device.deviceName);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingRequest.java 39 BluetoothDevice device = local
45 pairingIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, device);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/
StorageResetActivity.java 17 package com.android.tv.settings.device;
25 * Activity to view storage consumption and factory reset device.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
UninstallPreference.java 17 package com.android.tv.settings.device.apps;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/specialaccess/
ExternalSourcesActivity.java 17 package com.android.tv.settings.device.apps.specialaccess;
ManageAppOp.java 17 package com.android.tv.settings.device.apps.specialaccess;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DaydreamActivity.java 17 package com.android.tv.settings.device.display.daydream;
DaydreamVoiceAction.java 17 package com.android.tv.settings.device.display.daydream;
27 * Activity that handles a SLEEP voice action (putting the device to sleep).
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/sound/
SoundActivity.java 17 package com.android.tv.settings.device.sound;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
ConfirmClearCacheFragment.java 17 package com.android.tv.settings.device.storage;
FormattingProgressFragment.java 17 package com.android.tv.settings.device.storage;
SlowDriveStepFragment.java 17 package com.android.tv.settings.device.storage;
StoragePreference.java 17 package com.android.tv.settings.device.storage;
  /platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/util/
SendToInstrumentation.java 16 package android.device.collectors.util;

Completed in 425 milliseconds

<<11121314151617181920>>