Searched refs:enable (Results 1 - 12 of 12) sorted by relevance

/dalvik/vm/
H A DAllocTracker.h57 * Dump the tracked allocations to the log file. If "enable" is set, this
58 * will enable tracking if it's not already on.
60 void dvmDumpTrackedAllocations(bool enable);
H A DDdm.h40 void dvmDdmSetThreadNotification(bool enable);
H A DDdm.cpp220 void dvmDdmSetThreadNotification(bool enable) argument
228 gDvm.ddmThreadNotification = enable;
230 if (enable) {
H A DAndroid.mk22 # If you enable or disable optional features here (or in Dvm.mk),
95 ifeq ($(dvm_arch),x86) # For x86, we enable JIT on host too
H A DProfile.cpp239 static void updateActiveProfilers(ExecutionSubModes newMode, bool enable) argument
246 newValue = oldValue + (enable ? 1 : -1);
255 if (enable) {
938 /* If we could not map the emulator trace page, then do not enable tracing */
H A DAllocTracker.cpp595 * If "enable" is set, we try to enable the feature if it's not already
598 void dvmDumpTrackedAllocations(bool enable) argument
600 if (enable)
H A DGlobals.h49 bool enable; /* enable or disable */ member in struct:AssertionControl
56 * there are callers like dexopt that want to enable/disable without
H A DInit.cpp463 * "pkgOrClass" is the last part of an enable/disable line. For a package
470 * enable assertions for a package and then disable them for one class in
473 static bool enableAssertions(const char* pkgOrClass, bool enable) argument
476 pCtrl->enable = enable;
479 /* enable or disable for all system classes */
485 /* global enable/disable for all but system */
538 /* global enable for all but system */
543 pCtrl->enable = true;
1131 /* Need to enable blockin
[all...]
H A DDvm.mk18 # If you enable or disable optional features here, make sure you do
/dalvik/vm/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp25 * public static void threadNotify(boolean enable)
32 bool enable = (args[0] != 0); local
34 //ALOGI("ddmThreadNotification: %d", enable);
35 dvmDdmSetThreadNotification(enable);
105 * public static void enableRecentAllocations(boolean enable)
113 bool enable = (args[0] != 0); local
115 if (enable)
H A Djava_lang_Class.cpp37 bool enable = false; local
76 className, pkgLen, pCtrl->pkgOrClass, pCtrl->enable);
77 enable = pCtrl->enable;
90 className, pCtrl->enable);
91 enable = pCtrl->enable;
95 className, pCtrl->enable);
96 enable = pCtrl->enable;
[all...]
/dalvik/vm/interp/
H A DInterp.cpp1454 void updateInterpBreak(Thread* thread, ExecutionSubModes subMode, bool enable) argument
1460 if (enable)
1479 void updateAllInterpBreak(ExecutionSubModes subMode, bool enable) argument
1486 updateInterpBreak(thread, subMode, enable);
1694 * When we hit a specific method, enable verbose instruction logging.

Completed in 4084 milliseconds