OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:executionmode
(Results
1 - 8
of
8
) sorted by null
/system/media/mca/filterfw/java/android/filterfw/
GraphEnvironment.java
179
* @param
executionMode
The mode of graph execution. Currently this can be either
183
public GraphRunner getRunner(int graphId, int
executionMode
) {
184
switch (
executionMode
) {
193
"Invalid execution mode " +
executionMode
+ " specified in getRunner()!");
/dalvik/vm/native/
dalvik_system_VMRuntime.cpp
68
if (gDvm.
executionMode
== kExecutionModeJit && gDvmJit.disableJit == false) {
88
if (gDvm.
executionMode
== kExecutionModeJit) {
dalvik_system_Zygote.cpp
301
if (gDvm.
executionMode
== kExecutionModeJit)
302
gDvm.
executionMode
= kExecutionModeInterpFast;
/frameworks/base/core/jni/
AndroidRuntime.cpp
488
}
executionMode
= kEMDefault;
504
executionMode
= kEMIntPortable;
506
executionMode
= kEMIntFast;
509
executionMode
= kEMJitCompiler;
677
if (
executionMode
== kEMIntPortable) {
680
} else if (
executionMode
== kEMIntFast) {
684
} else if (
executionMode
== kEMJitCompiler) {
[
all
...]
/dalvik/vm/
Init.cpp
916
gDvm.
executionMode
= kExecutionModeInterpPortable;
918
gDvm.
executionMode
= kExecutionModeInterpFast;
921
gDvm.
executionMode
= kExecutionModeJit;
930
gDvm.
executionMode
= kExecutionModeInterpFast;
[
all
...]
Globals.h
155
ExecutionMode
executionMode
;
/dalvik/vm/interp/
InterpState.h
30
enum
ExecutionMode
{
Interp.cpp
[
all
...]
Completed in 193 milliseconds