Home
last modified time | relevance | path

Searched refs:method (Results 26 – 50 of 961) sorted by relevance

12345678910>>...39

/art/tools/dmtracedump/
Dtracedump.cc142 struct MethodEntry* method; member
198 MethodEntry* method; member
296 void initMethodEntry(MethodEntry* method, int64_t methodId, const char* className, in initMethodEntry() argument
299 method->methodId = methodId; in initMethodEntry()
300 method->className = className; in initMethodEntry()
301 method->methodName = methodName; in initMethodEntry()
302 method->signature = signature; in initMethodEntry()
303 method->fileName = fileName; in initMethodEntry()
304 method->lineNum = (lineNumStr != nullptr) ? atoi(lineNumStr) : -1; in initMethodEntry()
305 method->elapsedExclusive = 0; in initMethodEntry()
[all …]
/art/test/910-methods/
Dmethods.cc34 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMethodName() argument
35 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMethodName()
77 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMethodDeclaringClass() argument
78 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMethodDeclaringClass()
90 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMethodModifiers() argument
91 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMethodModifiers()
103 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getMaxLocals() argument
104 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getMaxLocals()
116 JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jobject method) { in Java_art_Test910_getArgumentsSize() argument
117 jmethodID id = env->FromReflectedMethod(method); in Java_art_Test910_getArgumentsSize()
[all …]
/art/runtime/entrypoints/jni/
Djni_entrypoints.cc54 ArtMethod* method = self->GetCurrentMethod(&dex_pc); in artFindNativeMethodRunnable() local
55 DCHECK(method != nullptr); in artFindNativeMethodRunnable()
58 if (!method->IsNative()) { in artFindNativeMethodRunnable()
61 uint32_t method_idx = GetInvokeStaticMethodIndex(method, dex_pc); in artFindNativeMethodRunnable()
63 self, method_idx, method, kStatic); in artFindNativeMethodRunnable()
69 MaybeUpdateBssMethodEntry(target_method, MethodReference(method->GetDexFile(), method_idx)); in artFindNativeMethodRunnable()
79 DCHECK(self->IsExceptionPending()) << method->PrettyMethod(); in artFindNativeMethodRunnable()
92 method = target_method; in artFindNativeMethodRunnable()
94 DCHECK(method == self->GetCurrentMethod(/*dex_pc=*/ nullptr)); in artFindNativeMethodRunnable()
100 const void* native_code = class_linker->GetRegisteredNative(self, method); in artFindNativeMethodRunnable()
[all …]
/art/test/800-smali/smali/
Db_21869691B.smali9 .method protected constructor <init>()V
13 .end method
15 # Have an implementation for the interface method.
16 .method public a()V
19 .end method
22 .method public callB()V
26 .end method
29 .method public callB(LB21869691C;)V
33 .end method
/art/compiler/
Dcommon_compiler_test.cc61 void CommonCompilerTest::MakeExecutable(ArtMethod* method, const CompiledMethod* compiled_method) { in MakeExecutable() argument
62 CHECK(method != nullptr); in MakeExecutable()
94 LOG(INFO) << "MakeExecutable " << method->PrettyMethod() << " code=" << method_code; in MakeExecutable()
95 method->SetEntryPointFromQuickCompiledCode(method_code); in MakeExecutable()
99 class_linker_->SetEntryPointsToInterpreter(method); in MakeExecutable()
184 void CommonCompilerTest::CompileMethod(ArtMethod* method) { in CompileMethod() argument
185 CHECK(method != nullptr); in CompileMethod()
196 const DexFile& dex_file = *method->GetDexFile(); in CompileMethod()
198 Handle<mirror::ClassLoader> class_loader = hs.NewHandle(method->GetClassLoader()); in CompileMethod()
200 if (method->IsNative()) { in CompileMethod()
[all …]
/art/test/1913-get-set-local-objects/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1924-frame-pop-toggle/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1935-get-set-current-frame-jit/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1956-pop-frame-jit-calling/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1953-pop-frame/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1939-proxy-frames/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1912-get-set-local-primitive/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1966-get-set-local-objects-no-table/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1928-exception-event-exception/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1941-dispose-stress/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1916-get-set-current-frame/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1959-redefine-object-instrument/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/995-breakpoints-throw/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1971-multi-force-early-return/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1914-get-local-instance/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/997-single-step/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1911-get-local-var-table/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/993-breakpoints/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/994-breakpoint-line/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]
/art/test/1917-get-stack-frame/src/art/
DBreakpoint.java27 public final Executable method; field in Breakpoint.Manager.BP
30 public BP(Executable method) { in BP() argument
31 this(method, getStartLocation(method)); in BP()
34 public BP(Executable method, long location) { in BP() argument
35 this.method = method; in BP()
42 method.equals(((BP)other).method) && in equals()
48 return method.toString() + " @ " + getLine(); in toString()
53 return Objects.hash(method, location); in hashCode()
58 LineNumber[] lines = getLineNumberTable(method); in getLine()
79 Breakpoint.setBreakpoint(b.method, b.location); in setBreakpoints()
[all …]

12345678910>>...39