/docs/source.android.com/en/devices/architecture/ |
index.html | 27 Android system architecture contains the following components: 32 <p class="img-caption"><strong>Figure 1.</strong> Android system architecture</p> 43 framework to cross process boundaries and call into the Android system services 44 code. This enables high level framework APIs to interact with Android system 48 <h2 id="system-services">System services</h2> 49 <p>System services are modular, focused components such as Window Manager, 51 framework APIs communicates with system services to access the underlying 52 hardware. Android includes two groups of services: <em>system</em> (such as 60 the higher level system. HAL implementations are packaged into modules an [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
TraceDebugEventListener.java | 41 public void enterRule(String ruleName) { System.out.println("enterRule "+ruleName); } 42 public void exitRule(String ruleName) { System.out.println("exitRule "+ruleName); } 43 public void enterSubRule(int decisionNumber) { System.out.println("enterSubRule"); } 44 public void exitSubRule(int decisionNumber) { System.out.println("exitSubRule"); } 45 public void location(int line, int pos) {System.out.println("location "+line+":"+pos);} 53 System.out.println("consumeNode "+ID+" "+text+" "+type); 60 System.out.println("LT "+i+" "+ID+" "+text+" "+type); 65 public void nilNode(Object t) {System.out.println("nilNode "+adaptor.getUniqueID(t));} 71 System.out.println("create "+ID+": "+text+", "+type); 78 System.out.println("create "+ID+": "+tokenIndex) [all...] |
/external/autotest/client/tests/dbt2/ |
dbt2.py | 24 utils.system('cp -pR ' + self.srcdir + ' ' + self.srcdir + '.mysql') 32 utils.system('cp -pR ' + self.srcdir + ' ' + self.srcdir + '.pgsql') 39 utils.system('ln -s %s %s' % 41 utils.system('ln -s %s %s' % 58 utils.system(self.srcdir + '.mysql/scripts/mysql/build_db.sh -g -w 1') 59 utils.system(self.srcdir + '.mysql/scripts/run_workload.sh ' + args) 63 utils.system('%s/deps/pgpool/pgpool/bin/pgpool -f %s/../pgpool.conf' \ 66 utils.system('%s/deps/pgpool/pgpool/bin/pgpool stop' % self.autodir) 70 utils.system(self.srcdir + '.pgsql/scripts/pgsql/build_db.sh -g -w 1') 71 utils.system(self.srcdir + '.pgsql/scripts/run_workload.sh ' + args [all...] |
/external/libjpeg-turbo/java/ |
TJExample.java | 47 System.out.println("\nUSAGE: java " + classname + " <Input file> <Output file> [options]\n"); 48 System.out.println("Input and output files can be any image format that the Java Image I/O"); 49 System.out.println("extensions understand. If either filename ends in a .jpg extension, then"); 50 System.out.println("TurboJPEG will be used to compress or decompress the file.\n"); 51 System.out.println("Options:\n"); 52 System.out.println("-scale M/N = if the input image is a JPEG file, scale the width/height of the"); 53 System.out.print(" output image by a factor of M/N (M/N = "); 55 System.out.print(sf[i].getNum() + "/" + sf[i].getDenom()); 57 System.out.print(" or "); 60 System.out.print(", ") [all...] |
/external/r8/src/test/examples/sync/ |
Sync.java | 48 System.out.println("static"); 50 System.out.println("end"); 54 System.out.println("instance"); 56 System.out.println("end"); 60 System.out.println("manual"); 64 System.out.println("manual"); 68 System.out.println("trycatch"); 74 System.out.println("end"); 78 System.out.println("caught & end"); 81 System.out.println("caught other") [all...] |
/tools/tradefederation/core/src/com/android/tradefed/command/ |
Verify.java | 66 System.err.println(ArgsOptionParser.getOptionHelp(false, verify)); 67 System.exit(EXIT_STATUS_OKAY); 72 System.exit(EXIT_STATUS_OKAY); 75 System.exit(EXIT_STATUS_FAILED); 79 System.err.flush(); 80 System.out.flush(); 97 System.err.format("Caught exception while parsing \"%s\"\n", cmdFile); 98 System.err.println(t); 115 System.out.format("Successfully parsed %d commands from cmdfile %s\n", 125 System.out.format(format, i++, cmd) [all...] |
/art/test/079-phantom/src/ |
Main.java | 27 System.out.println("sleep interrupted"); 32 System.out.println("start"); 37 System.out.println("done"); 48 System.out.println("nulling 1"); 54 System.out.println("got unexpected InterruptedException e: " + e); 57 System.out.println("nulling 2"); 62 System.out.println("nulling 3"); 67 System.out.println("nulling 4"); 73 System.out.println("got unexpected InterruptedException e: " + e);
|
/art/test/946-obsolete-throw/src/art/ |
Test946.java | 25 System.out.println("hello"); 27 System.out.println("goodbye"); 33 // System.out.println("Hello - Transformed"); 35 // System.out.println("Goodbye - Transformed"); 79 System.out.println("transforming calling function"); 86 t.sayHi(() -> { System.out.println("Not doing anything here"); }); 90 System.out.println("Received error : " + e); 91 e.printStackTrace(System.out); 93 t.sayHi(() -> { System.out.println("Not doing anything here"); });
|
/dalvik/dx/tests/087-ssa-local-vars/ |
Blort.java | 13 System.out.println("foo"); 20 System.out.println("string -> object"); 21 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length); 22 System.out.println("object -> string"); 23 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length); 24 System.out.println("object -> string (modified)"); 27 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length); 30 System.out.println("caught ArrayStoreException (expected)"); 40 System.err.println(foo);
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
Bds.h | 33 system or system utility should be loaded and invoked. This function call
34 also optionally make the use of user input to determine the operating system
35 or system utility to be loaded and invoked. When the DXE Core has dispatched
38 the selected operating system or system utility. During this process,
60 /// system or a system utility. If there are not enough drivers initialized
64 /// the boot device can be used to load and invoke an OS or a system utility.
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
InstanceOnlyModifierDebuggee.java | 35 System.out.println( 43 System.out.println("Catch TestException"); 48 System.out.println( 54 System.out.println( 72 System.out.println("Set INSTANCE_ONLY to the last instance"); 74 System.out.println("Set INSTANCE_ONLY to the last instance"); 83 System.out.println("Fire breakpoint, method entry/exit events"); 88 System.out.println("Fire caught exception events"); 93 System.out.println("Fire field access/modification events");
|
/external/autotest/server/cros/multimedia/ |
system_facade_adapter.py | 5 """An adapter to remotely access the system facade on DUT.""" 9 """SystemFacadeRemoteAdapter is an adapter to remotely control DUT system. 28 """Gets the proxy to DUT system facade. 30 @return XML RPC proxy to DUT system facade. 33 return self._proxy.system 54 A dictionary with 'user', 'nice', 'system' and 'idle' values. 59 'system': 254768, 77 """Returns the total memory available in the system in MBytes.""" 82 """Returns the currently free memory in the system in MBytes."""
|
/external/clang/test/Index/ |
retain-comments-from-system-headers.c | 3 #include "retain-comments-from-system-headers.h" 13 // RUN: c-index-test -test-load-source all %s -fretain-comments-from-system-headers -I %S/Inputs | FileCheck %s -check-prefix=CHECK-RETAIN 16 // RUN: c-index-test -test-load-source all %s -I %S/Inputs -fmodules -fmodules-cache-path=%t/cache -fmodule-map-file=%S/Inputs/retain-comments-from-system-headers-module.map | FileCheck %s 17 // RUN: c-index-test -test-load-source all %s -fretain-comments-from-system-headers -I %S/Inputs -fmodules -fmodules-cache-path=%t/cache -fmodule-map-file=%S/Inputs/retain-comments-from-system-headers-module.map | FileCheck %s -check-prefix=CHECK-RETAIN 19 // CHECK: retain-comments-from-system-headers.h:7:5: FunctionDecl=system_function:7:5 Extent=[7:1 - 7:27] 20 // CHECK: retain-comments-from-system-headers.c:9:5: FunctionDecl=user_function:9:5 RawComment=[/**\n * user_function\n * \param a Aaa.\n */] RawCommentRange=[5:1 - 8:4] BriefComment=[user_function] 22 // CHECK-RETAIN: retain-comments-from-system-headers.h:7:5: FunctionDecl=system_function:7:5 RawComment=[/**\n * system_function\n * \param a Aaa.\n */] RawCommentRange=[3:1 - 6:4] BriefComment=[system_function] 23 // CHECK-RETAIN: retain-comments-from-system-headers.c:9:5: FunctionDecl=user_function:9:5 RawComment=[/**\n * user_function\n * \param a Aaa.\n */] RawCommentRange=[5:1 - 8:4] BriefComment=[user_function]
|
/external/conscrypt/openjdk/src/main/java/org/conscrypt/ |
NativeLibraryUtil.java | 35 * A Utility to Call the {@link System#load(String)} or {@link System#loadLibrary(String)}. 36 * Because the {@link System#load(String)} and {@link System#loadLibrary(String)} are both 38 * In OSGi environment, we need this helper to delegate the calling to {@link System#load(String)} 46 * Delegate the calling to {@link System#load(String)} or {@link System#loadLibrary(String)}. 52 System.load(libName); 54 System.loadLibrary(libName);
|
/external/r8/src/test/examples/trycatch/ |
TryCatch.java | 40 System.out.println(result); 41 System.out.println(firstJunk); 42 System.out.println(secondJunk); 66 System.out.println("Error!"); 96 System.out.println("Error!"); 149 System.out.println(tryCatchPhi(-1)); 150 System.out.println(tryCatchPhi(0)); 151 System.out.println(tryCatchPhi(1)); 155 System.out.print("Success!");
|
/external/zlib/src/contrib/dotzlib/DotZLib/ |
DotZLib.csproj | 68 Name = "System"
69 AssemblyName = "System"
70 HintPath = "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\System.dll"
73 Name = "System.Data"
74 AssemblyName = "System.Data"
75 HintPath = "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\System.Data.dll"
78 Name = "System.XML"
79 AssemblyName = "System.Xml"
80 HintPath = "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\System.XML.dll"
|
/frameworks/base/media/java/android/media/ |
MediaTimestamp.java | 21 * and the system time. It contains the media clock rate, together with the media timestamp 22 * of an anchor frame and the system time when that frame was presented or is committed 28 * is available to the system, but cannot account for any delay unknown to the implementation. 47 * Get the {@link java.lang.System#nanoTime system time} corresponding to the media time 55 * Get the rate of the media clock in relation to the system time. 57 * It is 1.0 if media clock advances in sync with the system clock; 58 * greater than 1.0 if media clock is faster than the system clock; 59 * less than 1.0 if media clock is slower than the system clock.
|
/libcore/ojluni/src/test/java/time/test/java/time/chrono/ |
TestChronologyPerf.java | 43 long start = System.nanoTime(); 45 long end = System.nanoTime(); 47 System.out.printf(" Cold Duration of Chronology.getAvailableChronologies(): %s%n", d); 49 start = System.nanoTime(); 51 end = System.nanoTime(); 53 System.out.printf(" Warm Duration of Chronology.getAvailableChronologies(): %s%n", d); 55 start = System.nanoTime(); 57 end = System.nanoTime(); 59 System.out.printf(" Warm Duration of HijrahDate.date(1434, 1, 1): %s%n", d);
|
/system/tools/hidl/c2hal/ |
README.md | 29 c2hal -r android.hardware:hardware/interfaces -p android.hardware.baz@1.0 system/tools/hidl/c2hal/test/test.h 32 c2hal -r android.hardware:hardware/interfaces -p android.hardware.simple@1.0 system/tools/hidl/c2hal/test/simple.h 38 python3 system/tools/hidl/c2hal/test/build_all.py ~/android/master/hardware/libhardware/include/hardware/ 41 python3 system/tools/hidl/c2hal/test/build_all.py -g ~/android/master/frameworks/native/opengl/include/EGL/ 42 python3 system/tools/hidl/c2hal/test/build_all.py -g ~/android/master/frameworks/native/opengl/include/ETC1/ 43 python3 system/tools/hidl/c2hal/test/build_all.py -g ~/android/master/frameworks/native/opengl/include/GLES/ 44 python3 system/tools/hidl/c2hal/test/build_all.py -g ~/android/master/frameworks/native/opengl/include/GLES2/ 45 python3 system/tools/hidl/c2hal/test/build_all.py -g ~/android/master/frameworks/native/opengl/include/GLES3/ 46 python3 system/tools/hidl/c2hal/test/build_all.py -g ~/android/master/frameworks/native/opengl/include/KHR/
|
/art/test/006-args/src/ |
ArgsTest.java | 34 System.out.println("VALUES: " + Long.toHexString(mLongArray[0]) + " " 36 System.out.println("VALUES: " + mLongArray[0] + " " 39 System.out.println(j); 40 System.out.println("j = " + j); 41 System.out.println("a=" + a + " c=" + c + " d=" + d
|
/art/test/011-array-copy/src/ |
Main.java | 20 * System.arraycopy cases 36 System.out.println("string -> object"); 37 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length); 38 System.out.println("object -> string"); 39 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length); 40 System.out.println("object -> string (modified)"); 43 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length); 46 System.out.println("caught ArrayStoreException (expected)"); 95 System.arraycopy(byteArray, srcPos, byteArray, dstPos, length); 96 System.arraycopy(shortArray, srcPos, shortArray, dstPos, length) [all...] |
/art/test/032-concrete-sub/src/ |
ConcreteSub.java | 24 System.out.println("calling abs.doStuff()"); 34 System.out.println("Got expected exception from abs.doStuff()."); 43 System.out.println("class modifiers=" + absClass.getModifiers()); 48 nsme.printStackTrace(System.out); 51 System.out.println("meth modifiers=" + meth.getModifiers());
|
/art/test/092-locale/src/ |
Main.java | 37 ex.printStackTrace(System.out); 43 ex.printStackTrace(System.out); 49 ex.printStackTrace(System.out); 55 ex.printStackTrace(System.out); 61 ex.printStackTrace(System.out); 76 System.out.println("USA(" + fmt.getTimeZone().getID() + "): " 79 System.out.println("USA: first=" 92 System.out.println("France(" + fmt.getTimeZone().getID() + "): " 95 System.out.println("France: first=" 104 System.out.println("USA dfs: " + Arrays.deepToString(list)) [all...] |
/art/test/126-miranda-multidex/src/ |
MirandaClass.java | 38 System.out.println("inInterfaceDummy1"); 41 System.out.println("inInterfaceDummy2"); 44 System.out.println("inInterfaceDummy3"); 47 System.out.println("inInterfaceDummy4"); 50 System.out.println("inInterfaceDummy5");
|
MirandaClass2.java | 28 System.out.println("inInterfaceDummy1"); 31 System.out.println("inInterfaceDummy2"); 34 System.out.println("inInterfaceDummy3"); 37 System.out.println("inInterfaceDummy4"); 40 System.out.println("inInterfaceDummy5");
|