HomeSort by relevance Sort by last modified time
    Searched refs:device (Results 1 - 25 of 6965) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
UnknownFileSystemException.java 25 * system being used on a block device.
32 private final BlockDevice device; field in class:UnknownFileSystemException
37 * @param device the {@code BlockDevice} whose file system could not
40 public UnknownFileSystemException(BlockDevice device) {
42 this.device = device;
52 return this.device;
  /external/ltp/testcases/kernel/device-drivers/base/tbase/
str_mod.h 21 extern int bus_add_device(struct device * dev);
22 extern int bus_remove_device(struct device *dev);
26 struct device *dev;
  /device/sample/products/
backup_overlay.mk 22 PRODUCT_PACKAGE_OVERLAYS := device/sample/overlays/backup
location_overlay.mk 22 PRODUCT_PACKAGE_OVERLAYS := device/sample/overlays/location
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
AbstractThreadedDeviceSpecificAction.java 26 protected IDevice device; field in class:AbstractThreadedDeviceSpecificAction
28 protected AbstractThreadedDeviceSpecificAction(String title, IDevice device) {
30 this.device = device;
34 public void setDevice(IDevice device) {
35 this.device = device;
40 if (device == null) {
  /frameworks/av/services/audiopolicy/common/include/
Volume.h 34 * device categories used for volume curve management.
65 * extract one device relevant for volume control from multiple device selection
67 * @param[in] device for which the volume category is associated
69 * @return subset of device required to limit the number of volume category per device
71 static audio_devices_t getDeviceForVolume(audio_devices_t device)
73 if (device == AUDIO_DEVICE_NONE) {
76 device = AUDIO_DEVICE_OUT_SPEAKER;
77 } else if (popcount(device) > 1)
105 device); local
    [all...]
  /external/adhd/cras/src/server/
cras_bt_device.h 31 void cras_bt_device_destroy(struct cras_bt_device *device);
37 const char *cras_bt_device_object_path(const struct cras_bt_device *device);
39 const struct cras_bt_device *device);
40 const char *cras_bt_device_address(const struct cras_bt_device *device);
41 const char *cras_bt_device_name(const struct cras_bt_device *device);
42 int cras_bt_device_paired(const struct cras_bt_device *device);
43 int cras_bt_device_trusted(const struct cras_bt_device *device);
44 int cras_bt_device_connected(const struct cras_bt_device *device);
46 void cras_bt_device_update_properties(struct cras_bt_device *device,
50 /* Sets the append_iodev_cb to bt device. *
    [all...]
  /external/syslinux/gpxe/src/drivers/nvs/
threewire.c 34 * Read data from three-wire device
36 * @v nvs NVS device
44 struct spi_device *device = nvs_to_spi ( nvs ); local
45 struct spi_bus *bus = device->bus;
50 DBGC ( device, "3wire %p reading %zd bytes at %04x\n",
51 device, len, address );
53 if ( ( rc = bus->rw ( bus, device, THREEWIRE_READ, address,
55 DBGC ( device, "3wire %p could not read: %s\n",
56 device, strerror ( rc ) );
64 * Write data to three-wire device
74 struct spi_device *device = nvs_to_spi ( nvs ); local
    [all...]
  /external/clang/test/OpenMP/
target_device_messages.cpp 13 #pragma omp target device // expected-error {{expected '(' after 'device'}}
15 #pragma omp target device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target device () // expected-error {{expected expression}}
19 #pragma omp target device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
21 #pragma omp target device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
23 #pragma omp target device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
25 #pragma omp target device (argc + argc)
27 #pragma omp target device (argc), device (argc+1) // expected-error {{directive '#pragma omp target' cannot contain more than one 'device' (…)
    [all...]
target_parallel_device_messages.cpp 13 #pragma omp target parallel device // expected-error {{expected '(' after 'device'}}
15 #pragma omp target parallel device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target parallel device () // expected-error {{expected expression}}
19 #pragma omp target parallel device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
21 #pragma omp target parallel device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target parallel' are ignored}}
23 #pragma omp target parallel device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
25 #pragma omp target parallel device (argc + argc)
27 #pragma omp target parallel device (argc), device (argc+1) // expected-error {{directive '#pragma omp target parallel' cannot contain more than one (…)
    [all...]
  /external/libmtp/examples/
format.c 3 * Example program that formats the device storage.
51 LIBMTP_mtpdevice_t *device; local
57 device = LIBMTP_Get_First_Device();
58 if (device == NULL) {
63 printf("I will now format your device. This means that\n");
69 ret = LIBMTP_Format_Storage(device, device->storage);
76 printf("Failed to format device.\n");
77 LIBMTP_Dump_Errorstack(device);
78 LIBMTP_Clear_Errorstack(device);
    [all...]
  /external/tensorflow/tensorflow/core/grappler/clusters/
utils.cc 39 DeviceProperties device; local
40 device.set_type("CPU");
42 device.set_vendor(port::CPUVendorIDString());
44 device.set_model(
46 device.set_frequency(port::NominalCPUFrequency() * 1e-6);
47 device.set_num_cores(port::NumSchedulableCPUs());
48 device.set_l1_cache_size(Eigen::l1CacheSize());
49 device.set_l2_cache_size(Eigen::l2CacheSize());
50 device.set_l3_cache_size(Eigen::l3CacheSize());
54 device.set_memory_size(free_mem)
70 DeviceProperties device; local
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowInputEvent.java 10 protected InputDevice device; field in class:ShadowInputEvent
14 return device;
17 public void setDevice(InputDevice device) {
18 this.device = device;
  /system/bt/binder/android/bluetooth/
IBluetoothHidHost.aidl 28 boolean connect(in BluetoothDevice device);
29 boolean disconnect(in BluetoothDevice device);
32 int getConnectionState(in BluetoothDevice device);
33 boolean setPriority(in BluetoothDevice device, int priority);
34 int getPriority(in BluetoothDevice device);
38 boolean getProtocolMode(in BluetoothDevice device);
42 boolean virtualUnplug(in BluetoothDevice device);
46 boolean setProtocolMode(in BluetoothDevice device, int protocolMode);
50 boolean getReport(in BluetoothDevice device, byte reportType, byte reportId, int bufferSize);
54 boolean setReport(in BluetoothDevice device, byte reportType, String report)
    [all...]
IBluetoothHeadsetClient.aidl 29 boolean connect(in BluetoothDevice device);
30 boolean disconnect(in BluetoothDevice device);
34 int getConnectionState(in BluetoothDevice device);
35 boolean setPriority(in BluetoothDevice device, int priority);
36 int getPriority(in BluetoothDevice device);
38 boolean startVoiceRecognition(in BluetoothDevice device);
39 boolean stopVoiceRecognition(in BluetoothDevice device);
41 List<BluetoothHeadsetClientCall> getCurrentCalls(in BluetoothDevice device);
42 Bundle getCurrentAgEvents(in BluetoothDevice device);
44 boolean acceptCall(in BluetoothDevice device, int flag)
    [all...]
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
ApiLevelUtil.java 18 import com.android.tradefed.device.DeviceNotAvailableException;
19 import com.android.tradefed.device.ITestDevice;
24 * Device-side compatibility utility class for reading device API level.
30 public static boolean isBefore(ITestDevice device, int version)
32 return device.getApiLevel() < version;
35 public static boolean isBefore(ITestDevice device, String version)
37 return device.getApiLevel() < resolveVersionString(version);
40 public static boolean isAfter(ITestDevice device, int version)
42 return device.getApiLevel() > version
    [all...]
  /external/libdrm/tests/kms/
libkms-test-device.c 55 static void kms_device_probe_screens(struct kms_device *device)
64 res = drmModeGetResources(device->fd);
68 device->screens = calloc(res->count_connectors, sizeof(screen));
69 if (!device->screens)
77 screen = kms_screen_create(device, res->connectors[i]);
96 device->screens[i] = screen;
97 device->num_screens++;
103 static void kms_device_probe_crtcs(struct kms_device *device)
109 res = drmModeGetResources(device->fd);
113 device->crtcs = calloc(res->count_crtcs, sizeof(crtc))
164 struct kms_device *device; local
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
threewire.h 48 extern int threewire_detect_address_len ( struct spi_device *device );
51 * @defgroup tdevs Three-wire device types
56 init_at93cx6 ( struct spi_device *device, unsigned int organisation ) {
57 device->nvs.word_len_log2 = ( ( organisation == 8 ) ? 0 : 1 );
58 device->nvs.block_size = 1;
59 device->command_len = 3,
60 device->nvs.read = threewire_read;
61 device->nvs.write = threewire_write;
67 * @v device SPI device
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/build-android/generated/include/
vk_dispatch_table_helper.h 27 static inline void layer_init_device_dispatch_table(VkDevice device,
32 // Core device function pointers
33 table->GetDeviceProcAddr = (PFN_vkGetDeviceProcAddr) gpa(device, "vkGetDeviceProcAddr");
34 table->DestroyDevice = (PFN_vkDestroyDevice) gpa(device, "vkDestroyDevice");
35 table->GetDeviceQueue = (PFN_vkGetDeviceQueue) gpa(device, "vkGetDeviceQueue");
36 table->QueueSubmit = (PFN_vkQueueSubmit) gpa(device, "vkQueueSubmit");
37 table->QueueWaitIdle = (PFN_vkQueueWaitIdle) gpa(device, "vkQueueWaitIdle");
38 table->DeviceWaitIdle = (PFN_vkDeviceWaitIdle) gpa(device, "vkDeviceWaitIdle");
39 table->AllocateMemory = (PFN_vkAllocateMemory) gpa(device, "vkAllocateMemory");
40 table->FreeMemory = (PFN_vkFreeMemory) gpa(device, "vkFreeMemory")
    [all...]
  /device/google/cuttlefish/
AndroidProducts.mk 18 aosp_cf_x86_64_auto:$(LOCAL_DIR)/vsoc_x86_64/auto/device.mk \
19 aosp_cf_x86_64_phone:$(LOCAL_DIR)/vsoc_x86_64/phone/device.mk \
20 aosp_cf_x86_64_tablet:$(LOCAL_DIR)/vsoc_x86_64/tablet/device.mk \
21 aosp_cf_x86_64_tablet_3g:$(LOCAL_DIR)/vsoc_x86_64/tablet_3g/device.mk \
22 aosp_cf_x86_64_tv:$(LOCAL_DIR)/vsoc_x86_64/tv/device.mk \
23 aosp_cf_x86_64_wear:$(LOCAL_DIR)/vsoc_x86_64/wear/device.mk \
24 aosp_cf_x86_auto:$(LOCAL_DIR)/vsoc_x86/auto/device.mk \
25 aosp_cf_x86_phone:$(LOCAL_DIR)/vsoc_x86/phone/device.mk \
26 aosp_cf_x86_tablet:$(LOCAL_DIR)/vsoc_x86/tablet/device.mk \
27 aosp_cf_x86_tablet_3g:$(LOCAL_DIR)/vsoc_x86/tablet_3g/device.mk
    [all...]
  /packages/apps/Camera2/src/com/android/camera/device/
SingleDeviceOpenListener.java 17 package com.android.camera.device;
24 * Executed when a device is successfully opened.
25 * @param device the open device.
27 public void onDeviceOpened(TDevice device);
30 * Executed when an exception occurs opening the device.
35 * Executed when an exception occurs opening the device
36 * and the actual device object is provided.
38 public void onDeviceOpenException(TDevice device);
  /art/tools/
libcore_gcstress_debug_failures.txt 10 modes: [device],
libcore_gcstress_failures.txt 10 modes: [device],
  /development/python-packages/adb/
__init__.py 17 from .device import * # pylint: disable=wildcard-import
  /development/python-packages/fastboot/
__init__.py 17 from .device import * # pylint: disable=wildcard-import

Completed in 694 milliseconds

1 2 3 4 5 6 7 8 91011>>