/system/sepolicy/vendor/ |
file_contexts | 4 /(vendor|system/vendor)/bin/hw/android\.hardware\.audio@2\.0-service u:object_r:hal_audio_default_exec:s0 5 /(vendor|system/vendor)/bin/hw/android\.hardware\.automotive\.audiocontrol@1\.0-service u:object_r:hal_audiocontrol_default_exec:s0 6 /(vendor|system/vendor)/bin/hw/android\.hardware\.automotive\.evs@1\.0-service u:object_r:hal_evs_default_exec:s0 7 /(vendor|system/vendor)/bin/hw/android\.hardware\.automotive\.vehicle@2\.0-service u:object_r:hal_vehicle_default_exec:s0 8 /(vendor|system/vendor)/bin/hw/android\.hardware\.bluetooth@1\.0-service u:object_r:hal_bluetooth_default_exec:s0 9 /(vendor|system/vendor)/bin/hw/android\.hardware\.biometrics\.fingerprint@2\.1-service u:object_r:hal_fingerprint_default_exec:s0 10 /(vendor|system/vendor)/bin/hw/android\.hardware\.boot@1\.0-service u:object_r:hal_bootctl_default_exec:s0 11 /(vendor|system/vendor)/bin/hw/android\.hardware\.broadcastradio@\d+\.\d+-service u:object_r:hal_broadcastradio_default_exec:s0 12 /(vendor|system/vendor)/bin/hw/android\.hardware\.camera\.provider@2\.4-service_64 u:object_r:hal_camera_default_exec:s0 13 /(vendor|system/vendor)/bin/hw/android\.hardware\.camera\.provider@2\.4-service u:object_r:hal_camera_def (…) [all...] |
/art/test/009-instanceof/src/ |
Main.java | 30 System.out.println("iface1.mFloaty = " + face1.mFloaty + " " + face1.mWahoo); 31 System.out.println("aa.mFloaty = " + aa.mFloaty + " " + aa.mWahoo); 32 System.out.println("bb.mWhoami = " + bb.mWhoami); 35 System.out.print("aaOkay (false) = "); 36 System.out.println(aaOkay); 38 System.out.print("bbOkay (true) = "); 39 System.out.println(bbOkay); 46 System.out.println("Caught a ClassCastException (expected)"); 56 System.out.print("instanceof Serializable = "); 57 System.out.println((Object)aaArray instanceof java.io.Serializable) [all...] |
/system/netd/netutils_wrappers/ |
NetUtilsWrapperTest-1.0.cpp | 37 {VALID, "/system/bin/tc qdisc del dev root"}, 38 {VALID, "/system/bin/ip -6 addr add dev r_rmnet_data6 2001:db8::/64"}, 39 {INVALID, "/system/bin/ip -6 addr add dev wlan2 2001:db8::/64"}, 40 {VALID, "/system/bin/ip6tables -w -A INPUT -j qcom_foo"}, 41 {INVALID, "/system/bin/ip6tables -w -A INPUT -j routectrl_MANGLE_INPUT"}, 42 {VALID, "/system/bin/ip6tables -w -A INPUT -i rmnet_data9 -j routectrl_MANGLE_INPUT"}, 43 {VALID, "/system/bin/ip6tables -w -F nm_pre_ip4"}, 44 {INVALID, "/system/bin/ip6tables -w -F INPUT"}, 45 {VALID, "/system/bin/ndc network interface add oem10"}, 46 {VALID, "/system/bin/ndc network interface add oem10 v_oem9"} [all...] |
/external/vogar/src/vogar/ |
Vogar.java | 54 return new File(System.getProperty("user.home", "."), name); 115 private boolean ansi = !"dumb".equals(System.getenv("TERM")); 207 System.out.println("Usage: Vogar [options]... <actions>... [-- target args]..."); 208 System.out.println(); 209 System.out.println(" <actions>: .java files, directories, or class names."); 210 System.out.println(" These should be JUnit tests, jtreg tests, Caliper benchmarks"); 211 System.out.println(" or executable Java classes."); 212 System.out.println(); 213 System.out.println(" When passing in a JUnit test class, it may have \"#method_name\""); 214 System.out.println(" appended to it, to specify a single test method.") [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
ClassPathResolver.java | 69 * device paths (e.g. "/system/framework/framework.jar"). The entry will be interpreted 342 "/system/framework/core.jar", 343 "/system/framework/ext.jar", 344 "/system/framework/framework.jar", 345 "/system/framework/android.policy.jar", 346 "/system/framework/services.jar"); 349 "/system/framework/core.jar", 350 "/system/framework/bouncycastle.jar", 351 "/system/framework/ext.jar", 352 "/system/framework/framework.jar" [all...] |
/art/test/012-math/src/ |
Main.java | 31 System.out.println("res:" +res); 33 System.out.println("res:" +res); 35 System.out.println("res:" +res); 37 System.out.println("res:" +res); 39 System.out.println("res:" +res); 41 System.out.println("res:" +res); 43 System.out.println("res:" +res); 45 System.out.println("res:" +res); 47 System.out.println("res:" +res); 49 System.out.println("res:" +res) [all...] |
/art/test/077-method-override/src/ |
Derived.java | 19 System.out.println("notDeclaredInBase: Derived"); 23 System.out.println("overridden: Derived"); 27 System.out.println("wasOverridden: Derived"); 31 System.out.println("overrideWithPublic: Derived"); 35 System.out.println("overridePublicWithProtected: Derived"); 39 System.out.println("overrideProtectedWithPublic: Derived"); 43 System.out.println("overridePublicWithPrivate: Derived"); 47 System.out.println("overridePrivateWithPublic: Derived"); 52 System.out.println("overrideVirtualWithStatic: Derived"); 57 System.out.println("overrideStaticWithVirtual: Derived") [all...] |
/art/test/077-method-override/src2/ |
Base.java | 19 System.out.println("declaredInBase: Base"); 23 System.out.println("overridden: Base"); 28 // System.out.println("wasOverridden: Base"); 35 System.out.println("overrideWithPublic: Base"); 43 System.out.println("overridePublicWithProtected: Base"); 50 System.out.println("overrideProtectedWithPublic: Base"); 58 System.out.println("overridePublicWithPrivate: Base"); 65 System.out.println("overridePrivateWithPublic: Base"); 73 System.out.println("overrideVirtualWithStatic: Base"); 80 System.out.println("overrideStaticWithVirtual: Base") [all...] |
/art/test/113-multidex/src/ |
Second.java | 19 System.out.println("Second::zcall"); 23 System.out.println("Second::zcall1"); 27 System.out.println("Second::zcall2"); 31 System.out.println("Second::zcall3"); 35 System.out.println("Second::zcall4"); 39 System.out.println("Second::zcall5"); 43 System.out.println("Second::zcall6"); 47 System.out.println("Second::zcall7"); 51 System.out.println("Second::zcall8"); 55 System.out.println("Second::zcall9") [all...] |
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/ |
Bmgr.java | 50 "Error: Could not access the Backup Manager. Is the system running?"; 52 "Error: Could not access the backup transport. Is the system running?"; 54 "Error: Could not access the Package Manager. Is the system running?"; 63 System.err.println("Exception caught:"); 76 System.err.println(BMGR_NOT_RUNNING_ERR); 149 System.err.println("Unknown command"); 160 System.out.println("Backup Manager currently " 163 System.err.println(e.toString()); 164 System.err.println(BMGR_NOT_RUNNING_ERR); 178 System.out.println("Backup Manager now " + enableToString(enable)) [all...] |
/art/test/024-illegal-access/src/ |
Main.java | 21 System.out.println("ERROR: call 1 not expected to succeed"); 24 System.out.println("Got expected failure 1"); 27 System.out.println("Got expected failure 1"); 32 System.out.println("ERROR: call 2 not expected to succeed"); 35 System.out.println("Got expected failure 2"); 40 System.out.println("ERROR: call 3 not expected to succeed"); 43 System.out.println("Got expected failure 3"); 46 System.out.println("Got expected failure 3"); 51 System.out.println("ERROR: call 4 not expected to succeed"); 54 System.out.println("Got expected failure 4") [all...] |
/art/test/420-const-class/src/ |
Main.java | 24 System.out.println("Hello from OtherWithClinit"); 32 System.out.println("Hello from OtherWithClinit2"); 40 System.out.println($opt$LoadThisClass()); 41 System.out.println($opt$LoadThisClass()); 43 System.out.println($opt$LoadOtherClass()); 44 System.out.println($opt$LoadOtherClass()); 46 System.out.println($opt$LoadSystemClass()); 47 System.out.println($opt$LoadSystemClass()); 65 return System.class; 69 System.out.println(OtherWithClinit.a) [all...] |
/art/test/972-iface-super-multidex/src/ |
Main.java | 24 System.out.println("Could not load class"); 25 e.printStackTrace(System.out); 30 System.out.println((String)m.invoke(c.newInstance(), new Object[0])); 32 System.out.println("Unknown exception occurred"); 33 e.printStackTrace(System.out); 38 System.out.println((String)m.invoke(c.newInstance(), new Object[0])); 43 System.out.println("Unexpected AME caught"); 44 e.printStackTrace(System.out); 46 System.out.println("Unexpected NSME caught"); 47 e.printStackTrace(System.out) [all...] |
/hardware/interfaces/ |
update-base-files.sh | 8 if [ ! -d $ANDROID_BUILD_TOP/system/libhidl/transport ] ; then 9 echo "Where is system/libhidl/transport?"; 19 -randroid.hidl:system/libhidl/transport" 32 # system/core 34 -o $ANDROID_BUILD_TOP/system/core/include/system/graphics-base-v1.0.h \ 37 -o $ANDROID_BUILD_TOP/system/core/include/system/graphics-base-v1.1.h \ 40 # system/media 42 -o $ANDROID_BUILD_TOP/system/media/audio/include/system/audio-base.h [all...] |
/packages/apps/Test/connectivity/sl4n/ |
README.md | 10 Building SL4N requires a system build. 30 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/bin/sl4n /system/bin 34 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/lib/libbinder.so /system/lib 35 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/lib/libchrome.so /system/lib 36 adb push <ANDROID_SOURCE_ROOT>/out/target/product/<TARGET>/system/lib/libevent.so /system/lib 40 cd <ANDROID_SOURCE_ROOT>/system/bt/servic [all...] |
/art/test/046-reflect/src/ |
Main.java | 38 System.out.println("Method name is " + meth.getName()); 39 System.out.println(" Declaring class is " 43 System.out.println(" Arg " + i + ": " + params[i].getName()); 46 System.out.println(" Exc " + i + ": " + exceptions[i].getName()); 47 System.out.println(" Return type is " + meth.getReturnType().getName()); 48 System.out.println(" Access flags are 0x" 50 //System.out.println(" GenericStr is " + meth.toGenericString()); 54 System.out.println("Field name is " + field.getName()); 55 System.out.println(" Declaring class is " 57 System.out.println(" Field type is " + field.getType().getName()) [all...] |
/art/test/050-sync-test/src/ |
Main.java | 26 System.out.println("Sleep Test"); 29 System.out.println("\nCount Test"); 32 System.out.println("\nInterrupt Test"); 37 System.out.println("GOING"); 41 System.out.println("INTERRUPT!"); 42 ie.printStackTrace(System.out); 44 System.out.println("GONE"); 58 System.out.println("INTERRUPT!"); 59 ie.printStackTrace(System.out); 65 //System.out.println("main: off and running") [all...] |
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/ |
Test.java | 77 System.out.println(j.toString()); 81 System.out.println(j.toString(4)); 82 System.out.println(XML.toString(j)); 86 System.out.println(j.toString(4)); 87 System.out.println(); 90 System.out.println(j.toString()); 91 System.out.println(JSONML.toString(j)); 92 System.out.println(); 95 System.out.println(a.toString(4)); 96 System.out.println(JSONML.toString(a)) [all...] |
/libcore/luni/src/test/java/libcore/java/net/ |
ProxySelectorTest.java | 48 System.clearProperty("ftp.proxyHost"); 49 System.clearProperty("ftp.proxyPort"); 50 System.clearProperty("ftp.nonProxyHosts"); 51 System.clearProperty("http.proxyHost"); 52 System.clearProperty("http.proxyPort"); 53 System.clearProperty("http.nonProxyHosts"); 54 System.clearProperty("https.proxyHost"); 55 System.clearProperty("https.proxyPort"); 56 System.clearProperty("https.nonProxyHosts"); 57 System.clearProperty("other.proxyHost") [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
SystemTest.java | 35 * java.lang.System#setIn(java.io.InputStream) 38 InputStream orgIn = System.in; 40 System.setIn(in); 41 assertTrue("in not set", System.in == in); 42 System.setIn(orgIn); 46 * java.lang.System#setOut(java.io.PrintStream) 49 PrintStream orgOut = System.out; 51 System.setOut(out); 52 assertTrue("out not set", System.out == out); 53 System.setOut(orgOut) [all...] |
/art/test/041-narrowing/src/ |
Main.java | 8 System.out.println(); 9 System.out.println("Double.POSITIVE_INFINITY = " 11 System.out.println("Double.NEGATIVE_INFINITY = " 13 System.out.println("Float.POSITIVE_INFINITY = " 15 System.out.println("Float.NEGATIVE_INFINITY = " 17 System.out.println("Double.NaN = " 19 System.out.println("Float.NaN = " 22 System.out.println(); 23 System.out.println("(byte) Double.NaN = " 26 System.out.println("(short) Double.NaN = [all...] |
/system/core/bootstat/ |
bootstat.rc | 3 # mirror bootloader boot reason to system boot reason 8 mkdir /data/misc/bootstat 0700 system log 10 # root.root to system.log, may be deleted after ota has settled. 11 chown system log /data/misc/bootstat/absolute_boot_time 12 chown system log /data/misc/bootstat/boot_complete 13 chown system log /data/misc/bootstat/boot_complete_no_encryption 14 chown system log /data/misc/bootstat/boot_reason 15 chown system log /data/misc/bootstat/boottime.bootloader.1BLE 16 chown system log /data/misc/bootstat/boottime.bootloader.1BLL 17 chown system log /data/misc/bootstat/boottime.bootloader.2BL [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Guid/SystemNvDataGuid/ |
SystemNvDataGuid.c | 18 GUIDs used for System Non Volatile HOB entries in the in the HOB list and FV Guids carrying
19 the System specific information.
30 EFI_GUID_STRING(&gEfiSystemNvDataHobGuid, "SYSTEM NV DATA HOB", "SYSTEM NV DATA HOB GUID for HOB list.");
31 EFI_GUID_STRING(&gEfiSystemNvDataFvGuid, "SYSTEM NV DATA FV", "SYSTEM NV DATA FV GUID");
|
/external/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/ |
Contents.json | 6 "minimum-system-version" : "7.0", 13 "minimum-system-version" : "7.0", 20 "minimum-system-version" : "7.0", 27 "minimum-system-version" : "7.0", 33 "minimum-system-version" : "7.0", 40 "minimum-system-version" : "7.0",
|
/external/selinux/dbus/ |
Makefile | 6 -mkdir -p $(DESTDIR)/etc/dbus-1/system.d/ 7 install -m 644 org.selinux.conf $(DESTDIR)/etc/dbus-1/system.d/ 8 -mkdir -p $(DESTDIR)/usr/share/dbus-1/system-services 9 install -m 644 org.selinux.service $(DESTDIR)/usr/share/dbus-1/system-services 12 -mkdir -p $(DESTDIR)/usr/share/system-config-selinux 13 install -m 755 selinux_server.py $(DESTDIR)/usr/share/system-config-selinux
|