Searched defs:system (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/dalvik/system/
H A DVMRuntime_Delegate.java17 package dalvik.system;
29 // Copied from libcore/libdvm/src/main/java/dalvik/system/VMRuntime
/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.java83 * The system's evaluation of how well the activity matches the
142 * @hide Target comes from system process?
144 public boolean system; field in class:ResolveInfo
284 system = orig.system;
345 dest.writeInt(system ? 1 : 0);
390 system = source.readInt() != 0;
/frameworks/base/core/java/android/util/
H A DLog.java99 void onTerribleFailure(String tag, TerribleFailure what, boolean system); argument
103 public void onTerribleFailure(String tag, TerribleFailure what, boolean system) {
104 RuntimeInit.wtf(tag, what, system);
200 * if your tag should be logged. You can change the default level by setting a system property:
249 * Depending on system configuration, a report may be added to the
290 boolean system) {
294 sWtfHandler.onTerribleFailure(tag, what, system);
298 static void wtfQuiet(int logId, String tag, String msg, boolean system) { argument
300 sWtfHandler.onTerribleFailure(tag, what, system);
289 wtf(int logId, String tag, String msg, Throwable tr, boolean localStack, boolean system) argument
/frameworks/base/core/java/com/android/internal/os/
H A DRuntimeInit.java31 import dalvik.system.VMRuntime;
125 * the "java.util.logging.config.class" system property works. We
126 * can't use the system property here since the logger has almost
247 * to run the system.
336 * the process to terminate (depends on system settings).
341 public static void wtf(String tag, Throwable t, boolean system) { argument
344 mApplicationObject, tag, system, new ApplicationErrorReport.CrashInfo(t))) {
H A DProcessCpuTracker.java68 /** Stores user time and system time in 100ths of a second. */
71 /** Stores user time and system time in 100ths of a second. Used for
298 // Total system time is simply system time.
546 * both user and system code. Safe to call without lock held.
594 String file = readFile("/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state", '\0');
788 int totalTime, int user, int system, int iowait, int irq, int softIrq,
792 printRatio(pw, user+system+iowait+irq+softIrq, totalTime);
802 printRatio(pw, system, totalTime);
787 printProcessCPU(PrintWriter pw, String prefix, int pid, String label, int totalTime, int user, int system, int iowait, int irq, int softIrq, int minFaults, int majFaults) argument
/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java168 * Further hardware renderer disabling for the system process.
182 public static void disable(boolean system) { argument
184 if (system) {
284 * Loads system properties used by the renderer. This method is invoked
285 * whenever system properties are modified. Implementations can use this
434 * Invoke this method when the system is running out of memory. This
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java357 * resource files on the system. Upon completion, the activity will
777 // system.
2020 * installed or disabled, the user / system wide defaults will apply.
2268 * Whether this engine is a part of the system
2273 public boolean system; field in class:TextToSpeech.EngineInfo
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java78 * Retrieve the system's default/global activity manager.
85 * Convenience for checking whether the system is ready. For internal use only.
1415 boolean system = data.readInt() != 0;
1417 boolean res = handleApplicationWtf(app, tag, system, ci);
4170 public boolean handleApplicationWtf(IBinder app, String tag, boolean system, argument
4178 data.writeInt(system ? 1 : 0);
H A DActivityThread.java133 import dalvik.system.CloseGuard;
134 import dalvik.system.VMDebug;
135 import dalvik.system.VMRuntime;
1844 dalvik.system.VMRuntime.getRuntime().startJitCompilation();
2351 // the "debug.use-second-display" system property as a substring, then show
3776 // If the system process has died, it's game over for everyone.
4331 * Before spawning a new process, reset the time zone to be the system time zone.
4332 * This needs to be done because the system time zone could have changed after the
4334 * system time zone.
4344 * Update the system configuratio
5076 attach(boolean system) argument
[all...]
H A DIActivityManager.java272 public boolean handleApplicationWtf(IBinder app, String tag, boolean system, argument
287 // Retrieve running application processes in the system
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java208 import dalvik.system.VMRuntime;
242 // File that stores last updated system version and called preboot receivers
379 /** All system services */
568 * system was ready. We don't start them at that point, but ensure they
1017 * Set if we are shutting down the system, similar to sleeping.
1052 * Allow the current computed overall memory level of the system to go down?
1182 * Set to true after the system has finished booting.
1934 "Unable to find android system package", e);
2084 File systemDir = new File(dataDir, "system");
2181 // We need to tell all apps about the system propert
11776 handleApplicationWtf(final IBinder app, final String tag, boolean system, final ApplicationErrorReport.CrashInfo crashInfo) argument
[all...]

Completed in 297 milliseconds