/bionic/libc/kernel/uapi/linux/ |
netrom.h | 37 char device[16]; member in struct:nr_route_struct
|
/build/target/product/ |
full.mk | 20 # entirely appropriate to inherit from for on-device configurations. 23 $(call inherit-product, $(SRC_TARGET_DIR)/board/generic/device.mk)
|
full_mips.mk | 20 # entirely appropriate to inherit from for on-device configurations. 23 $(call inherit-product, $(SRC_TARGET_DIR)/board/generic_mips/device.mk)
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/ |
PropertyCheck.java | 21 import com.android.tradefed.device.DeviceNotAvailableException; 22 import com.android.tradefed.device.ITestDevice; 27 * Checks that a device property is as expected 47 public void run(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError, 50 String propertyValue = device.getProperty(mPropertyName); 52 logWarning("Property \"%s\" not found on device, cannot verify value \"%s\" ",
|
/cts/suite/audio_quality/lib/src/ |
Adb.h | 25 /// device: device number typically passed in adb's -s argument. 26 /// if device string is empty, adb command will be called without -s option. 27 Adb(const android::String8& device);
|
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/ |
FuncTests.java | 18 import com.android.cts.tradefed.device.DeviceInfoCollectorFuncTest; 26 * Tests listed here should require a device. 33 // device package
|
/development/ndk/platforms/android-21/include/linux/ |
netrom.h | 37 char device[16]; member in struct:nr_route_struct
|
/development/scripts/ |
gdbclient.py | 49 help="run a binary on the device, with args") 56 help="user to run commands as on the device [default: root]") 78 names = set([props["ro.build.product"], props["ro.product.device"]]) 81 msg = "TARGET_DEVICE ({}) does not match attached device ({})" 85 def get_remote_pid(device, process_name): 86 processes = gdbrunner.get_processes(device) 99 def ensure_linker(device, sysroot, is64bit): 106 device.pull(remote_path, local_path) 121 device = args.device [all...] |
/development/tools/hosttestlib/src/com/android/hosttest/ |
DeviceTest.java | 24 * Helper JUnit test that stores reference to a Android device and test data. 29 * Sets the device under test 30 * @param device the Android device to test 32 public void setDevice(IDevice device); 35 * Retrieves the Android device under test 36 * @return the {@link IDevice} device.
|
/device/generic/goldfish/vibrator/ |
vibrator_qemu.c | 49 static int qemu_vibra_close(hw_device_t *device) 51 free(device); 56 hw_device_t** device) { 60 ALOGE("No memory available to create Goldfish vibrator device!"); 72 *device = (hw_device_t *) vibradev;
|
/device/generic/mini-emulator-x86_64/ |
BoardConfig.mk | 7 include device/generic/x86_64/BoardConfig.mk 15 BOARD_EGL_CFG := device/generic/goldfish/opengl/system/egl/egl.cfg
|
/device/google/atv/sdk/ |
Android.mk | 4 $(HOST_OUT)/device/google/atv/sdk/images_$(TARGET_CPU_ABI)_source.properties 8 $(source_properties_file): $(TOPDIR)device/google/atv/sdk/images_$(TARGET_CPU_ABI)_source.prop_template
|
/device/google/contexthub/util/nanoapp_postprocess/ |
Android.mk | 28 device/google/contexthub/lib/include \
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
screenshot.py | 6 """Takes a screenshot from an Android device.""" 23 parser.add_argument('-d', '--device', dest='devices', action='append', 24 help='Serial number of Android device to use.') 25 parser.add_argument('--blacklist-file', help='Device blacklist JSON file.') 43 def screenshot(device): 47 f = '%s_%s%s' % (root, str(device), ext) 48 f = device.TakeScreenshot(f) 49 print 'Screenshot for device %s written to %s' % ( 50 str(device), os.path.abspath(f))
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkNullDriverImpl.inl | 13 VK_NULL_RETURN((*pDevice = allocateHandle<Device, VkDevice>(physicalDevice, pCreateInfo, pAllocator))); 16 VKAPI_ATTR VkResult VKAPI_CALL allocateMemory (VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, const VkAllocationCallbacks* pAllocator, VkDeviceMemory* pMemory) 19 VK_NULL_RETURN((*pMemory = allocateNonDispHandle<DeviceMemory, VkDeviceMemory>(device, pAllocateInfo, pAllocator))); 22 VKAPI_ATTR VkResult VKAPI_CALL createFence (VkDevice device, const VkFenceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkFence* pFence) 25 VK_NULL_RETURN((*pFence = allocateNonDispHandle<Fence, VkFence>(device, pCreateInfo, pAllocator))); 28 VKAPI_ATTR VkResult VKAPI_CALL createSemaphore (VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkSemaphore* pSemaphore) 31 VK_NULL_RETURN((*pSemaphore = allocateNonDispHandle<Semaphore, VkSemaphore>(device, pCreateInfo, pAllocator))); 34 VKAPI_ATTR VkResult VKAPI_CALL createEvent (VkDevice device, const VkEventCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkEvent* pEvent) 37 VK_NULL_RETURN((*pEvent = allocateNonDispHandle<Event, VkEvent>(device, pCreateInfo, pAllocator))); 40 VKAPI_ATTR VkResult VKAPI_CALL createQueryPool (VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkQueryPool* p (…) [all...] |
/external/kernel-headers/original/uapi/linux/ |
netrom.h | 27 char device[16]; member in struct:nr_route_struct
|
/external/libmtp/examples/ |
folders.c | 3 * Example program that lists all folders on a device. 44 LIBMTP_mtpdevice_t *device, *iter; local 48 fprintf(stdout, "Attempting to connect device(s)\n"); 50 switch(LIBMTP_Get_Connected_Devices(&device)) 69 /* Successfully connected at least one device, so continue */ 76 for(iter = device; iter != NULL; iter = iter->next) 79 /* Echo the friendly name so we know which device we are working with */ 105 LIBMTP_Release_Device_List(device);
|
sendfile.c | 3 * Example program to send an arbitrary file to a device. 38 extern LIBMTP_mtpdevice_t *device; 81 ret = LIBMTP_Send_File_From_File(device, from_path, genfile, progress, NULL); 85 LIBMTP_Dump_Errorstack(device); 86 LIBMTP_Clear_Errorstack(device);
|
/external/libpcap/ |
pcap-null.c | 39 pcap_create_interface(const char *device, char *ebuf)
|
/external/libweave/src/ |
registration_status.cc | 5 #include <weave/device.h>
|
/external/llvm/lib/AsmParser/ |
Android.mk | 23 # For the device 32 include $(LOCAL_PATH)/../../llvm-device-build.mk
|
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
dynamic_smem.hpp | 52 namespace cv { namespace cuda { namespace device namespace in namespace:cv::cuda
|
/external/skia/src/pdf/ |
SkPDFFormXObject.h | 37 * @param device The set of graphical elements on this form. 39 explicit SkPDFFormXObject(SkPDFDevice* device);
|
/external/tcpdump/win32/Include/ |
w32_fzs.h | 42 void PrintCapBegins (char* program_name, char* device);
|
/external/webrtc/talk/media/devices/ |
win32devicemanager.h | 49 virtual bool GetVideoCaptureDevices(std::vector<Device>* devs); 52 virtual bool GetAudioDevices(bool input, std::vector<Device>* devs); 53 virtual bool GetDefaultVideoCaptureDevice(Device* device);
|