Home
last modified time | relevance | path

Searched full:dylib (Results 1 – 25 of 581) sorted by relevance

12345678910>>...24

/external/python/cpython3/Lib/ctypes/macholib/
Ddylib.py2 Generic dylib path manipulation
15 \.dylib$
21 A dylib name can take one of the following four forms:
22 Location/Name.SomeVersion_Suffix.dylib
23 Location/Name.SomeVersion.dylib
24 Location/Name_Suffix.dylib
25 Location/Name.dylib
30 name='Name.SomeVersion_Suffix.dylib',
56 assert dylib_info('P/Foo.dylib') == d('P', 'Foo.dylib', 'Foo')
57 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
[all …]
Ddyld.py7 from ctypes.macholib.dylib import dylib_info
68 if path.endswith('.dylib'):
69 yield path[:-len('.dylib')] + suffix + '.dylib'
139 raise ValueError("dylib %s could not be found" % (name,))
169 assert dyld_find('libSystem.dylib') == '/usr/lib/libSystem.dylib'
/external/python/cpython2/Lib/ctypes/macholib/
Ddylib.py2 Generic dylib path manipulation
15 \.dylib$
21 A dylib name can take one of the following four forms:
22 Location/Name.SomeVersion_Suffix.dylib
23 Location/Name.SomeVersion.dylib
24 Location/Name_Suffix.dylib
25 Location/Name.dylib
30 name='Name.SomeVersion_Suffix.dylib',
56 assert dylib_info('P/Foo.dylib') == d('P', 'Foo.dylib', 'Foo')
57 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
[all …]
Ddyld.py7 from dylib import dylib_info
69 if path.endswith('.dylib'):
70 yield path[:-len('.dylib')] + suffix + '.dylib'
135 raise ValueError("dylib %s could not be found" % (name,))
162 assert dyld_find('libSystem.dylib') == '/usr/lib/libSystem.dylib'
/external/compiler-rt/make/
DAppleBI.mk45 install-MacOSX : $(SYMROOT)/libcompiler_rt.dylib \
51 $(call GetCNAVar,STRIP,Platform.darwin_bni,Release,) -S $(SYMROOT)/libcompiler_rt.dylib \
52 -o $(DSTROOT)/usr/lib/system/libcompiler_rt.dylib
54 ln -s libcompiler_rt.dylib libcompiler_rt_profile.dylib; \
55 ln -s libcompiler_rt.dylib libcompiler_rt_debug.dylib
57 # Rule to make each dylib slice
58 $(OBJROOT)/libcompiler_rt-%.dylib : $(OBJROOT)/darwin_bni/Release/%/libcompiler_rt.a
62 -install_name /usr/lib/system/libcompiler_rt.dylib \
74 # Rule to make fat dylib
75 $(SYMROOT)/libcompiler_rt.dylib: $(foreach arch,$(filter-out armv4t,$(RC_ARCHS)), \
[all …]
/external/python/cpython3/Lib/ctypes/test/
Dtest_macholib.py14 # possible = ['lib'+name+'.dylib', name+'.dylib',
16 # for dylib in possible:
18 # return os.path.realpath(dyld_find(dylib))
26 # '/usr/lib/libSystem.B.dylib'
28 # '/usr/lib/libz.1.dylib'
37 possible = ['lib'+name+'.dylib', name+'.dylib', name+'.framework/'+name]
38 for dylib in possible:
40 return os.path.realpath(dyld_find(dylib))
49 # so symlinks like libpthread.dylib -> libSystem.B.dylib will not
52 ('/usr/lib/libSystem.B.dylib', '/usr/lib/libpthread.dylib'))
[all …]
/external/python/cpython2/Lib/ctypes/test/
Dtest_macholib.py14 possible = ['lib'+name+'.dylib', name+'.dylib',
16 for dylib in possible:
18 return os.path.realpath(dyld_find(dylib))
26 '/usr/lib/libSystem.B.dylib'
28 '/usr/lib/libz.1.dylib'
39 possible = ['lib'+name+'.dylib', name+'.dylib', name+'.framework/'+name]
40 for dylib in possible:
42 return os.path.realpath(dyld_find(dylib))
52 '/usr/lib/libSystem.B.dylib')
59 self.assertRegexpMatches(result, r".*/lib/libz\..*.*\.dylib")
/external/compiler-rt/test/asan/TestCases/Darwin/
Ddyld_insert_libraries_remove.cc2 // the ASan dylib from the environment variable (both when using an absolute
7 // RUN: | grep "libclang_rt.asan_osx_dynamic.dylib" \
8 // RUN: | sed -e 's/.*"\(.*libclang_rt.asan_osx_dynamic.dylib\)".*/\1/'` \
9 // RUN: %T/dyld_insert_libraries_remove/libclang_rt.asan_osx_dynamic.dylib
13 // RUN: -dynamiclib -o %T/dyld_insert_libraries_remove/dummy-so.dylib
16 // RUN: DYLD_INSERT_LIBRARIES=@executable_path/libclang_rt.asan_osx_dynamic.dylib:dummy-so.dylib \
20 // RUN: DYLD_INSERT_LIBRARIES=libclang_rt.asan_osx_dynamic.dylib:dummy-so.dylib \
24 …NSERT_LIBRARIES=%T/dyld_insert_libraries_remove/libclang_rt.asan_osx_dynamic.dylib:dummy-so.dylib \
34 // CHECK: {{DYLD_INSERT_LIBRARIES=dummy-so.dylib}} in main()
Ddyld_insert_libraries_reexec.cc1 // When DYLD-inserting the ASan dylib from a different location than the
6 // RUN: | grep "libclang_rt.asan_osx_dynamic.dylib" \
7 // RUN: | sed -e 's/.*"\(.*libclang_rt.asan_osx_dynamic.dylib\)".*/\1/'` \
8 // RUN: %T/dyld_insert_libraries_reexec/libclang_rt.asan_osx_dynamic.dylib
12 // RUN: DYLD_INSERT_LIBRARIES=@executable_path/libclang_rt.asan_osx_dynamic.dylib \
18 // On OS X 10.10 and lower, if the dylib is not DYLD-inserted, ASan will re-exec.
/external/openscreen/build/toolchain/mac/
DBUILD.gn80 dylib = "{{output_dir}}/$soname" # e.g. "libfoo.dylib"
84 # (1) linking to produce a .dylib, (2) extracting the symbols from that
91 tocname = dylib + ".TOC"
92 temporary_tocname = dylib + ".tmp"
94 …does_reexport_command = "[ ! -e \"$dylib\" -o ! -e \"$tocname\" ] || otool -l \"$dylib\" | grep -q…
95 …pp_command -shared -Wl,-install_name,@rpath/\"$soname\" {{ldflags}} -o \"$dylib\" -Wl,-filelist,\"…
97 …extract_toc_command = "{ otool -l \"$dylib\" | grep LC_ID_DYLIB -A 5; nm -gP \"$dylib\" | cut -f1-…
103 description = "DYLIB {{output}}"
108 default_output_extension = ".dylib"
114 # Link to the dylib but have GN use the tocname for dependency management.
[all …]
/external/llvm/test/tools/lto/
Dopt-level.ll2 ; RUN: %ld64 -lto_library %llvmshlibdir/libLTO.dylib -arch x86_64 -dylib -mllvm -O0 -o %t.dylib %t.o
3 ; RUN: llvm-nm -no-llvm-bc %t.dylib | FileCheck --check-prefix=CHECK-O0 %s
4 ; RUN: %ld64 -lto_library %llvmshlibdir/libLTO.dylib -arch x86_64 -dylib -mllvm -O2 -o %t.dylib %t.o
5 ; RUN: llvm-nm -no-llvm-bc %t.dylib | FileCheck --check-prefix=CHECK-O2 %s
Dprint-stats.ll2 ; RUN: %ld64 -lto_library %llvmshlibdir/libLTO.dylib -arch x86_64 -dylib -mllvm -stats -o %t.dylib
3 ; RUN: %ld64 -lto_library %llvmshlibdir/libLTO.dylib -arch x86_64 -dylib -o %t.dylib %t.o 2>&1 | Fi…
Dhide-linkonce-odr.ll2 …ld64 -lto_library %llvmshlibdir/libLTO.dylib -dylib -arch x86_64 -macosx_version_min 10.10.0 -lSys…
4 ; RUN: llvm-dis %t.dylib.lto.opt.bc -o - | FileCheck --check-prefix=IR %s
10 ; RUN: llvm-nm %t.dylib | FileCheck --check-prefix=NM %s
/external/llvm/test/ObjectYAML/MachO/
Ddylib_dylinker_command.yaml21 dylib:
26 PayloadString: '/usr/lib/libc++.1.dylib'
30 dylib:
35 PayloadString: /usr/lib/libSystem.B.dylib
47 #CHECK: dylib:
52 #CHECK: PayloadString: '/usr/lib/libc++.1.dylib'
56 #CHECK: dylib:
61 #CHECK: PayloadString: /usr/lib/libSystem.B.dylib
/external/llvm/test/tools/dsymutil/
Darch-option.test4 RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib | FileCheck %s…
5 RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch all | Fi…
6 RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch='*' | Fi…
7 RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm64 | …
8 RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm | Fi…
9 RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch armv7 | …
10 RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm64 -a…
11 RUN: not llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm4…
12 RUN: not llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch i386…
Dfat-binary-output.test1 RUN: llvm-dsymutil -f -verbose -no-output %p/Inputs/fat-test.dylib -oso-prepend-path %p | FileCheck…
27 … [[TMP_PATH:.*?]]fat-test.dylib.tmp{{......}}.dwarf [[TMP_PATH]]fat-test.dylib.tmp{{......}}.dwar…
29 CHECK-SAME: -output [[INPUTS_PATH]]fat-test.dylib.dwarf
/external/libcups/xcode/CUPS.xcodeproj/
Dproject.pbxproj169 …ADF3E200FFE5FB /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 728FB7EF1536167…
170 …DF3E200FFE5FB /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 728FB7F01536167…
171 …963A1CADF3E200FFE5FB /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 728FB7EC15361…
197 …707E0200EA9403 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 728FB7EF1536167…
198 …07E0200EA9403 /* libresolv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 728FB7F01536167…
199 …021E1D707E0200EA9403 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 728FB7EC15361…
209 …1CC1261900E517C7 /* libcups.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72220EAE133304…
211 …1CC1264B00E517C7 /* libcups.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72220EAE133304…
213 …1CC1267A00E517C7 /* libcups.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72220EAE133304…
215 …1CC1269700E517C7 /* libcups.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 72220EAE133304…
[all …]
/external/libiio/src/CI/travis/
Dbefore_deploy119 ln -fs ../../Library/Frameworks/iio.framework/iio libiio.dylib
120 …name_tool -change /usr/local/opt/libusb/lib/libusb-1.0.0.dylib @rpath/libusb-1.0.dylib libiio.dylib
121 install_name_tool -add_rpath @loader_path/../../../../../usr/lib libiio.dylib
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/clang/test/Driver/
Ddarwin-sanitizer-ld.c10 // CHECK-ASAN: libclang_rt.asan_osx_dynamic.dylib"
19 // CHECK-DYN-ASAN: "-dylib"
20 // CHECK-DYN-ASAN: libclang_rt.asan_osx_dynamic.dylib"
31 // CHECK-UBSAN: libclang_rt.ubsan_osx_dynamic.dylib"
48 // CHECK-DYN-UBSAN: "-dylib"
49 // CHECK-DYN-UBSAN: libclang_rt.ubsan_osx_dynamic.dylib"
68 // CHECK-ASAN-IOSSIM: libclang_rt.asan_iossim_dynamic.dylib"
80 // CHECK-ASAN-TVOSSIM: libclang_rt.asan_tvossim_dynamic.dylib"
92 // CHECK-ASAN-WATCHOSSIM: libclang_rt.asan_watchossim_dynamic.dylib"
103 // CHECK-ASAN-IOS: libclang_rt.asan_ios_dynamic.dylib"
[all …]
/external/libcups/cups/
DMakefile229 $(RM) libcups.so libcups.dylib
230 $(RM) libcupsimage.so libcupsimage.dylib
301 if test $(LIBCUPS) = "libcups.2.dylib"; then \
302 $(RM) $(LIBDIR)/libcups.dylib; \
303 $(LN) $(LIBCUPS) $(LIBDIR)/libcups.dylib; \
312 -if test "x$(LIBCUPSIMAGE)" = "xlibcupsimage.2.dylib"; then \
313 $(RM) $(LIBDIR)/libcupsimage.dylib; \
314 $(LN) $(LIBCUPSIMAGE) $(LIBDIR)/libcupsimage.dylib; \
341 $(RM) $(LIBDIR)/libcups.2.dylib
343 $(RM) $(LIBDIR)/libcups.dylib
[all …]
/external/tensorflow/tensorflow/core/platform/default/
Dplatform.bzl16 return "lib/lib{}.dylib".format(name)
18 return "lib/lib{}.{}.dylib".format(name, version)
33 return "lib/libcudnn.dylib"
35 return "lib/libcudnn.{}.dylib".format(version)
44 return "extras/CUPTI/lib/libcupti.dylib"
46 return "extras/CUPTI/lib/libcupti.{}.dylib".format(version)
/external/skia/infra/bots/recipe_modules/build/examples/full.expected/
DBuild-Mac-Clang-x86_64-Debug-ASAN.json126 …obench', 'nanobench.exe', 'skpbench', 'skpbench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher',…
141 …obench', 'nanobench.exe', 'skpbench', 'skpbench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher',…
186 "libclang_rt.*san_osx_dynamic.dylib"
191 …ns/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib@@@",
192 …ns/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.tsan_osx_dynamic.dylib@@@",
193 …s/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.ubsan_osx_dynamic.dylib@@@",
205 …hains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib",
209 "name": "copy libclang_rt.asan_osx_dynamic.dylib"
219 …hains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.tsan_osx_dynamic.dylib",
223 "name": "copy libclang_rt.tsan_osx_dynamic.dylib"
[all …]
/external/libcxx/lib/abi/
DCHANGELOG.TXT4 the addition and deletion of symbols from the libc++ dylib.
22 it into the standard) from the headers and the dylib. This is technically an
57 of their users could actually be using the symbol in their dylib (because
90 against libc++.dylib to actually depend on that symbol. The reason is that
92 instantiation present in the dylib itself only. Furthermore, if a user's
93 dylib was implicitly instantiating __thread_specific_ptr<T>::__at_thread_exit
96 using the symbol in their dylib (because it's an implicit instantiation).
100 from outside the dylib.
161 These functions should never have had visible definitions in the dylib but
228 These functions should never have had visible definitions in the dylib but
[all …]
/external/llvm/test/Object/
Dnm-darwin-m.test28 # libx.dylib
29 # libxSuffix_profile.dylib
30 # /usr/local/lib/libxPathSuffix_debug.dylib
31 # libATS.A_profile.dylib
32 # /usr/lib/libPathATS.A_profile.dylib
35 # /usr/lib/libSystem.B.dylib
/external/google-breakpad/src/common/mac/
Dmacho_utilities.cc54 dc->dylib.name.offset = ByteSwap(dc->dylib.name.offset); in breakpad_swap_dylib_command()
55 dc->dylib.timestamp = ByteSwap(dc->dylib.timestamp); in breakpad_swap_dylib_command()
56 dc->dylib.current_version = ByteSwap(dc->dylib.current_version); in breakpad_swap_dylib_command()
57 dc->dylib.compatibility_version = ByteSwap(dc->dylib.compatibility_version); in breakpad_swap_dylib_command()

12345678910>>...24