HomeSort by relevance Sort by last modified time
    Searched refs:device (Results 1126 - 1150 of 4438) sorted by null

<<41424344454647484950>>

  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothManager.java 175 // then the device is not BT capable. Use BluetoothDevice.isEnabled()
176 // to see if BT is enabled on the device.
186 * available to the user (i.e. if the device is BT-capable
200 // Log.d(this, " - BT enabled! device name " + adapter.getName()
215 BluetoothDevice device = deviceList.get(i); local
216 Log.v(this, "state = " + mBluetoothHeadset.getConnectionState(device)
217 + "for headset: " + device);
241 BluetoothDevice device = deviceList.get(i); local
242 boolean isAudioOn = mBluetoothHeadset.isAudioConnected(device);
244 + "for headset: " + device);
364 BluetoothDevice device = deviceList.get(0); local
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java 29 import dexfuzz.executors.Device;
124 private void addExecutorsForArchitecture(Device device, Class<? extends Executor> quick,
133 quick.getConstructor(BaseListener.class, Device.class);
134 executors.add(constructor.newInstance(listener, device));
138 optimizing.getConstructor(BaseListener.class, Device.class);
139 executors.add(constructor.newInstance(listener, device));
143 interpreter.getConstructor(BaseListener.class, Device.class);
144 executors.add(constructor.newInstance(listener, device));
160 Device device = null local
    [all...]
  /external/autotest/client/site_tests/network_3GScanningProperty/
network_3GScanningProperty.py 26 Test that the |Scanning| Property of the shill cellular device object is
29 the cellular device.
99 @param cellular_device: The DBus proxy object for the cellular device.
172 'device in pseudomodem context.'),
174 device = self._cellular_proxy.find_cellular_device_object()
183 device,
189 device.ProposeScan()
202 device,
214 device,
247 'device in pseudomodem context.')
    [all...]
  /frameworks/native/services/inputflinger/
EventHub.h 48 * through evdev from uinput device drivers because there is currently no
63 // Device id of a special "virtual" keyboard that is always present.
65 // Device id of the "built-in" keyboard if there is one.
101 * Input device classes.
104 /* The input device is a keyboard or has buttons. */
107 /* The input device is an alpha-numeric keyboard (not just a dial pad). */
110 /* The input device is a touchscreen or a touchpad (either single-touch or multi-touch). */
113 /* The input device is a cursor device such as a trackball or mouse. */
116 /* The input device is a multi-touch touchscreen. *
    [all...]
  /hardware/akm/AK8975_FS/libsensors/
sensors.cpp 99 struct hw_device_t** device);
128 struct sensors_poll_device_t device; // must be first member in struct:sensors_poll_context_t
355 /** Open a new instance of a sensor device using name */
357 struct hw_device_t** device)
362 memset(&dev->device, 0, sizeof(sensors_poll_device_t));
364 dev->device.common.tag = HARDWARE_DEVICE_TAG;
365 dev->device.common.version = 0;
366 dev->device.common.module = const_cast<hw_module_t*>(module);
367 dev->device.common.close = poll__close;
368 dev->device.activate = poll__activate
    [all...]
  /hardware/qcom/audio/msm8909/post_proc/
effect_api.c 111 uint32_t device)
113 ALOGVV("%s: device 0x%x", __func__, device);
114 bassboost->device = device;
153 *p_param_values++ = bassboost.device;
187 uint32_t device)
189 ALOGV("%s: device=%d", __func__, device);
190 pbe->device = device
    [all...]
  /frameworks/native/vulkan/include/vulkan/
vulkan.h     [all...]
  /external/skia/third_party/vulkan/
