/ndk/sources/android/crazy_linker/src/ |
D | crazy_linker_library_list.cpp | 316 Vector<LibraryView*> dependencies; in LoadLibrary() local 329 dependencies.PushBack(dependency); in LoadLibrary() 333 for (size_t n = 0; n < dependencies.GetCount(); ++n) in LoadLibrary() 334 LOG(" ... %p %s\n", dependencies[n], dependencies[n]->GetName()); in LoadLibrary() 335 LOG(" dependencies @%p\n", &dependencies); in LoadLibrary() 340 if (!lib->Relocate(this, &dependencies, error)) in LoadLibrary()
|
D | crazy_linker_shared_library.cpp | 89 Vector<LibraryView*>* dependencies) in SharedLibraryResolver() argument 90 : lib_(lib), dependencies_(dependencies) {} in SharedLibraryResolver() 288 Vector<LibraryView*>* dependencies, in Relocate() argument 298 SharedLibraryResolver resolver(this, lib_list, dependencies); in Relocate()
|
D | crazy_linker_shared_library.h | 62 Vector<LibraryView*>* dependencies,
|
/ndk/docs/text/ |
D | NDK-DEPENDS.text | 8 the ELF dependencies of a given ELF shared library or executable. 11 source fragment to load your native library and its dependencies in the 28 > Dump all dependencies of libfoo.so, in topological order, so 38 when looking at the dependencies for 'libfoo.so' 41 > Only print the _direct_ dependencies of libfoo.so, and nothing
|
D | INSTALL.text | 18 You will need to have the Android SDK and its dependencies installed. The NDK
|
D | CPU-FEATURES.text | 13 * List '`cpufeatures`' in your list of static library dependencies, as in:
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | mult_rules | 5 the other rules can only have dependencies."; 10 with the same names as above but adding more dependencies.
|
D | vpath | 10 ."target name) and $^ (which is a list of all dependencies \n"
|
/ndk/sources/host-tools/make-3.81/config/ |
D | depcomp | 39 Run PROGRAMS ARGS to compile a file, generating dependencies 46 DEPDIR directory where to store dependencies. 48 tmpdepfile Temporary file to use when outputing dependencies.
|
D | lib-link.m4 | 11 dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and 12 dnl the libraries corresponding to explicit and implicit dependencies. 41 dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) 43 dnl implicit dependencies, together with the specified include files and 122 dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and 123 dnl the libraries corresponding to explicit and implicit dependencies. 153 dnl Search the library and its dependencies in $additional_libdir and 374 dnl Look for dependencies.
|
/ndk/build/core/ |
D | setup-toolchain.mk | 219 $(call ndk-stl-add-dependencies,$(NDK_APP_STL)) 222 $(call modules-compute-dependencies) 249 WANTED_MODULES := $(call module-get-all-dependencies,$(NDK_APP_MODULES))
|
D | import-locals.mk | 29 all_depends := $(call module-get-all-dependencies,$(LOCAL_MODULE))
|
D | definitions-graph.mk | 414 $(call test-expect,B,$(topo_deps),topo dependencies) 423 $(call test-expect,B C,$(bfs_deps),dfs dependencies)\ 424 $(call test-expect,C B,$(topo_deps),topo dependencies) 433 $(call test-expect,B C,$(bfs_deps),dfs dependencies)\ 434 $(call test-expect,B C,$(topo_deps),topo dependencies)
|
D | definitions.mk | 718 module-get-all-dependencies = $(call -ndk-mod-get-closure,$1,module-get-depends) 763 modules-compute-dependencies = \ 786 $(foreach __alldep,$(call module-get-all-dependencies,$1),\ 815 modules-add-c++-dependencies = \ 890 $(eval __cxxdeps := $(call module-get-all-dependencies,$1))\ 1983 ndk-stl-add-dependencies = \ 1984 $(call modules-add-c++-dependencies,\
|
D | build-local.mk | 202 NDK_DEPENDENCIES_CONVERTER := $(NDK_APP_OUT)/convert-dependencies.sh
|
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
D | depcomp | 38 Run PROGRAMS ARGS to compile a file, generating dependencies 45 DEPDIR directory where to store dependencies. 47 tmpdepfile Temporary file to use when outputing dependencies.
|
/ndk/sources/host-tools/make-3.81/tests/scripts/options/ |
D | dash-k | 8 of the dependencies of the main target does not exist. 11 is that make builds the rest of the dependencies even though
|
/ndk/sources/host-tools/make-3.81/tests/scripts/misc/ |
D | general1 | 5 rebuilding of a product with dependencies.
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | lib-link.m4 | 11 dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and 12 dnl the libraries corresponding to explicit and implicit dependencies. 46 dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message]) 48 dnl implicit dependencies, together with the specified include files and 163 dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and 164 dnl the libraries corresponding to explicit and implicit dependencies. 207 dnl Search the library and its dependencies in $additional_libdir and 502 dnl Look for dependencies.
|
/ndk/sources/android/crazy_linker/ |
D | README.TXT | 15 - Library dependencies are loaded automatically in the right order. 66 its dependencies will be loaded by it too.
|
D | DESIGN.TXT | 82 2) Load library dependencies. 109 2) Unload dependencies recursively.
|
/ndk/sources/host-tools/make-3.81/glob/ |
D | SMakefile | 47 # For some reason, Unix make wants the dependencies on the source files.
|
/ndk/sources/host-tools/make-3.81/ |
D | NEWS | 305 library dependency expansion (dependencies like ``-lfoo'') is performed. 377 Further, if you have any dependencies which already contain "\=", 489 * The automatic variable `$+' is new. It lists all the dependencies like 495 dependencies to limit their effects to those files. If a file appears as 719 if they can be created (just like dependencies which do have a %). 746 * Suffix rules may have dependencies (which are ignored). 766 * Makefiles which have commands but no dependencies (and thus are always 783 * Library dependencies given as `-lNAME' will use "libNAME.a" in the current 985 * A double-colon rule with no dependencies will always have its commands run.
|
D | aclocal.m4 | 171 # We will build objects and dependencies in a subdirectory because 173 # both Tru64's cc and ICC support -MD to output dependencies as a 174 # side effect of compilation, but ICC will put the dependencies in 184 # Setup a source with many dependencies, because some compilers 452 _AM_IF_OPTION([no-dependencies],,
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | aclocal.m4 | 198 # We will build objects and dependencies in a subdirectory because 200 # both Tru64's cc and ICC support -MD to output dependencies as a 201 # side effect of compilation, but ICC will put the dependencies in 211 # Setup a source with many dependencies, because some compilers 473 _AM_IF_OPTION([no-dependencies],,
|