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

1 2 3 4 5 6

  /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 32 // C++ mirror of java.lang.reflect.Executable.
33 class MANAGED Executable : public AccessibleObject {
56 return MemberOffset(OFFSETOF_MEMBER(Executable, art_method_));
59 return MemberOffset(OFFSETOF_MEMBER(Executable, declaring_class_));
62 return MemberOffset(OFFSETOF_MEMBER(Executable, declaring_class_of_overridden_method_));
65 return MemberOffset(OFFSETOF_MEMBER(Executable, access_flags_));
68 return MemberOffset(OFFSETOF_MEMBER(Executable, dex_method_index_));
72 DISALLOW_IMPLICIT_CONSTRUCTORS(Executable);
method.h 21 #include "executable.h"
29 class MANAGED Method : public Executable {
61 class MANAGED Constructor: public Executable {
  /art/test/993-breakpoints/src/art/
Breakpoint.java 19 import java.lang.reflect.Executable;
27 public final Executable method;
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
83 public void setBreakpoint(Executable method, long location) {
94 public void clearBreakpoint(Executable method, long location) {
104 Executable breakpointReached,
115 Executable breakpointReached,
144 public static native void setBreakpoint(Executable m, long loc);
145 public static void setBreakpoint(Executable m, LineNumber l)
    [all...]
  /art/test/994-breakpoint-line/src/art/
Breakpoint.java 19 import java.lang.reflect.Executable;
27 public final Executable method;
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
83 public void setBreakpoint(Executable method, long location) {
94 public void clearBreakpoint(Executable method, long location) {
104 Executable breakpointReached,
115 Executable breakpointReached,
144 public static native void setBreakpoint(Executable m, long loc);
145 public static void setBreakpoint(Executable m, LineNumber l)
    [all...]
Test994.java 20 import java.lang.reflect.Executable;
38 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) {
49 "notifyBreakpointReached", Thread.class, Executable.class, Long.TYPE),
  /art/test/995-breakpoints-throw/src/art/
Breakpoint.java 19 import java.lang.reflect.Executable;
27 public final Executable method;
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
83 public void setBreakpoint(Executable method, long location) {
94 public void clearBreakpoint(Executable method, long location) {
104 Executable breakpointReached,
115 Executable breakpointReached,
144 public static native void setBreakpoint(Executable m, long loc);
145 public static void setBreakpoint(Executable m, LineNumber l)
    [all...]
Test995.java 20 import java.lang.reflect.Executable;
30 public void breakpointReached(Executable e, long loc);
54 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) {
65 public void breakpointReached(Executable e, long loc) {
84 "notifyBreakpointReached", Thread.class, Executable.class, Long.TYPE),
  /art/test/996-breakpoint-obsolete/src/art/
Breakpoint.java 19 import java.lang.reflect.Executable;
27 public final Executable method;
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
83 public void setBreakpoint(Executable method, long location) {
94 public void clearBreakpoint(Executable method, long location) {
104 Executable breakpointReached,
115 Executable breakpointReached,
144 public static native void setBreakpoint(Executable m, long loc);
145 public static void setBreakpoint(Executable m, LineNumber l)
    [all...]
Test996.java 19 import java.lang.reflect.Executable;
97 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) {
113 "notifyBreakpointReached", Thread.class, Executable.class, Long.TYPE),
  /art/test/997-single-step/src/art/
Breakpoint.java 19 import java.lang.reflect.Executable;
27 public final Executable method;
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
83 public void setBreakpoint(Executable method, long location) {
94 public void clearBreakpoint(Executable method, long location) {
104 Executable breakpointReached,
115 Executable breakpointReached,
144 public static native void setBreakpoint(Executable m, long loc);
145 public static void setBreakpoint(Executable m, LineNumber l)
    [all...]
Test997.java 20 import java.lang.reflect.Executable;
50 public static void notifySingleStep(Thread thr, Executable e, long loc) {
72 "notifySingleStep", Thread.class, Executable.class, Long.TYPE),
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-pie/
vaddr-1.d 8 Type: EXEC \(Executable file\)
  /art/test/595-profile-saving/
profile-saving.cc 25 #include "mirror/executable.h"
40 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method);
58 ObjPtr<mirror::Executable> exec = soa.Decode<mirror::Executable>(method);
  /art/test/991-field-trace-2/src/art/
Test991.java 19 import java.lang.reflect.Executable;
32 Executable method, long location, Class<?> f_klass, Object target, Field f) {
41 Executable method, long location, Class<?> f_klass, Object target, Field f, Object value) {
50 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) {}
51 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) {}
61 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) {
67 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) {
73 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v) {
79 public void handleFieldAccess(Executable m, long l, Class<?> fk, Object t, Field f) {
88 public void handleFieldModify(Executable m, long l, Class<?> fk, Object t, Field f, Object v)
    [all...]
  /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 {
  /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 {
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
elfedit-2.d 14 Type:[ \t]+EXEC \(Executable file\)
  /art/test/990-field-trace/src/art/
Test990.java 21 import java.lang.reflect.Executable;
41 private Executable method;
47 public FieldWrite(Executable method, Object target, Field f, Object v) {
65 private Executable method;
69 public FieldRead(Executable method, Object target, Field f) {
140 Executable m, long location, Class<?> f_klass, Object target, Field f, Object value) {
148 Executable m, long location, Class<?> f_klass, Object target, Field f) {
201 Executable.class, Long.TYPE, Class.class, Object.class, Field.class),
203 Executable.class, Long.TYPE, Class.class, Object.class, Field.class, Object.class),
  /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 93 Handle<mirror::Method> executable = hs.NewHandle(soa.Decode<mirror::Method>(javaMethod)); local
94 ArtMethod* art_method = executable.Get()->GetArtMethod();
167 PointerToLowMemUInt32(executable.Get()),
327 FAST_NATIVE_METHOD(Executable, compareMethodParametersInternal,
329 FAST_NATIVE_METHOD(Executable, getAnnotationNative,
331 FAST_NATIVE_METHOD(Executable, getDeclaredAnnotationsNative,
333 FAST_NATIVE_METHOD(Executable, getParameterAnnotationsNative,
335 FAST_NATIVE_METHOD(Executable, getMethodNameInternal, "()Ljava/lang/String;"),
336 FAST_NATIVE_METHOD(Executable, getMethodReturnTypeInternal, "()Ljava/lang/Class;"),
337 FAST_NATIVE_METHOD(Executable, getParameterTypesInternal, "()[Ljava/lang/Class;")
    [all...]

Completed in 587 milliseconds

1 2 3 4 5 6