Home
last modified time | relevance | path

Searched full:dylib (Results 1 – 25 of 578) 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 …]
/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 …]
/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/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/
Dmacho-bad-bind.test1 …t llvm-objdump -macho -bind %p/Inputs/macho-bind-dylib-ordinal-uleb 2>&1 | FileCheck -check-prefix…
2 DYLIB-ORDINAL-ULEB: macho-bind-dylib-ordinal-uleb': truncated or malformed object (for BIND_OPCODE_…
4 …jdump -macho -bind %p/Inputs/macho-bind-dylib-ordinal-uleb-malformed-uleb128 2>&1 | FileCheck -che…
5 DYLIB-ORDINAL-ULEB-MALFORMED-ULEB128: macho-bind-dylib-ordinal-uleb-malformed-uleb128': truncated o…
7 …vm-objdump -macho -bind %p/Inputs/macho-bind-dylib-ordinal-uleb-too-big 2>&1 | FileCheck -check-pr…
8 DYLIB-ORDINAL-ULEB-TOO-BIG: macho-bind-dylib-ordinal-uleb-too-big': truncated or malformed object (…
10 …t llvm-objdump -macho -bind %p/Inputs/macho-bind-dylib-special-imm 2>&1 | FileCheck -check-prefix
11 DYLIB-SPECIAL-IMM: macho-bind-dylib-special-imm': truncated or malformed object (for BIND_OPCODE_SE…
46 …jdump -macho -bind %p/Inputs/macho-do-bind-no-dylib-ordinal 2>&1 | FileCheck -check-prefix DO-BIND…
47 DO-BIND-NO-DYLIB-ORDINAL: macho-do-bind-no-dylib-ordinal': truncated or malformed object (for BIND_…
[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/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))
50 '/usr/lib/libSystem.B.dylib')
57 self.assertRegex(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/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…
/external/swiftshader/third_party/llvm-7.0/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…
/external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/Build/OSX/OGLES2HelloAPI.xcodeproj/
Dproject.pbxproj12 …815C92647004CE8F1 /* libEGL.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = DB3A55C715C926…
13 …C915C92668004CE8F1 /* libEGL.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = DB3A55C715C926…
14 …937F1004CE8F1 /* libGLESv2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = DB3A55CB15C937F…
15 …9380E004CE8F1 /* libGLESv2.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = DB3A55CB15C937F1…
29 DB3A55CD15C9380E004CE8F1 /* libGLESv2.dylib in CopyFiles */,
30 DB3A55C915C92668004CE8F1 /* libEGL.dylib in CopyFiles */,
44dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libEGL.dyl…
45dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libGLESv2.
60 DB3A55C815C92647004CE8F1 /* libEGL.dylib in Frameworks */,
61 DB3A55CC15C937F1004CE8F1 /* libGLESv2.dylib in Frameworks */,
[all …]
/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/swiftshader/third_party/llvm-7.0/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/swiftshader/third_party/llvm-7.0/llvm/test/tools/dsymutil/
Darch-option.test4 RUN: dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib | FileCheck %s -che…
5 RUN: dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch all | FileChe…
6 RUN: dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch='*' | FileChe…
7 RUN: dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm64 | FileC…
8 RUN: dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm | FileChe…
9 RUN: dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch armv7 | FileC…
10 RUN: dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm64 -arch a…
11 RUN: not dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm42 2>&…
12 RUN: not dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch i386 2>&1…
/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…
/external/skia/infra/bots/recipe_modules/build/examples/full.expected/
DBuild-Mac-Clang-x86_64-Debug-ASAN.json82 …obench', 'nanobench.exe', 'skpbench', 'skpbench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher',…
97 …obench', 'nanobench.exe', 'skpbench', 'skpbench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher',…
125 "libclang_rt.*san_osx_dynamic.dylib"
131 …ins/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib@@@",
132 …ins/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.tsan_osx_dynamic.dylib@@@",
133 …ns/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.ubsan_osx_dynamic.dylib@@@",
145 …chains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib",
149 "name": "copy libclang_rt.asan_osx_dynamic.dylib"
159 …chains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.tsan_osx_dynamic.dylib",
163 "name": "copy libclang_rt.tsan_osx_dynamic.dylib"
[all …]
/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/skqp/infra/bots/recipe_modules/build/examples/full.expected/
DBuild-Mac-Clang-x86_64-Debug-ASAN.json82 …obench', 'nanobench.exe', 'skpbench', 'skpbench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher',…
97 …obench', 'nanobench.exe', 'skpbench', 'skpbench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher',…
125 "libclang_rt.*san_osx_dynamic.dylib"
131 …ins/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib@@@",
132 …ins/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.tsan_osx_dynamic.dylib@@@",
133 …ns/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.ubsan_osx_dynamic.dylib@@@",
145 …chains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib",
149 "name": "copy libclang_rt.asan_osx_dynamic.dylib"
159 …chains/XcodeDefault.xctoolchain/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.tsan_osx_dynamic.dylib",
163 "name": "copy libclang_rt.tsan_osx_dynamic.dylib"
[all …]
/external/libusb-compat/libusb-compat.xcodeproj/
Dproject.pbxproj10 …E138D82D500E748DE /* libusb.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A726C22138D81…
39 …ibusb-compat.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; inclu…
50 5A726C7E138D82D500E748DE /* libusb.dylib in Frameworks */,
83 D2AAC0630554660B00DB518D /* libusb-compat.dylib */,
91 5A726C22138D81BA00E748DE /* libusb.dylib */,
127 productReference = D2AAC0630554660B00DB518D /* libusb-compat.dylib */;
161 5A726C22138D81BA00E748DE /* libusb.dylib */ = {
163 fileType = "compiled.mach-o.dylib";
164 path = libusb.dylib;
/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/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/X86/
Dmacho-dylib.test2 RUN: llvm-objdump -m -dylib-id %p/Inputs/dylibLoadKinds.macho-x86_64 | FileCheck %s -check-prefix=ID
3 RUN: llvm-objdump -m -dylib-id -no-leading-headers %p/Inputs/dylibLoadKinds.macho-x86_64 | FileChec…
5 USED: /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1)
7 ID: /usr/lib/foo.dylib
10 IDNOHEADERS: /usr/lib/foo.dylib
/external/libusb/Xcode/libusb.xcodeproj/
Dproject.pbxproj32 …007F8C6A /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B7930…
49 …1628B8CB00BC5BE2 /* libobjc.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBFAA1628B8…
51 …00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B7930…
53 …00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B7930…
55 …00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B7930…
57 …00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B7930…
60 …00BC5BE2 /* libusb-1.0.0.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 008FBF311628B7930…
214 …libusb-1.0.0.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; inclu…
231 …/* libobjc.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name =…
261 006AD4261C8C5AD9007F8C6A /* libusb-1.0.0.dylib in Frameworks */,
[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 …]

12345678910>>...24