HomeSort by relevance Sort by last modified time
    Searched refs:device (Results 76 - 100 of 3127) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
clk.h 15 struct device;
19 struct clk *clk_get(struct device *dev, const char *id);
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
clk.h 15 struct device;
19 struct clk *clk_get(struct device *dev, const char *id);
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
clk.h 15 struct device;
19 struct clk *clk_get(struct device *dev, const char *id);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
clk.h 15 struct device;
19 struct clk *clk_get(struct device *dev, const char *id);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
SettingsToggler.java 18 import com.android.tradefed.device.DeviceNotAvailableException;
19 import com.android.tradefed.device.ITestDevice;
29 public static void setString(ITestDevice device, String group, String name, String value)
31 deleteSetting(device, group, name);
32 device.executeShellCommand(
40 public static void setSecureString(ITestDevice device, String name, String value)
42 setString(device, GROUP_SECURE, name, value);
46 public static void setGlobalString(ITestDevice device, String name, String value)
48 setString(device, GROUP_GLOBAL, name, value);
52 public static void setInt(ITestDevice device, String group, String name, int value
    [all...]
  /frameworks/base/core/java/android/bluetooth/
IBluetoothHeadset.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);
35 boolean startVoiceRecognition(in BluetoothDevice device);
36 boolean stopVoiceRecognition(in BluetoothDevice device);
37 boolean isAudioConnected(in BluetoothDevice device);
38 boolean sendVendorSpecificResultCode(in BluetoothDevice device,
43 int getBatteryUsageHint(in BluetoothDevice device);
    [all...]
IBluetoothInputDevice.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...]
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_event_router.h 14 #include "device/bluetooth/bluetooth_adapter.h"
15 #include "device/bluetooth/bluetooth_adapter_factory.h"
16 #include "device/bluetooth/bluetooth_socket.h"
20 namespace device { namespace
25 } // namespace device
30 : public device::BluetoothAdapter::Observer {
40 const device::BluetoothAdapterFactory::AdapterCallback& callback);
51 int RegisterSocket(scoped_refptr<device::BluetoothSocket> socket);
61 device::BluetoothProfile* bluetooth_profile);
73 device::BluetoothProfile* GetProfile(const std::string& uuid) const
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/dummy/
SDL_nullvideo.c 79 static void DUMMY_DeleteDevice(SDL_VideoDevice *device)
81 SDL_free(device->hidden);
82 SDL_free(device);
87 SDL_VideoDevice *device; local
90 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
91 if ( device ) {
92 SDL_memset(device, 0, (sizeof *device));
93 device->hidden = (struct SDL_PrivateVideoData *)
94 SDL_malloc((sizeof *device->hidden))
    [all...]
  /development/tools/hosttestlib/src/com/android/hosttest/
DeviceConnector.java 29 * The maximum time to wait for a device to be connected.
34 * Initializes DDMS library, and connects to specified Android device
36 * @param deviceSerial the device serial to connect to. If <code>null</code> connect to first
37 * discovered device.
40 * @throws IllegalArgumentException if no device cannot be found.
46 for (IDevice device : adbBridge.getDevices()) {
48 return device;
49 } else if (deviceSerial.equals(device.getSerialNumber())) {
50 return device;
54 System.out.println("Waiting for device...")
57 IDevice device = listener.waitForDevice(MAX_WAIT_DEVICE_TIME); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
macdeviceinfo.cc 32 bool GetUsbId(const Device& device, std::string* usb_id) {
35 if (device.id.size() < 2 * id_size) {
39 // The last characters of device id is a concatenation of VID and then PID.
40 const size_t vid_location = device.id.size() - 2 * id_size;
41 std::string id_vendor = device.id.substr(vid_location, id_size);
42 const size_t pid_location = device.id.size() - id_size;
43 std::string id_product = device.id.substr(pid_location, id_size);
52 bool GetUsbVersion(const Device& device, std::string* usb_version)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/android.testssl/
testssl.sh 27 device=/sdcard/android.testssl
33 CAkey="$device/keyCA.ss"
34 CAcert="$device/certCA.ss"
35 CAreq="$device/reqCA.ss"
36 CAconf="$device/CAss.cnf"
38 Uconf="$device/Uss.cnf"
39 Ureq="$device/reqU.ss"
40 Ukey="$device/keyU.ss"
41 Ucert="$device/certU.ss"
46 adb shell rm -r $device
    [all...]
  /external/chromium_org/third_party/openssl/openssl/patches/
testssl.sh 27 device=/sdcard/android.testssl
33 CAkey="$device/keyCA.ss"
34 CAcert="$device/certCA.ss"
35 CAreq="$device/reqCA.ss"
36 CAconf="$device/CAss.cnf"
38 Uconf="$device/Uss.cnf"
39 Ureq="$device/reqU.ss"
40 Ukey="$device/keyU.ss"
41 Ucert="$device/certU.ss"
46 adb shell rm -r $device
    [all...]
  /external/libmtp/examples/
reset.c 3 * Example program that resets the device.
51 LIBMTP_mtpdevice_t *device; local
57 device = LIBMTP_Get_First_Device();
58 if (device == NULL) {
63 printf("I will now reset your device. This means that\n");
64 printf("the device may go inactive immediately and may report errors.\n");
67 ret = LIBMTP_Reset_Device(device);
74 printf("Failed to reset device.\n");
75 LIBMTP_Dump_Errorstack(device);
76 LIBMTP_Clear_Errorstack(device);
    [all...]
emptyfolders.c 25 static void prune_empty_folders(LIBMTP_mtpdevice_t *device, LIBMTP_file_t *files, LIBMTP_folder_t *folderlist, int do_delete)
46 if (LIBMTP_Delete_Object(device,folderlist->folder_id) != 0) {
48 LIBMTP_Dump_Errorstack(device);
49 LIBMTP_Clear_Errorstack(device);
55 prune_empty_folders(device,files,folderlist->child,do_delete); // recurse down
56 prune_empty_folders(device,files,folderlist->sibling,do_delete); // recurse along
82 LIBMTP_mtpdevice_t *device; local
87 device = LIBMTP_Get_First_Device();
88 if (device == NULL) {
94 files = LIBMTP_Get_Filelisting_With_Callback(device,NULL,NULL)
    [all...]
  /external/openssl/android.testssl/
testssl.sh 27 device=/sdcard/android.testssl
33 CAkey="$device/keyCA.ss"
34 CAcert="$device/certCA.ss"
35 CAreq="$device/reqCA.ss"
36 CAconf="$device/CAss.cnf"
38 Uconf="$device/Uss.cnf"
39 Ureq="$device/reqU.ss"
40 Ukey="$device/keyU.ss"
41 Ucert="$device/certU.ss"
46 adb shell rm -r $device
    [all...]
  /external/openssl/patches/
testssl.sh 27 device=/sdcard/android.testssl
33 CAkey="$device/keyCA.ss"
34 CAcert="$device/certCA.ss"
35 CAreq="$device/reqCA.ss"
36 CAconf="$device/CAss.cnf"
38 Uconf="$device/Uss.cnf"
39 Ureq="$device/reqU.ss"
40 Ukey="$device/keyU.ss"
41 Ucert="$device/certU.ss"
46 adb shell rm -r $device
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gbm/main/
common.c 42 struct udev_device *device; local
50 device = udev_device_new_from_devnum(udev, 'c', buf.st_rdev);
51 if (device == NULL) {
53 "gbm: could not create udev device for fd %d", fd);
57 return device;
64 struct udev_device *device; local
69 device = _gbm_udev_device_new_from_fd(udev, fd);
70 if (device == NULL)
73 const_device_name = udev_device_get_devnode(device);
79 udev_device_unref(device);
    [all...]
  /external/mesa3d/src/gbm/main/
common.c 42 struct udev_device *device; local
50 device = udev_device_new_from_devnum(udev, 'c', buf.st_rdev);
51 if (device == NULL) {
53 "gbm: could not create udev device for fd %d", fd);
57 return device;
64 struct udev_device *device; local
69 device = _gbm_udev_device_new_from_fd(udev, fd);
70 if (device == NULL)
73 const_device_name = udev_device_get_devnode(device);
79 udev_device_unref(device);
    [all...]
  /external/kernel-headers/original/linux/
attribute_container.h 12 #include <linux/device.h>
22 int (*match)(struct attribute_container *, struct device *);
41 void attribute_container_create_device(struct device *dev,
43 struct device *,
45 void attribute_container_add_device(struct device *dev,
47 struct device *,
49 void attribute_container_remove_device(struct device *dev,
51 struct device *,
53 void attribute_container_device_trigger(struct device *dev,
55 struct device *,
    [all...]
  /device/asus/flo/
device.mk 26 device/asus/flo/fstab.flo:root/fstab.flo \
27 device/asus/flo/init.flo.rc:root/init.flo.rc
36 # the actual meat of the device-specific product definition
37 $(call inherit-product, device/asus/flo/device-common.mk)
40 $(call inherit-product-if-exists, vendor/asus/flo/device-vendor.mk)
42 DEVICE_PACKAGE_OVERLAYS := device/asus/flo/overlay
  /device/asus/grouper/
device.mk 21 device/asus/grouper/fstab.grouper:root/fstab.grouper \
22 device/asus/grouper/init.grouper.rc:root/init.grouper.rc
24 # the actual meat of the device-specific product definition
25 $(call inherit-product, device/asus/grouper/device-common.mk)
28 $(call inherit-product-if-exists, vendor/asus/grouper/device-vendor.mk)
34 device/asus/grouper/overlay
  /device/asus/tilapia/
device.mk 23 device/asus/tilapia/fstab.grouper:root/fstab.grouper \
24 device/asus/tilapia/init.tilapia.rc:root/init.grouper.rc
27 device/asus/tilapia/overlay
29 # the actual meat of the device-specific product definition
30 $(call inherit-product, device/asus/grouper/device-common.mk)
33 $(call inherit-product-if-exists, vendor/asus/tilapia/device-vendor.mk)
  /external/kernel-headers/original/asm-mips/
dma-mapping.h 7 void *dma_alloc_noncoherent(struct device *dev, size_t size,
10 void dma_free_noncoherent(struct device *dev, size_t size,
13 void *dma_alloc_coherent(struct device *dev, size_t size,
16 void dma_free_coherent(struct device *dev, size_t size,
19 extern dma_addr_t dma_map_single(struct device *dev, void *ptr, size_t size,
21 extern void dma_unmap_single(struct device *dev, dma_addr_t dma_addr,
23 extern int dma_map_sg(struct device *dev, struct scatterlist *sg, int nents,
25 extern dma_addr_t dma_map_page(struct device *dev, struct page *page,
27 extern void dma_unmap_page(struct device *dev, dma_addr_t dma_address,
29 extern void dma_unmap_sg(struct device *dev, struct scatterlist *sg
    [all...]
  /external/kernel-headers/original/asm-x86/
swiotlb.h 8 extern dma_addr_t swiotlb_map_single(struct device *hwdev, void *ptr,
10 extern void *swiotlb_alloc_coherent(struct device *hwdev, size_t size,
12 extern void swiotlb_unmap_single(struct device *hwdev, dma_addr_t dev_addr,
14 extern void swiotlb_sync_single_for_cpu(struct device *hwdev,
17 extern void swiotlb_sync_single_for_device(struct device *hwdev,
20 extern void swiotlb_sync_single_range_for_cpu(struct device *hwdev,
24 extern void swiotlb_sync_single_range_for_device(struct device *hwdev,
28 extern void swiotlb_sync_sg_for_cpu(struct device *hwdev,
31 extern void swiotlb_sync_sg_for_device(struct device *hwdev,
34 extern int swiotlb_map_sg(struct device *hwdev, struct scatterlist *sg
    [all...]

Completed in 846 milliseconds

1 2 34 5 6 7 8 91011>>