HomeSort by relevance Sort by last modified time
    Searched refs:linker (Results 51 - 75 of 273) sorted by null

1 23 4 5 6 7 8 91011

  /external/libsepol/tests/
libsepol-tests.c 22 #include "test-linker.h"
62 DECLARE_SUITE(linker);
  /external/llvm/test/Bindings/Ocaml/
linker.ml 4 * RUN: %ocamlopt -warn-error A llvm.cmxa llvm_linker.cmxa %t.builddir/linker.ml -o %t
28 (*===-- Linker -----------------------------------------------------------===*)
63 suite "linker" test_linker
  /external/llvm/test/MC/MachO/ARM/
long-call-branch-island-relocation.s 23 @ generating an external relocation so the linker can create a branch
  /external/llvm/test/MC/PowerPC/
ppc64-relocs-01.s 35 # 2. And a R_PPC64_TOC against no symbol (the linker will replace for the
  /ndk/sources/android/crazy_linker/
Android.mk 31 # The crazy linker itself.
41 # The crazy linker unit tests.
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 326 ClassLinker* linker = Runtime::Current()->GetClassLinker(); local
382 called = linker->ResolveMethod(Thread::Current(), dex_method_idx, &caller, invoke_type);
402 linker->EnsureInitialized(called_class, true, true);
413 code = linker->GetPortableOatCodeFor(called, &have_portable_code);
422 code = linker->GetPortableOatCodeFor(called, &have_portable_code);
435 code = linker->GetPortableOatCodeFor(called, &have_portable_code);
447 DCHECK(code != linker->GetPortableResolutionTrampoline());
  /bionic/linker/
linker_executable.mk 5 # system, and is probably specific the linker only, so there's no need to modify the build
  /device/generic/qemu/
qemu_base.mk 56 linker \
  /external/chromium_org/third_party/mesa/src/src/glsl/
link_uniform_initializers.cpp 26 #include "linker.h"
35 namespace linker { namespace
175 linker::set_uniform_initializer(mem_ctx, prog, var->name,
  /external/chromium_org/third_party/skia/platform_tools/android/bin/
android_gdbserver 57 adb_pull_if_needed /system/bin/linker $GDB_TMP_DIR
  /external/llvm/test/MC/ARM/
eh-compact-pr0.s 63 @ another relocation entry for __aeabi_unwind_cpp_pr0, so that the linker
98 @ another relocation entry for __aeabi_unwind_cpp_pr0, so that the linker
eh-directive-handlerdata.s 44 @ linker can keep __aeabi_unwind_cpp_pr0.
101 @ linker can keep __aeabi_unwind_cpp_pr0.
eh-compact-pr1.s 67 @ another relocation entry for __aeabi_unwind_cpp_pr1, so that the linker
  /external/mesa3d/src/glsl/
link_uniform_initializers.cpp 26 #include "linker.h"
35 namespace linker { namespace
175 linker::set_uniform_initializer(mem_ctx, prog, var->name,
  /bionic/benchmarks/
Android.mk 59 LINKER = linker
62 LINKER = linker64
66 bionic-benchmarks-run-on-host: bionic-benchmarks $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
72 cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin
  /external/chromium_org/build/android/pylib/linker/
test_runner.py 5 """Runs linker tests on a particular device."""
15 from pylib.linker import test_case
45 """Orchestrates running a set of linker tests.
  /system/extras/tests/bionic/libc/
Android.mk 44 # you can use EXTRA_LDLIBS to indicate additional linker flags
106 # The 'test_dlopen_null' tests requires specific linker flags
112 # garbage-collected by the gold linker, since the function
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
invocation.cpp 31 #include <llvm/Linker.h>
154 llvm::Linker linker("clover", mod);
157 linker.LinkInFile(llvm::sys::Path(LIBCLC_LIBEXECDIR + triple + ".bc"), isNative);
158 mod = linker.releaseModule();
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.cpp 31 #include <llvm/Linker.h>
154 llvm::Linker linker("clover", mod);
157 linker.LinkInFile(llvm::sys::Path(LIBCLC_LIBEXECDIR + triple + ".bc"), isNative);
158 mod = linker.releaseModule();
  /external/chromium_org/build/android/rezip/
rezip.cc 16 // directly from within the APK using the "crazy" linker.
205 const std::string linker = "libchromium_android_linker.so"; local
206 if (last_slash + 1 + linker.length() == filename_str.length() &&
207 filename_str.compare(last_slash + 1, linker.length(), linker) == 0) {
208 // Do not match the linker.
492 "not renamed as the crazy linker can not load itself.";
  /external/chromium_org/sandbox/win/src/
interception.cc 372 // Make sure the functions are not excluded by the linker.
374 #pragma comment(linker, "/include:TargetNtMapViewOfSection64")
375 #pragma comment(linker, "/include:TargetNtUnmapViewOfSection64")
377 #pragma comment(linker, "/include:_TargetNtMapViewOfSection@44")
378 #pragma comment(linker, "/include:_TargetNtUnmapViewOfSection@12")
  /bionic/libdl/
Android.mk 34 # LOCAL_ALLOW_UNDEFINED_SYMBOLS to remove --no-undefined from the linker flags.
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/pipe-loader/
Makefile 148 $(MKLIB) -o $@ -noprefix -linker '$(CC)' \
155 $(MKLIB) -o $@ -noprefix -linker '$(CXX)' \
  /external/mesa3d/src/gallium/targets/pipe-loader/
Makefile 148 $(MKLIB) -o $@ -noprefix -linker '$(CC)' \
155 $(MKLIB) -o $@ -noprefix -linker '$(CXX)' \
  /art/compiler/
elf_writer_mclinker.cc 24 #include <mcld/Linker.h>
148 // Based on alone::Linker::config
154 linker_.reset(new mcld::Linker());
186 // linker script like functionality to guarantee references
333 // TODO: avoid dup of fd by fixing Linker::emit to not close the argument fd.
361 ClassLinker* linker = Runtime::Current()->GetClassLinker(); local
365 Handle<mirror::DexCache> dex_cache(hs.NewHandle(linker->FindDexCache(dex_file)));
366 method = linker->ResolveMethod(dex_file, method_idx, dex_cache,

Completed in 1407 milliseconds

1 23 4 5 6 7 8 91011