| /external/rust/crates/flate2/src/ffi/ |
| D | c.rs | 355 use libz_ng_sys as libz; 358 use cloudflare_zlib_sys as libz; 361 use libz_sys as libz; 363 pub use libz::deflate as mz_deflate; 364 pub use libz::deflateEnd as mz_deflateEnd; 365 pub use libz::deflateReset as mz_deflateReset; 366 pub use libz::inflate as mz_inflate; 367 pub use libz::inflateEnd as mz_inflateEnd; 368 pub use libz::z_stream as mz_stream; 369 pub use libz::*; [all …]
|
| /external/rust/crates/libz-sys/ |
| D | README.md | 1 # libz-sys 3 A common library for linking `libz` to rust programs (also known as zlib). 5 [Documentation](https://docs.rs/libz-sys) 7 This also serves as the source for the `libz-ng-sys` crate, which builds 23 By default, `libz-sys` uses stock zlib, primarily because doing so allows the 32 if any library crate in your dependency graph wants stock zlib, `libz-sys` will 35 Library crates depending on `libz-sys` should use: 37 libz-sys = { version = "1.1.0", default-features = false, features = ["libc"] } 60 for inclusion in `libz-sys` by you, as defined in the Apache-2.0 license, shall be
|
| D | METADATA | 2 # Usage: tools/external_updater/updater.sh update rust/crates/libz-sys 5 name: "libz-sys" 6 description: "Low-level bindings to the system libz library (also known as zlib)." 10 value: "https://crates.io/crates/libz-sys" 14 value: "https://static.crates.io/crates/libz-sys/libz-sys-1.1.8.crate"
|
| D | Cargo.toml.orig | 2 name = "libz-sys" 7 repository = "https://github.com/rust-lang/libz-sys" 8 description = "Low-level bindings to the system libz library (also known as zlib)." 43 # By default, libz-sys uses stock zlib. If you set default-features=false, 44 # enable the zlib-ng feature, and don't enable the stock-zlib feature, libz-sys 55 # libz-sys = { version = "1.1.0", default-features = false, features = ["libc"] } 67 # Enable this feature if you want to have a statically linked libz
|
| D | README-zng.md | 1 # libz-ng-sys 3 A library for linking zlib-ng (`libz-ng`) to Rust programs natively, rather 15 of porting, this crate exports the same API as libz-sys (without the `zng_` 17 libz-sys and libz-ng-sys.
|
| D | Cargo.toml | 14 name = "libz-sys" 29 description = "Low-level bindings to the system libz library (also known as zlib)." 39 repository = "https://github.com/rust-lang/libz-sys"
|
| /external/rust/crates/libz-sys/src/zlib/old/ |
| D | descrip.mms | 19 libz.olb : libz.olb($(OBJS)) 20 @ write sys$output " libz available" 22 example.exe : example.obj libz.olb 23 link example,libz.olb/lib 25 minigzip.exe : minigzip.obj libz.olb 26 link minigzip,libz.olb/lib,x11vms:xvmsutils.olb/lib 29 delete *.obj;*,libz.olb;*
|
| /external/zlib/ |
| D | Android.bp | 21 // We no longer support non-Neon platform builds, but the NDK just has one libz. 168 name: "libz", 186 symbol_file: "libz.map.txt", 205 // A more stable build of libz. Build configuration of this library should be 245 static_libs: ["libz"], 259 shared_libs: ["libz"], 280 shared_libs: ["libz"], 302 shared_libs: ["libz"], 320 name: "libz", 321 symbol_file: "libz.map.txt", [all …]
|
| D | CMakeLists.txt | 19 project(libz LANGUAGES C) project 22 add_library(libz STATIC target 47 target_compile_definitions(libz PRIVATE
|
| /external/rust/crates/flate2/ |
| D | Cargo.toml.orig | 20 libz-sys = { version = "1.1.8", optional = true, default-features = false } 21 libz-ng-sys = { version = "1.1.8", optional = true } 36 zlib = ["any_zlib", "libz-sys"] 37 zlib-ng-compat = ["zlib", "libz-sys/zlib-ng"] 38 zlib-ng = ["any_zlib", "libz-ng-sys"]
|
| D | Cargo.toml | 49 [dependencies.libz-ng-sys] 53 [dependencies.libz-sys] 82 "libz-sys", 86 "libz-ng-sys", 90 "libz-sys/zlib-ng",
|
| D | README.md | 76 via libz-sys in zlib-compat mode, use: 84 dependency graph explicitly requests stock zlib, or uses libz-sys directly 86 See [the libz-sys 87 README](https://github.com/rust-lang/libz-sys/blob/main/README.md) for details. 97 uses another version of zlib/libz.
|
| D | Cargo.lock.saved | 56 "libz-ng-sys", 57 "libz-sys", 81 name = "libz-ng-sys" 91 name = "libz-sys"
|
| /external/bcc/tests/python/ |
| D | test_uprobes.py | 88 # Need to find path to libz.so.1 93 if n[0] == b"libz.so.1": 94 # if libz was already found, override only if new lib is more 123 libz = ctypes.CDLL("/tmp/libz.so.1") 125 libz.zlibVersion() 129 libname = "/tmp/libz.so.1"
|
| /external/rust/crates/libz-sys/src/zlib/msdos/ |
| D | Makefile.dj2 | 9 # To install libz.a, zconf.h and zlib.h in the djgpp directories, type: 47 LIBS=libz.a 72 libz.a: $(OBJS) $(OBJA) 87 $(INSTALL) libz.a $(LIBRARY_PATH) 92 $(RM) $(LIBRARY_PATH)\libz.a 98 $(RM) libz.a
|
| /external/rust/crates/libz-sys/src/zlib-ng/ |
| D | PORTING.md | 43 - Static library is *libz.a* on Unix and macOS, or *zlib.lib* on Windows 44 - Shared library is *libz.so* on Unix, *libz.dylib* on macOS, or *zlib1.dll* 69 - Static library is *libz-ng.a* on Unix and macOS, or *zlib-ng.lib* on Windows 70 - Shared library is *libz-ng.so* on Unix, *libz-ng.dylib* on macOS, or
|
| /external/rust/crates/libz-sys/src/zlib-ng/test/ |
| D | pkgcheck.sh | 133 if ! cmp --silent pkgtmp1/usr/local/lib/libz$suffix.a pkgtmp2/usr/local/lib/libz$suffix.a 135 …echo "libz$suffix.a does not match. Probably filenames differ (.o vs .c.o). Unpacking and renami… 138 cd pkgtmp1; ar x usr/local/lib/libz$suffix.a; rm usr/local/lib/libz$suffix.a; cd .. 139 …cd pkgtmp2; ar x usr/local/lib/libz$suffix.a; rm usr/local/lib/libz$suffix.a; for a in *.c.o; do m…
|
| /external/oss-fuzz/projects/bad_example/ |
| D | build.sh | 11 $LIB_FUZZING_ENGINE ./libz.a 22 $LIB_FUZZING_ENGINE ./libz.a 44 $LIB_FUZZING_ENGINE ./libz.a 55 $LIB_FUZZING_ENGINE ./libz.a 75 $LIB_FUZZING_ENGINE ./libz.a
|
| /external/rust/crates/libz-sys/src/zlib/contrib/ada/ |
| D | readme.txt | 37 gnatmake test -largs -L<directory where libz.a is> -lz 41 gnatmake -Pzlib.gpr -L<directory where libz.a is> 47 2. Build the libz.a library from the ZLib C sources. 48 3. Rename libz.a to z.lib.
|
| /external/parameter-framework/upstream/ctest/ |
| D | valgrind.supp | 1 # Ignore conditional jump in libz. 5 libz/inflateReset2/jump 9 obj:/*/libz.so*
|
| /external/rust/crates/libz-sys/src/zlib/qnx/ |
| D | package.qpg | 28 <QPG:Add file="../libz.so.1.2.11" install="/opt/lib/" user="root:bin" permission="644"/> 29 …<QPG:Add file="libz.so" install="/opt/lib/" component="dev" filetype="symlink" linkto="libz.so.1.2… 30 <QPG:Add file="libz.so.1" install="/opt/lib/" filetype="symlink" linkto="libz.so.1.2.11"/> 31 <QPG:Add file="../libz.so.1.2.11" install="/opt/lib/" component="slib"/>
|
| /external/python/cpython2/Modules/zlib/ |
| D | Makefile.in | 14 # To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type: 29 TEST_LDFLAGS=-L. libz.a 33 STATICLIB=libz.a 34 SHAREDLIB=libz.so 35 SHAREDLIBV=libz.so.1.2.10 36 SHAREDLIBM=libz.so.1 122 infcover: infcover.o libz.a 123 $(CC) $(CFLAGS) -o $@ infcover.o libz.a 130 libz.a: $(OBJS) 281 placebo $(SHAREDLIBV): $(PIC_OBJS) libz.a [all …]
|
| /external/rust/crates/libz-sys/src/zlib/ |
| D | Makefile.in | 14 # To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type: 29 TEST_LDFLAGS=-L. libz.a 33 STATICLIB=libz.a 34 SHAREDLIB=libz.so 35 SHAREDLIBV=libz.so.1.2.11 36 SHAREDLIBM=libz.so.1 122 infcover: infcover.o libz.a 123 $(CC) $(CFLAGS) -o $@ infcover.o libz.a 130 libz.a: $(OBJS) 281 placebo $(SHAREDLIBV): $(PIC_OBJS) libz.a [all …]
|
| /external/libwebsockets/test-apps/android/app/src/main/jni/ |
| D | NativeLibs.mk | 834 zlib-x86: $(TARGET_X86)/lib/libz.a 835 zlib-x86_64: $(TARGET_X86_64)/lib/libz.a 836 zlib-armeabi: $(TARGET_ARM)/lib/libz.a 837 zlib-armeabi-v7a: $(TARGET_ARM_V7A)/lib/libz.a 838 zlib-armeabi-v7a-hard: $(TARGET_ARM_V7A_HARD)/lib/libz.a 839 zlib-arm64-v8a: $(TARGET_ARM64_V8A)/lib/libz.a 840 zlib-mips: $(TARGET_MIPS)/lib/libz.a 841 zlib-mips64: $(TARGET_MIPS64)/lib/libz.a 895 $(TARGET_X86)/lib/libz.a: $(TARGET_X86)/src/$(ZLIB_DIR) 896 $(CD) $(TARGET_X86)/src/$(ZLIB_DIR) && $(TOOLCHAIN_X86_ENV) $(MAKE) libz.a [all …]
|
| /external/bcc/tests/cc/ |
| D | dummy_proc_map.txt | 19 …15164cf000 r-xp 00000000 00:1b 72809538 /some/other/path/tolibs/lib/libz.so.1.2.8 20 …15166ce000 ---p 0001a000 00:1b 72809538 /some/other/path/tolibs/lib/libz.so.1.2.8 21 …15166cf000 r--p 00019000 00:1b 72809538 /some/other/path/tolibs/lib/libz.so.1.2.8 22 …15166d0000 rw-p 0001a000 00:1b 72809538 /some/other/path/tolibs/lib/libz.so.1.2.8 23 …15166d1000 r-xp 0001b064 00:1b 72809538 /some/other/path/tolibs/lib/libz.so.1.2.8
|