HomeSort by relevance Sort by last modified time
    Searched full:system (Results 1851 - 1875 of 46866) sorted by null

<<71727374757677787980>>

  /tools/loganalysis/src/com/android/loganalysis/item/
TopItem.java 32 public static final String SYSTEM = "SYSTEM";
47 USER, NICE, SYSTEM, IDLE, IOW, IRQ, SIRQ, TOTAL, TEXT));
89 * Get the number of system ticks.
92 return (Integer) getAttribute(SYSTEM);
96 * Set the number of system ticks.
98 public void setSystem(int system) {
99 setAttribute(SYSTEM, system);
  /art/test/602-deoptimizeable/src/
Main.java 64 System.loadLibrary(args[0]);
79 System.out.println("Failure 1!");
80 System.exit(0);
98 System.out.println("Failure 2!");
99 System.exit(0);
102 e.printStackTrace(System.out);
114 System.out.println("Failure 3!");
115 System.exit(0);
130 e.printStackTrace(System.out);
138 System.out.println("hashCode() method not invoked!")
    [all...]
  /cts/tools/dasm/src/dasm/
Main.java 61 System.err.println("Command line option " + opt
63 System.exit(-1);
93 System.err.println("DASM Error: " + e.getMessage());
96 System.err.println("Exception <" + e.getClass().getName() + ">"
105 System.err.println("Found " + dAsm.errorCount() + " errors "
143 System.err.println("Cannot create directory " + dest_dir);
158 System.err.println("Exception <" + e.getClass().getName() + ">"
173 System.out.println("Generated: " + out_file.getPath());
193 System.exit(-1);
199 System.exit(0)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/CpuIo2OnCpuIoThunk/
CpuIo2OnCpuIoThunk.h 25 Enables a driver to read memory-mapped registers in the PI System memory space.
34 @retval EFI_SUCCESS The data was read from or written to the EFI system.
35 @retval EFI_INVALID_PARAMETER Width is invalid for this EFI system. Or Buffer is NULL.
37 Or,The address range specified by Address, Width, and Count is not valid for this EFI system.
51 Enables a driver to write memory-mapped registers in the PI System memory space.
60 @retval EFI_SUCCESS The data was read from or written to the EFI system.
61 @retval EFI_INVALID_PARAMETER Width is invalid for this EFI system. Or Buffer is NULL.
63 Or,The address range specified by Address, Width, and Count is not valid for this EFI system.
87 @retval EFI_SUCCESS The data was read from or written to the EFI system.
88 @retval EFI_INVALID_PARAMETER Width is invalid for this EFI system. Or Buffer is NULL.
    [all...]
  /external/annotation-tools/asmx/test/perf/org/objectweb/asm/xml/
XMLPerfTest.java 61 System.err.println("Comparing XSLT performance for ASM XSLT");
62 System.err.println("This may take 20 to 30 minutes\n");
66 System.err.println(args[0] + " must be directory");
77 System.err.println(ENGINES[i]);
83 System.err.println();
89 System.setProperty("javax.xml.transform.TransformerFactory", engine);
118 long l1 = System.currentTimeMillis();
138 System.err.println();
140 System.err.println(ex);
144 long l2 = System.currentTimeMillis()
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/serializable/
SerializableChecker.java 64 System.out.println("Woops! Can't get class info for Serializable and Throwable.");
79 System.out.print(" - can't write file!");
103 System.out.print(className + " (" + Modifier.toString(m) + ") - ");
110 System.out.print("no serialVersionUID - ");
130 System.out.println("Eror writing test objects:" + e.toString());
146 System.out.println("Error reading test objects:" + e.toString());
153 System.out.println("Object " + i + " failed behavior test.");
158 System.out.print("test passed.");
163 System.out.print("no test.");
168 System.out.println()
    [all...]
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/
HandleMock.java 7 import org.chromium.mojo.system.Core;
8 import org.chromium.mojo.system.Core.WaitResult;
9 import org.chromium.mojo.system.DataPipe;
10 import org.chromium.mojo.system.DataPipe.ConsumerHandle;
11 import org.chromium.mojo.system.DataPipe.ProducerHandle;
12 import org.chromium.mojo.system.Handle;
13 import org.chromium.mojo.system.MessagePipeHandle;
14 import org.chromium.mojo.system.MojoResult;
15 import org.chromium.mojo.system.ResultAnd;
16 import org.chromium.mojo.system.SharedBufferHandle
    [all...]
  /external/lisa/libs/utils/android/
screen.py 19 from system import System
48 '--uri content://settings/system '\
52 '--uri content://settings/system '\
58 '--uri content://settings/system '\
62 '--uri content://settings/system '\
77 '--uri content://settings/system '\
87 '--uri content://settings/system '\
103 '--uri content://settings/system '\
119 '--uri content://settings/system '\
    [all...]
  /external/lisa/libs/utils/android/workloads/
vellamo.py 27 from android import Screen, System, Workload
99 System.force_stop(self._target, self.package, clear=True)
105 os.system(self._adb('logcat -c'));
121 'logcat ActivityManager:* System.out:I *:S BENCH:*'\
126 System.start_activity(self._target, self.package, self.activity)
130 System.tap(self._target, 80, 86)
133 System.tap(self._target, 50, 67)
136 System.tap(self._target, 46, 78)
138 System.tap(self._target, test_x, test_y)
140 System.hswipe(self._target, 10, 80, duration=100, swipe_right=False
    [all...]
  /external/wayland/doc/publican/sources/
Compositors.xml 3 <!ENTITY % BOOK_ENTITIES SYSTEM "Wayland.ent">
13 <link linkend="sect-Compositors-System-Compositor">system compositor</link>
14 can be used for booting the system, handling multiple user switching, a
25 <section id="sect-Compositors-System-Compositor">
26 <title>System Compositor</title>
28 A system compositor can run from early boot until shutdown.
29 It effectively replaces the kernel vt system, and can tie in
33 A system compositor can host different types of session
38 A linux implementation of a system compositor will typicall
    [all...]
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 58 e.printStackTrace(System.err);
67 System.err.println(NO_SYSTEM_ERROR_CODE);
68 throw new AndroidException("Can't connect to activity manager; is the system running?");
73 System.err.println(NO_SYSTEM_ERROR_CODE);
74 throw new AndroidException("Can't connect to package manager; is the system running?");
104 System.err.println("Open attempt after active for: " + path);
108 //System.err.println("Opening file: " + file.getAbsolutePath());
118 System.err.println(msg);
128 String msg = "System server has no access to file context " + tcon;
129 System.err.println(msg + " (from path " + file.getAbsolutePath(
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppsQueryHelperTests.java 40 List<String> apps = mAppsQueryHelper.queryApps(0, true, UserHandle.SYSTEM);
43 apps = mAppsQueryHelper.queryApps(0, false, UserHandle.SYSTEM);
49 true, UserHandle.SYSTEM);
53 false, UserHandle.SYSTEM);
59 AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM, true, UserHandle.SYSTEM);
63 AppsQueryHelper.GET_APPS_WITH_INTERACT_ACROSS_USERS_PERM, false, UserHandle.SYSTEM);
71 true, UserHandle.SYSTEM);
77 false, UserHandle.SYSTEM);
82 // Test query system IMEs
94 // Test query only system apps required for system use
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
NetProperties.java 56 * Loads the default networking system properties
60 String fname = System.getProperty("java.home");
79 * Get a networking system property. If no system property was defined
85 * to the system properties.
92 return System.getProperty(key, def);
100 * Get an Integer networking system property. If no system property was
107 * to the system properties.
115 val = System.getProperty(key, props.getProperty(key))
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Info.java 40 System.out.println("Header attributes :");
41 System.out.print(dict.mOptions.toString(2, plumbing));
61 System.out.println("Words in the dictionary : " + wordCount);
62 System.out.println("Bigram count : " + bigramCount);
63 System.out.println("Shortcuts : " + shortcutCount + " (out of which " + whitelistCount
70 System.out.println(word + " is not in the dictionary");
73 System.out.println("Word: " + word);
74 System.out.println(" Freq: " + ptNode.getProbability());
76 System.out.println(" Is not a word");
79 System.out.println(" Is possibly offensive")
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.4_r1-robolectric-r2.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.1.2_r1-robolectric-r1.jar 
  /art/test/074-gc-thrash/src/
Main.java 33 System.out.println("Running (" + TEST_TIME + " seconds) ...");
43 System.out.println("Sending output to " + dumpFile);
47 System.gc();
48 System.runFinalization();
49 System.gc();
55 System.out.println(iae);
57 System.out.println(ite);
61 System.out.println("Done.");
74 vmdClass = myLoader.loadClass("dalvik.system.VMDebug");
83 System.out.println("Found VMDebug but not dumpHprofData method")
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/css/common/
css_pm.c 92 * the system power domain uninitialized as either the primary would have taken
93 * care of it as part of cold boot or the first core awakened from system
98 /* Assert that the system power domain need not be initialized */
151 /* Perform system domain state saving if issuing system suspend */
176 /* Perform system domain restore if woken up from system suspend */
189 * Handlers to shutdown/reboot the system
231 * Handler called to return the 'req_state' for system suspend.
238 * System Suspend is supported only if the system power domain nod
    [all...]
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 3 using System;
4 using System.IO;
120 class CrcOutStream : System.IO.Stream
150 public System.DateTime Time;
214 System.Console.Write(" ");
215 System.Console.Write(s);
221 System.Console.Write(" MIPS");
232 System.Console.Write(" KB/s ");
247 System.Console.WriteLine("\nError: dictionary size for benchmark must be >= 19 (512 KB)");
250 System.Console.Write("\n Compressing Decompressing\n\n");
    [all...]
  /development/vndk/tools/definition-tool/tests/
test_elf_linker.py 59 node = graph.get_lib('/system/lib/libc.so')
61 self.assertEqual('/system/lib/libc.so', node.path)
63 node = graph.get_lib('/system/lib64/libdl.so')
65 self.assertEqual('/system/lib64/libdl.so', node.path)
79 paths = ['/system/lib/libc.so', '/system/lib/libdl.so']
87 paths = ['/no/such/path.so', '/system/lib64/libdl.so']
90 self.assertEqual(['/system/lib64/libdl.so'],
108 node = gb.graph.get_lib('/system/lib/libc.so')
109 self.assertEqual(['/system/lib/libdl.so', '/system/lib/libm.so']
    [all...]
  /prebuilts/abi-dumps/vndk/28/32/x86/source-based/
libpagemap.so.lsdump.gz 
  /prebuilts/abi-dumps/vndk/28/64/x86/source-based/
libpagemap.so.lsdump.gz 
  /prebuilts/abi-dumps/vndk/28/64/x86_x86_64/source-based/
libpagemap.so.lsdump.gz 

Completed in 678 milliseconds

<<71727374757677787980>>