vulkan.h     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/vulkan/
vulkan.h     [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
DynamicConfigPusher.java 25 import com.android.tradefed.device.DeviceNotAvailableException;
26 import com.android.tradefed.device.ITestDevice;
48 DEVICE,
62 @Option(name = "target", description = "The test target, \"device\" or \"host\"",
81 public void setUp(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError, BuildError,
126 case DEVICE:
128 if (!device.pushFile(src, deviceDest)) {
160 public void tearDown(ITestDevice device, IBuildInfo buildInfo, Throwable e)
163 case DEVICE:
166 device.executeShellCommand("rm -r " + mFilePushed)
    [all...]
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
BluetoothTest.java 30 * These tests should only be executed if the device supports bluetooth,
121 BluetoothDevice device = mAdapter.getRemoteDevice("00:11:22:AA:BB:CC"); local
122 assertNotNull(device);
123 assertEquals("00:11:22:AA:BB:CC", device.getAddress());
124 device = mAdapter.getRemoteDevice(
126 assertNotNull(device);
127 assertEquals("01:02:03:04:05:06", device.getAddress());
  /cts/hostsidetests/tv/src/com/android/cts/tv/
TvInputManagerHostTest.java 23 import com.android.tradefed.device.DeviceNotAvailableException;
24 import com.android.tradefed.device.ITestDevice;
104 ITestDevice device = getDevice(); local
105 device.executeAdbCommand("logcat", "-c");
106 device.executeShellCommand(START_COMMAND);
112 String logs = device.executeAdbCommand(
151 CLog.logAndDisplay(LogLevel.INFO, "Device doesn't have required feature "
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbMessage.java 106 public boolean write(AdbDevice device) {
107 synchronized (device) {
108 UsbRequest request = device.getOutRequest();
113 request = device.getOutRequest();
118 device.releaseOutRequest(request);
124 device.releaseOutRequest(request);
  /external/autotest/client/cros/networking/
cellular_proxy.py 83 """Returns the first dbus object found that is a cellular device.
85 @return DBus object for the first cellular device found. None if no
86 device found.
89 return self.find_object('Device', {'Type': self.TECHNOLOGY_CELLULAR})
97 (1) Ensure that the current device object disappears.
98 (2) If |expect_device|, ensure that the device reappears.
99 (3) If |expect_powered|, ensure that the device is powered.
102 This function does not check the service state for the device after
113 @return (device, service)
114 device: DBus object for the reappeared Device after the reset
    [all...]
  /external/libdrm/libkms/
linux.c 64 * Inside the sysfs directory for the device there is a symlink
68 * So lets get the symlink for the drm device. Then read the link
85 snprintf(path, PATH_SIZE, "/sys/dev/char/%d:%d/device/driver", maj, min);
164 struct udev_device *device;
181 device = udev_device_new_from_devnum(udev, 'c', buffer.st_rdev);
182 if (!device)
185 parent = udev_device_get_parent(device);
196 udev_device_unref(device);
202 udev_device_unref(device);
  /external/libweave/src/privet/
privet_manager.cc 51 DeviceRegistrationInfo* device,
54 CHECK(device);
60 CloudDelegate::CreateDefault(task_runner_, device, component_manager);
63 security_.reset(new SecurityManager(device->GetMutableConfig(), auth_manager,
68 if (wifi && device->GetSettings().wifi_auto_setup_enabled) {
71 device->GetMutableConfig(), task_runner_, network, wifi, cloud_.get()));
  /external/skia/tests/
PremulAlphaRoundTripTest.cpp 66 static void test_premul_alpha_roundtrip(skiatest::Reporter* reporter, SkBaseDevice* device) {
67 SkCanvas canvas(device);
104 SkAutoTUnref<SkBaseDevice> device(SkBitmapDevice::Create(info, props));
105 test_premul_alpha_roundtrip(reporter, device);
111 SkAutoTUnref<SkBaseDevice> device(
114 test_premul_alpha_roundtrip(reporter, device);
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
CameraBrowser.java 83 MtpDevice device = mDeviceList.get(position); local
84 MtpDeviceInfo info = device.getDeviceInfo();
119 intent.putExtra("device", mDeviceList.get(position).getDeviceName());
127 public void deviceAdded(MtpDevice device) {
128 Log.d(TAG, "deviceAdded: " + device.getDeviceName());
133 public void deviceRemoved(MtpDevice device) {
134 Log.d(TAG, "deviceRemoved: " + device.getDeviceName());
  /frameworks/native/libs/binder/
MemoryHeapBase.cpp 61 MemoryHeapBase::MemoryHeapBase(const char* device, size_t size, uint32_t flags)
69 int fd = open(device, open_flags);
70 ALOGE_IF(fd<0, "error opening %s: %s", device, strerror(errno));
75 mDevice = device;
89 status_t MemoryHeapBase::init(int fd, void *base, int size, int flags, const char* device)
98 mDevice = device;

Completed in 1062 milliseconds

<<41424344454647484950>>