HomeSort by relevance Sort by last modified time
    Searched refs:Executable (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /art/runtime/mirror/
executable.cc 18 #include "executable.h"
24 bool Executable::CreateFromArtMethod(ArtMethod* method) {
35 template bool Executable::CreateFromArtMethod<PointerSize::k32, false>(ArtMethod* method);
36 template bool Executable::CreateFromArtMethod<PointerSize::k32, true>(ArtMethod* method);
37 template bool Executable::CreateFromArtMethod<PointerSize::k64, false>(ArtMethod* method);
38 template bool Executable::CreateFromArtMethod<PointerSize::k64, true>(ArtMethod* method);
40 ArtMethod* Executable::GetArtMethod() {
45 void Executable::SetArtMethod(ArtMethod* method) {
49 template void Executable::SetArtMethod<false>(ArtMethod* method);
50 template void Executable::SetArtMethod<true>(ArtMethod* method)
    [all...]
executable.h 33 // C++ mirror of java.lang.reflect.Executable.
34 class MANAGED Executable : public AccessibleObject {
57 return MemberOffset(OFFSETOF_MEMBER(Executable, art_method_));
60 return MemberOffset(OFFSETOF_MEMBER(Executable, declaring_class_));
63 return MemberOffset(OFFSETOF_MEMBER(Executable, declaring_class_of_overridden_method_));
66 return MemberOffset(OFFSETOF_MEMBER(Executable, access_flags_));
69 return MemberOffset(OFFSETOF_MEMBER(Executable, dex_method_index_));
73 DISALLOW_IMPLICIT_CONSTRUCTORS(Executable);
method.h 21 #include "executable.h"
29 class MANAGED Method : public Executable {
61 class MANAGED Constructor: public Executable {
method.cc 59 ObjPtr<Executable>(ret)->
111 ObjPtr<Executable>(ret)->
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-pie/
vaddr-1.d 8 Type: EXEC \(Executable file\)
  /prebuilts/go/darwin-x86/src/os/
executable.go 7 // Executable returns the path name for the executable that started
9 // pointing to the correct executable. If a symlink was used to start
14 // Executable returns an absolute path unless an error occurred.
17 // executable.
19 // Executable is not supported on nacl or OpenBSD (unless procfs is
21 func Executable() (string, error) {
22 return executable()
executable_test.go 20 testenv.MustHaveExec(t) // will also execlude nacl, which doesn't support Executable anyway
21 ep, err := os.Executable()
25 t.Skipf("Executable failed on %s: %v, expected", goos, err)
27 t.Fatalf("Executable failed: %v", err)
40 // get real path of the executable without influenced by argv[0].
80 if ep, err := os.Executable(); err != nil {
executable_procfs.go 14 // We query the executable path at init time to avoid the problem of
21 return "", errors.New("Executable not implemented for " + runtime.GOOS)
34 func executable() (string, error) { func
  /prebuilts/go/linux-x86/src/os/
executable.go 7 // Executable returns the path name for the executable that started
9 // pointing to the correct executable. If a symlink was used to start
14 // Executable returns an absolute path unless an error occurred.
17 // executable.
19 // Executable is not supported on nacl or OpenBSD (unless procfs is
21 func Executable() (string, error) {
22 return executable()
executable_test.go 20 testenv.MustHaveExec(t) // will also execlude nacl, which doesn't support Executable anyway
21 ep, err := os.Executable()
25 t.Skipf("Executable failed on %s: %v, expected", goos, err)
27 t.Fatalf("Executable failed: %v", err)
40 // get real path of the executable without influenced by argv[0].
80 if ep, err := os.Executable(); err != nil {
executable_procfs.go 14 // We query the executable path at init time to avoid the problem of
21 return "", errors.New("Executable not implemented for " + runtime.GOOS)
34 func executable() (string, error) { func
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
elfedit-2.d 14 Type:[ \t]+EXEC \(Executable file\)
  /external/llvm/unittests/Support/
ProgramTest.cpp 210 std::string Executable =
213 Executable.c_str(),
223 ProcessInfo PI1 = ExecuteNoWait(Executable, argv, getEnviron(), nullptr, 0,
242 ProcessInfo PI2 = ExecuteNoWait(Executable, argv, getEnviron(), nullptr, 0,
268 std::string Executable =
271 Executable.c_str(),
282 ExecuteAndWait(Executable, argv, getEnviron(), nullptr, /*secondsToWait=*/1, 0,
288 std::string Executable = "i_dont_exist";
289 const char *argv[] = { Executable.c_str(), nullptr };
294 int RetCode = ExecuteAndWait(Executable, argv, nullptr, nullptr, 0, 0
    [all...]
  /external/clang/lib/Driver/
Job.cpp 31 const char *Executable, const ArgStringList &Arguments,
33 : Source(Source), Creator(Creator), Executable(Executable),
132 Out.push_back(Executable);
140 Out.push_back(Executable);
159 printArg(OS, Executable, /*Quote=*/true);
165 Args = ArrayRef<const char *>(ArgsRespFile).slice(1); // no executable name
236 Argv.push_back(Executable);
240 return llvm::sys::ExecuteAndWait(Executable, Argv.data(), /*env*/ nullptr,
267 return llvm::sys::ExecuteAndWait(Executable, Argv.data(), /*env*/ nullptr
    [all...]
  /libcore/ojluni/src/main/java/java/lang/reflect/
Parameter.java 47 private final Executable executable; field in class:Parameter
55 * absent, however, then {@code Executable} uses this constructor
60 * @param executable The executable which defines this parameter.
65 Executable executable,
69 this.executable = executable;
74 * Compares based on the executable and the index
    [all...]
  /art/runtime/native/
java_lang_reflect_Executable.cc 91 Handle<mirror::Method> executable = hs.NewHandle(soa.Decode<mirror::Method>(javaMethod)); local
92 ArtMethod* art_method = executable.Get()->GetArtMethod();
165 PointerToLowMemUInt32(executable.Get()),
325 FAST_NATIVE_METHOD(Executable, compareMethodParametersInternal,
327 FAST_NATIVE_METHOD(Executable, getAnnotationNative,
329 FAST_NATIVE_METHOD(Executable, getDeclaredAnnotationsNative,
331 FAST_NATIVE_METHOD(Executable, getParameterAnnotationsNative,
333 FAST_NATIVE_METHOD(Executable, getMethodNameInternal, "()Ljava/lang/String;"),
334 FAST_NATIVE_METHOD(Executable, getMethodReturnTypeInternal, "()Ljava/lang/Class;"),
335 FAST_NATIVE_METHOD(Executable, getParameterTypesInternal, "()[Ljava/lang/Class;")
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
fdpic-stack-default.d 7 Elf file type is EXEC \(Executable file\)
fdpic-stack-set.d 7 Elf file type is EXEC \(Executable file\)
fdpic-stack-size.d 7 Elf file type is EXEC \(Executable file\)
  /external/clang/include/clang/Driver/
Job.h 41 /// Command - An executable path/name and argument vector to
50 /// The executable to run.
51 const char *Executable;
54 /// argument, which will be the executable).
85 Command(const Action &Source, const Tool &Creator, const char *Executable,
114 const char *getExecutable() const { return Executable; }
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/
gc-got-relocs.d 8 # Executable with got related relocs against global sysmbol gced.
gc-tls-relocs.d 9 # Executable with tls related relocs against global and local symbol gced.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
tls-ie-8e1.d 9 # Executable with a single R_CRIS_32_IE, defined in the executable.
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ParameterTest.java 29 import java.lang.reflect.Executable;
116 private static void checkSingleStringParameter(Executable executable) {
117 ExecutableTestHelper helper = new ExecutableTestHelper(executable);
140 private static void checkSingleStringParameter_withMetadata(Executable executable) {
141 ExecutableTestHelper helper = new ExecutableTestHelper(executable);
173 private static void checkGenericParameter(Executable executable) {
174 ExecutableTestHelper helper = new ExecutableTestHelper(executable);
904 private final Executable executable; field in class:ParameterTest.ExecutableTestHelper
    [all...]
  /frameworks/native/cmds/installd/
Android.mk 4 # OTA Executable

Completed in 466 milliseconds

1 2 3 4 5