/external/libusb/.private/ |
D | bm.sh | 9 mkdir -p $target/include/libusb-1.0 10 cp -v libusb/libusb-1.0.def $target 11 cp -v libusb/libusb.h $target/include/libusb-1.0 34 cp -v libusb/.libs/libusb-1.0.a $target/static 35 cp -v libusb/.libs/libusb-1.0.dll $target/dll 36 cp -v libusb/.libs/libusb-1.0.dll.a $target/dll 51 cp -v libusb/.libs/libusb-1.0.a $target/static 52 cp -v libusb/.libs/libusb-1.0.dll $target/dll 53 cp -v libusb/.libs/libusb-1.0.dll.a $target/dll
|
D | wbs.txt | 1 libusb 1.0 Windows binary snapshot - README 5 * https://github.com/libusb/libusb/releases * 10 - Copy libusb.h, from the include\libusb-1.0\ directory, into your project and 13 - Copy the relevant .lib file from MS32\ or MS64\ and add 'libusb-1.0.lib' to 15 Also make sure that the directory where libusb-1.0.lib resides is added to 18 - If you use the static version of the libusb library, make sure that 22 recompile a static libusb 1.0 library from source. 23 - Compile and run your application. If you use the DLL version of libusb-1.0, 28 - Copy libusb.h, from include/libusb-1.0/ to your default include directory, 35 - The libusb 1.0 API documentation can be accessed at: [all …]
|
/external/libusb/ |
D | Android.bp | 41 name: "libusb", 46 "libusb/core.c", 47 "libusb/descriptor.c", 48 "libusb/hotplug.c", 49 "libusb/io.c", 50 "libusb/sync.c", 51 "libusb/strerror.c", 55 "libusb", 56 "libusb/os", 70 "libusb/os/events_posix.c", [all …]
|
D | README | 1 # libusb 3 [![Build Status](https://travis-ci.org/libusb/libusb.svg?branch=master)](https://travis-ci.org/libu… 4 …projects/status/xvrfam94jii4a6lw?svg=true)](https://ci.appveyor.com/project/LudovicRousseau/libusb) 5 …tps://scan.coverity.com/projects/2180/badge.svg)](https://scan.coverity.com/projects/libusb-libusb) 7 libusb is a library for USB device access from Linux, macOS, 13 libusb is abstracted internally in such a way that it can hopefully 17 libusb homepage: 18 http://libusb.info/ 21 http://api.libusb.info 24 http://mailing-list.libusb.info
|
D | README.md | 1 # libusb chapter 3 [![Build Status](https://travis-ci.org/libusb/libusb.svg?branch=master)](https://travis-ci.org/libu… 4 …projects/status/xvrfam94jii4a6lw?svg=true)](https://ci.appveyor.com/project/LudovicRousseau/libusb) 5 …tps://scan.coverity.com/projects/2180/badge.svg)](https://scan.coverity.com/projects/libusb-libusb) 7 libusb is a library for USB device access from Linux, macOS, 13 libusb is abstracted internally in such a way that it can hopefully 17 libusb homepage: 18 http://libusb.info/ 21 http://api.libusb.info 24 http://mailing-list.libusb.info
|
D | PORTING | 6 This document is aimed at developers wishing to port libusb to unsupported 7 platforms. I believe the libusb API is OS-independent, so by supporting 12 libusb's internal "backend" API, which performs the appropriate operations on 30 For libusb to work, your event handling function obviously needs to be called 32 which libusb and its users can pass to poll() or select() to determine when 39 descriptor of the pipe can then be provided to libusb as an event source. 49 libusb functions, prefixed with "usbi_". Documentation for these functions 67 2. Implement your backend in the libusb/os/ directory, modifying 68 libusb/os/Makefile.am appropriately. 70 3. Add preprocessor logic to the top of libusb/core.c to statically assign the [all …]
|
D | Makefile.am | 3 EXTRA_DIST = INSTALL_WIN.txt PORTING doc/libusb.png \ 5 SUBDIRS = libusb subdir 16 pkgconfig_DATA = libusb-1.0.pc 20 distdir = libusb-$(VERSION) 39 sfurl = frs.sourceforge.net:/home/frs/project/libusb/libusb-1.0
|
D | METADATA | 1 name: "libusb" 2 description: "libusb is a library for USB device access from Linux, macOS, Windows, OpenBSD/NetBSD … 6 value: "https://libusb.info/" 10 value: "https://github.com/libusb/libusb"
|
D | README.git | 4 If you retrieved the libusb repository from git and are using a gcc based 25 Alternatively, you can use the Xcode project at Xcode/libusb.xcodeproj. 30 If you submit a new development to libusb (eg: new backend), that is unlikely 33 libusb repository under this account from https://github.com/libusb/libusb. 39 try to involve the libusb community early by letting the mailing list know, as 41 See http://mailing-list.libusb.info for details on how to join the mailing list.
|
D | TODO | 1 Please see the libusb roadmap by visiting: 2 https://github.com/libusb/libusb/milestones?direction=asc&sort=due_date&state=open
|
D | INSTALL_WIN.txt | 17 Installing and building libusb via vcpkg 20 You can download and install libusb using the vcpkg dependency manager: 26 vcpkg install libusb 28 The libusb port in vcpkg is kept up to date by Microsoft team members and 51 http://windows.libusb.info
|
D | ChangeLog | 2 visit: http://log.libusb.info 126 The (#xx) numbers are libusb issue numbers, see ie: 127 https://github.com/libusb/libusb/issues/16 154 * Linux: Fix libusb build failure with --disable-udev (#124) 158 Note that using this libusb version on OpenBSD requires using 160 to stay with the libusb shipped with OpenBSD (mpi) 210 compatibility with libusb or older versions, see APPENDIX A below. 211 * Fix broken support for the 0.1 -> 1.0 libusb-compat layer 217 * Add libusb0 (libusb-win32) and libusbK driver support on Windows. Note that while 218 the drivers allow it, isochronous transfers are not supported yet in libusb. Also [all …]
|
/external/libusb/android/jni/ |
D | libusb.mk | 28 $(LIBUSB_ROOT_REL)/libusb/core.c \ 29 $(LIBUSB_ROOT_REL)/libusb/descriptor.c \ 30 $(LIBUSB_ROOT_REL)/libusb/hotplug.c \ 31 $(LIBUSB_ROOT_REL)/libusb/io.c \ 32 $(LIBUSB_ROOT_REL)/libusb/sync.c \ 33 $(LIBUSB_ROOT_REL)/libusb/strerror.c \ 34 $(LIBUSB_ROOT_REL)/libusb/os/linux_usbfs.c \ 35 $(LIBUSB_ROOT_REL)/libusb/os/events_posix.c \ 36 $(LIBUSB_ROOT_REL)/libusb/os/threads_posix.c \ 37 $(LIBUSB_ROOT_REL)/libusb/os/linux_netlink.c [all …]
|
/external/libusb/Xcode/libusb.xcodeproj/ |
D | project.pbxproj | 34 …AD4261C8C5AD9007F8C6A /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008F… 40 …008FBF891628B7E800BC5BE2 /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7… 67 …20951C152563125200ED6351 /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7… 70 …CEA0F5F126321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7… 71 …0F5F226321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008F… 73 …CEA0F5F426321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7… 74 …0F5F526321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008F… 76 …CEA0F5F726321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7… 77 …0F5F826321FAA00ADF3EC /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008F… 79 …CEA0F5FA26321FAA00ADF3EC /* libusb.h in Headers */ = {isa = PBXBuildFile; fileRef = 008FBF5A1628B7… [all …]
|
/external/libusb/libusb/ |
D | Makefile.am | 6 lib_LTLIBRARIES = libusb-1.0.la 27 OS_WINDOWS_SRC = libusb-1.0.def libusb-1.0.rc \ 73 -include ./$(DEPDIR)/libusb-1.0.Plo 76 all-local: .libs/libusb-1.0.dll.a 78 .libs/libusb-1.0.dll.a: libusb-1.0.def libusb-1.0.la 79 …$(AM_V_DLLTOOL)$(DLLTOOL) $(DLLTOOLFLAGS) --kill-at --input-def $< --dllname libusb-1.0.dll --outp… 88 pkginclude_HEADERS = libusb.h
|
D | libusb-1.0.rc | 36 VALUE "CompanyName", "libusb.info\0" 39 VALUE "InternalName", "libusb\0" 42 VALUE "OriginalFilename", "libusb-1.0.dll\0" 44 VALUE "ProductName", "libusb-1.0\0"
|
/external/libusb/android/ |
D | README | 1 libusb for Android 7 To build libusb for Android do the following: 17 4. Change directory to libusb's "android/jni" 21 The libusb library, examples and tests can then be found in: 35 If you wish to use libusb from native code in own Android application 38 include $(PATH_TO_LIBUSB_SRC)/android/jni/libusb.mk 41 configuration for each native binary which uses libusb: 46 The Android build system will then correctly include libusb in the 79 --> Initialize libusb on Android 88 /* From this point you can regularly use all libusb functions as usual */ [all …]
|
/external/libiio/src/CI/travis/ |
D | before_deploy | 120 …install_name_tool -change /usr/local/opt/libusb/lib/libusb-1.0.0.dylib @rpath/libusb-1.0.dylib lib… 122 install_name_tool -add_rpath /usr/local/opt/libusb/lib libiio.dylib 134 cp /usr/local/lib/libusb-1.0.dylib usr/lib/ 135 chmod +w usr/lib/libusb-1.0.dylib 136 install_name_tool -id @rpath/libusb-1.0.dylib usr/lib/libusb-1.0.dylib
|
/external/libusb/tests/ |
D | Makefile.am | 1 AM_CPPFLAGS = -I$(top_srcdir)/libusb 2 LDADD = ../libusb/libusb-1.0.la 13 umockdev_CPPFLAGS = ${UMOCKDEV_CFLAGS} -I$(top_srcdir)/libusb
|
/external/oss-fuzz/projects/libusb/ |
D | Dockerfile | 19 RUN git clone --depth 1 https://github.com/libusb/libusb libusb 20 WORKDIR libusb
|
/external/libusb/examples/ |
D | Makefile.am | 1 AM_CPPFLAGS = -I$(top_srcdir)/libusb 2 LDADD = ../libusb/libusb-1.0.la
|
/external/libusb/Xcode/ |
D | libusb.xcconfig | 2 // libusb Xcode configuration file 4 // For more information, please visit: <http://libusb.info> 20 PRODUCT_NAME = libusb-1.0.0 21 LD_DYLIB_INSTALL_NAME = @rpath/libusb-1.0.0.dylib
|
/external/libusb/doc/ |
D | Makefile.in | 1 LIBUSB_SRC_DIR = @top_srcdir@/libusb 8 @DOXYGEN_HTMLDIR@: doxygen.cfg @top_srcdir@/doc/libusb.png $(LIBUSB_DOC_SRC) 11 sfurl = web.sourceforge.net:/home/project-web/libusb/htdocs
|
/external/libexif/m4m/ |
D | gp-packaging.m4 | 21 # whether libusb-devel is installed or not defines whether the RPM 22 # packages we're going to build will depend on libusb and libusb-devel 24 AM_CONDITIONAL([RPM_LIBUSB_DEVEL], [rpm -q libusb-devel > /dev/null 2>&1])
|
/external/python/bumble/docs/mkdocs/src/transports/ |
D | usb.md | 42 …ent implementations of the USB transport, implemented using different python bindings for `libusb`. 43 …PI of `libusb`, whereas the default implementation is based on [libusb1](https://pypi.org/project/… 47 The `libusb-1.0` shared library is required to use both `usb` and `pyusb` transports. This library … 48 …you can install a system-wide library with `brew install libusb` for Mac or `apt install libusb-1.…
|