Searched +full:list +full:- +full:shared +full:- +full:library +full:- +full:symbols (Results 1 – 25 of 683) sorted by relevance
12345678910>>...28
| /external/libcxx/utils/ |
| D | sym_extract.py | 2 #===----------------------------------------------------------------------===## 9 #===----------------------------------------------------------------------===## 11 sym_extract - Extract and output a list of symbols from a shared library. 19 description='Extract a list of symbols from a shared library.') 20 parser.add_argument('library', metavar='shared-lib', type=str, 21 help='The library to extract symbols from') 22 parser.add_argument('-o', '--output', dest='output', 25 parser.add_argument('--names-only', dest='names_only', 28 parser.add_argument('--only-stdlib-symbols', dest='only_stdlib', 29 help="Filter all symbols not related to the stdlib", [all …]
|
| /external/cronet/third_party/libc++/src/utils/libcxx/sym_check/ |
| D | extract.py | 1 # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80: 2 # ===----------------------------------------------------------------------===## 6 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 # ===----------------------------------------------------------------------===## 10 extract - A set of function that extract symbol lists from shared libraries. 26 NMExtractor - Extract symbol lists from libraries using nm. 39 symbols from shared libraries. 47 self.flags = ["-P", "-g"] 49 # AIX nm demangles symbols by default, so suppress that. 50 self.flags.append("-C") [all …]
|
| /external/flac/include/FLAC/ |
| D | export.h | 1 /* libFLAC - Free Lossless Audio Codec library 2 * Copyright (C) 2000-2009 Josh Coalson 3 * Copyright (C) 2011-2023 Xiph.Org Foundation 9 * - Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 12 * - Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 16 * - Neither the name of the Xiph.org Foundation nor the names of its 39 * This module contains \#defines and symbols for exporting function 40 * calls, and providing version information and compiled-in features. [all …]
|
| /external/flac/include/FLAC++/ |
| D | export.h | 1 /* libFLAC++ - Free Lossless Audio Codec library 2 * Copyright (C) 2002-2009 Josh Coalson 3 * Copyright (C) 2011-2023 Xiph.Org Foundation 9 * - Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 12 * - Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 16 * - Neither the name of the Xiph.org Foundation nor the names of its 39 * This module contains \#defines and symbols for exporting function 40 * calls, and providing version information and compiled-in features. [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
| D | DynamicLibrary.h | 1 //===-- llvm/Support/DynamicLibrary.h - Portable Dynamic Library -*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 25 /// might be known as shared libraries, shared objects, dynamic shared 29 /// defined symbols. This is typically used to provide "plug-in" support. 30 /// It also allows for symbols to be defined which don't live in any library, 34 /// Note: there is currently no interface for temporarily loading a library, 35 /// or for unloading libraries when the LLVM library is unloaded. 37 // Placeholder whose address represents an invalid library. [all …]
|
| /external/google-breakpad/src/third_party/mac_headers/mach-o/ |
| D | loader.h | 2 * Copyright (c) 1999-2010 Apple Inc. All Rights Reserved. 17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 51 * The 32-bit mach header appears at the very beginning of the object file for 52 * 32-bit architectures. 64 /* Constant for the magic field of the mach_header (32-bit architectures) */ 69 * The 64-bit mach header appears at the very beginning of object files for 70 * 64-bit architectures. 83 /* Constant for the magic field of the mach_header_64 (64-bit architectures) */ 84 #define MH_MAGIC_64 0xfeedfacf /* the 64-bit mach magic number */ 106 * Mach-O file. [all …]
|
| /external/python/cpython2/Doc/library/ |
| D | errno.rst | 2 :mod:`errno` --- Standard errno system symbols 6 :synopsis: Standard errno system symbols. 9 This module makes available standard ``errno`` system symbols. The value of each 12 all-inclusive. 23 Of the following list, symbols that are not used on the current platform are not 24 defined by the module. The specific list of defined symbols is available as 25 ``errno.errorcode.keys()``. Symbols available can include: 60 Arg list too long 115 Cross-device link 175 Read-only file system [all …]
|
| /external/libcxx/utils/libcxx/sym_check/ |
| D | extract.py | 1 # -*- Python -*- vim: set syntax=python tabstop=4 expandtab cc=80: 2 #===----------------------------------------------------------------------===## 9 #===----------------------------------------------------------------------===## 11 extract - A set of function that extract symbol lists from shared libraries. 24 NMExtractor - Extract symbol lists from libraries using nm. 37 symbols from shared libraries. 44 self.flags = ['-P', '-g'] 48 Extract symbols from a library and return the results as a dict of 49 parsed symbols. 60 tmp_list = list(sorted(set(final_syms))) [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ |
| D | DynamicLibrary.h | 1 //===-- llvm/Support/DynamicLibrary.h - Portable Dynamic Library -*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 25 /// might be known as shared libraries, shared objects, dynamic shared 29 /// defined symbols. This is typically used to provide "plug-in" support. 30 /// It also allows for symbols to be defined which don't live in any library, 34 // Placeholder whose address represents an invalid library. 35 // We use this instead of NULL or a pointer-int pair because the OS library 39 // Opaque data used to interface with OS-specific dynamic library handling. [all …]
|
| /external/cronet/third_party/libc++/src/lib/abi/ |
| D | CHANGELOG.TXT | 4 the addition and deletion of symbols from the libc++ dylib. 8 including what symbols were added, removed, or changed. 10 To generate a summary, re-generate the new ABI list using the 11 `generate-cxx-abilist` target, and look at the diff. 15 ------------ 17 ------------ 21 This patch removes a symbol defined in the library for std::locale::id::__init(). 27 ------------- 32 This patch removes a symbol defined in the library for std::system_error. 42 ------------- [all …]
|
| /external/speex/m4/ |
| D | libtool.m4 | 1 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- 3 # Copyright (C) 1996-2001, 2003-2019, 2021-2022 Free Software 22 # distribute this file as part of a program or library that is built 39 # ------------------ 42 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, 50 # ------------------ 61 # ------------------ 71 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl 81 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) 102 dnl aclocal-1.4 backwards compatibility: [all …]
|
| /external/curl/m4/ |
| D | libtool.m4 | 1 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- 3 # Copyright (C) 1996-2001, 2003-2019, 2021-2022 Free Software 22 # distribute this file as part of a program or library that is built 39 # ------------------ 42 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, 50 # ------------------ 61 # ------------------ 71 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl 81 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) 102 dnl aclocal-1.4 backwards compatibility: [all …]
|
| /external/libpng/scripts/autoconf/ |
| D | libtool.m4 | 1 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- 3 # Copyright (C) 1996-2001, 2003-2019, 2021-2022 Free Software 22 # distribute this file as part of a program or library that is built 39 # ------------------ 42 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, 50 # ------------------ 61 # ------------------ 71 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl 81 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) 102 dnl aclocal-1.4 backwards compatibility: [all …]
|
| /external/pcre/m4/ |
| D | libtool.m4 | 1 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- 3 # Copyright (C) 1996-2001, 2003-2019, 2021 Free Software Foundation, 22 # distribute this file as part of a program or library that is built 39 # ------------------ 42 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, 50 # ------------------ 61 # ------------------ 71 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl 81 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) 102 dnl aclocal-1.4 backwards compatibility: [all …]
|
| /external/libevent/m4/ |
| D | libtool.m4 | 1 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- 3 # Copyright (C) 1996-2001, 2003-2018 Free Software Foundation, Inc. 21 # distribute this file as part of a program or library that is built 38 # ------------------ 41 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, 49 # ------------------ 60 # ------------------ 70 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl 80 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) 101 dnl aclocal-1.4 backwards compatibility: [all …]
|
| /external/compiler-rt/lib/asan/ |
| D | CMakeLists.txt | 1 # Build for the AddressSanitizer runtime support library. 44 list(APPEND ASAN_COMMON_DEFINITIONS 46 # On Android, -z global does not do what it is documented to do. 47 # On Android, -z global moves the library ahead in the lookup order, 50 # that aren't dependencies of the current DSO when resolving symbols from said DSO. 51 # As a net result, this allows running ASan executables without LD_PRELOAD-ing the 52 # ASan runtime library. 55 list(APPEND ASAN_DYNAMIC_LINK_FLAGS -Wl,-z,global) 65 -ftls-model=initial-exec ASAN_DYNAMIC_CFLAGS) 76 # Compile ASan sources into an object library. [all …]
|
| /external/libcxx/lib/abi/ |
| D | CHANGELOG.TXT | 4 the addition and deletion of symbols from the libc++ dylib. 8 including what symbols were added, removed, or changed. 10 To generate a summary use "sym_diff.py" diffing against the appropriate ABI list. 11 Afterwards the ABI list should be updated to include the new changes. 15 ----------- 17 ----------- 19 * rXXXXX - Remove std::bad_array_length 23 ABI break because the symbols are shipped starting with mac OSX 10.13, however 27 x86_64-apple-darwin16.0 28 ----------------------- [all …]
|
| /external/python/cpython3/Doc/library/ |
| D | errno.rst | 1 :mod:`errno` --- Standard errno system symbols 5 :synopsis: Standard errno system symbols. 7 ---------------- 9 This module makes available standard ``errno`` system symbols. The value of each 12 all-inclusive. 23 Of the following list, symbols that are not used on the current platform are not 24 defined by the module. The specific list of defined symbols is available as 25 ``errno.errorcode.keys()``. Symbols available can include: 64 Arg list too long 122 Cross-device link [all …]
|
| /external/parameter-framework/upstream/test/introspection-subsystem/ |
| D | CMakeLists.txt | 8 # list of conditions and the following disclaimer. 11 # this list of conditions and the following disclaimer in the documentation and/or 29 # The introspection-subsystem provides ability to retrieve 30 # a boolean parameter value set by the parameter-framework 38 add_library(introspection-subsystem SHARED 44 # generating header used to export shared library symbols 46 generate_export_header(introspection-subsystem 50 # - the header that contains the introspection function 51 # - the header generated by cmake used to export symbols in shared library. 54 target_include_directories(introspection-subsystem [all …]
|
| /external/python/cpython2/Modules/_ctypes/libffi/m4/ |
| D | libtool.m4 | 1 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- 3 # Copyright (C) 1996-2001, 2003-2013 Free Software Foundation, Inc. 24 # if you distribute this file as part of a program or library that 37 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 44 # ------------------ 47 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, 55 # ------------------ 66 # ------------------ 76 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl 86 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) [all …]
|
| /external/curl/lib/ |
| D | CMakeLists.txt | 21 # SPDX-License-Identifier: curl 25 set(LIBCURL_OUTPUT_NAME libcurl CACHE STRING "Basename of the curl library") 26 add_definitions(-DBUILDING_LIBCURL) 35 list(REMOVE_ITEM CSOURCES dllmain.c) 37 list(APPEND HHEADERS ${CMAKE_CURRENT_BINARY_DIR}/curl_config.h) 53 curlu # special libcurlu library just for unittests 85 math(EXPR CMAKESONAME "${VERSIONCHANGE} - ${VERSIONDEL}") 91 ## Library definition 102 # objects to generate both static and shared target. 104 # Enable it by default on platforms where PIC is the default for both shared [all …]
|
| /external/python/cpython3/Lib/distutils/command/ |
| D | build_ext.py | 22 # An extension name is just a dot-separated list of Python NAMEs (ie. 23 # the same as a fully-qualified module name). 25 (r'^[a-zA-Z_][a-zA-Z_0-9]*(\.[a-zA-Z_][a-zA-Z_0-9]*)*$') 37 # XXX thoughts on how to deal with complex command-line options like 40 # lists of tuples of what-have-you. 41 # - each command needs a callback to process its command-line options 42 # - Command.__init__() needs access to its share of the whole 45 # - it then calls the current command class' option-parsing 46 # callback to deal with weird options like -D, which have to 49 # - that data structure (in this case, a list of 2-tuples) [all …]
|
| /external/python/setuptools/setuptools/_distutils/command/ |
| D | build_ext.py | 23 # An extension name is just a dot-separated list of Python NAMEs (ie. 24 # the same as a fully-qualified module name). 26 (r'^[a-zA-Z_][a-zA-Z_0-9]*(\.[a-zA-Z_][a-zA-Z_0-9]*)*$') 38 # XXX thoughts on how to deal with complex command-line options like 41 # lists of tuples of what-have-you. 42 # - each command needs a callback to process its command-line options 43 # - Command.__init__() needs access to its share of the whole 46 # - it then calls the current command class' option-parsing 47 # callback to deal with weird options like -D, which have to 50 # - that data structure (in this case, a list of 2-tuples) [all …]
|
| /external/cronet/third_party/libc++/src/utils/ |
| D | generate_abi_list.py | 2 # ===----------------------------------------------------------------------===## 6 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 # ===----------------------------------------------------------------------===## 27 description="Extract a list of symbols from a shared library." 30 "library", metavar="LIB", type=str, help="The library to extract symbols from." 33 "-o", 34 "--output", 38 help="The output file to write the symbols to. It is overwritten if it already exists. " 43 symbols = libcxx.sym_check.extract.extract_symbols(args.library) 44 symbols, _ = libcxx.sym_check.util.filter_stdlib_symbols(symbols) [all …]
|
| /external/libcap-ng/libcap-ng-0.7/m4/ |
| D | libtool.m4 | 1 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- 26 # if you distribute this file as part of a program or library that 39 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 46 # ------------------ 49 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, 57 # ------------------ 68 # ------------------ 78 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl 88 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) 109 dnl aclocal-1.4 backwards compatibility: [all …]
|
12345678910>>...28