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

<<31323334353637383940>>

  /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/linux-kselftest/tools/testing/selftests/bpf/
test_dev_cgroup.c 69 assert(system("rm -f /tmp/test_dev_cgroup_null") == 0);
70 assert(system("mknod /tmp/test_dev_cgroup_null c 1 3"));
71 assert(system("rm -f /tmp/test_dev_cgroup_null") == 0);
74 assert(system("rm -f /tmp/test_dev_cgroup_zero") == 0);
75 assert(system("mknod /tmp/test_dev_cgroup_zero c 1 5") == 0);
76 assert(system("rm -f /tmp/test_dev_cgroup_zero") == 0);
78 assert(system("dd if=/dev/urandom of=/dev/zero count=64") == 0);
81 assert(system("dd if=/dev/urandom of=/dev/full count=64"));
84 assert(system("dd if=/dev/random of=/dev/zero count=64"));
  /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"
  /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);
  /prebuilts/vndk/v27/x86/arch-x86-x86/shared/vndk-sp/
libcutils.so 
  /prebuilts/vndk/v27/x86_64/arch-x86-x86_64/shared/vndk-sp/
libcutils.so 
  /system/bt/vendor_libs/test_vendor_lib/
Android.bp 43 "system/bt",
44 "system/bt/utils/include",
45 "system/bt/hci/include",
46 "system/bt/internal_include",
47 "system/bt/stack/include",
87 "system/bt",
88 "system/bt/utils/include",
89 "system/bt/hci/include",
90 "system/bt/stack/include",
  /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/
  /toolchain/binutils/binutils-2.27/zlib/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"
  /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");
  /art/test/134-nodex2oat-nofallback/
expected.txt 4 at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
8 at dalvik.system.DexFile.openDexFileNative(Native Method)
9 at dalvik.system.DexFile.openDexFile(DexFile.java:295)
10 at dalvik.system.DexFile.<init>(DexFile.java:80)
11 at dalvik.system.DexFile.<init>(DexFile.java:59)
12 at dalvik.system.DexPathList.loadDexFile(DexPathList.java:262)
13 at dalvik.system.DexPathList.makeDexElements(DexPathList.java:231)
14 at dalvik.system.DexPathList.<init>(DexPathList.java:109)
15 at dalvik.system.BaseDexClassLoader.<init>(BaseDexClassLoader.java:48)
16 at dalvik.system.PathClassLoader.<init>(PathClassLoader.java:38
    [all...]
  /art/test/138-duplicate-classes-check/src-art/
Main.java 17 import dalvik.system.DexClassLoader;
30 System.out.println(new A().i);
34 String dexPath = System.getenv("DEX_LOCATION") + "/138-duplicate-classes-check-ex.jar";
35 String optimizedDirectory = System.getenv("DEX_LOCATION");
45 exc.printStackTrace(System.out);
  /art/test/146-bad-interface/src-art/
Main.java 18 import dalvik.system.PathClassLoader;
24 static final String DEX_LOCATION = System.getenv("DEX_LOCATION");
38 System.out.println("Error occurred");
39 System.out.println(t);
40 t.printStackTrace(System.out);
  /art/test/203-multi-checkpoint/src/
Main.java 24 System.loadLibrary(args[0]);
31 System.out.println("pushing checkpoints");
34 System.out.println("checkpoints pushed");
41 System.out.println("Passed!");
49 System.out.println("Other thread running");
  /art/test/426-monitor/src/
Main.java 27 System.out.println("In static method");
31 System.out.println("In instance method");
37 System.out.println("In synchronized block");
43 System.out.println("In second instance method");
49 System.out.println("In second static method");
  /art/test/702-LargeBranchOffset/src/
Main.java.in 27 System.out.println(m.foo(-1, -1));
28 System.out.println(m.foo(-1, +1));
29 System.out.println(m.foo(+1, -1));
30 System.out.println(m.foo(+1, +1));
31 System.out.println(m.value);
  /art/test/911-get-stack-trace/src/art/
SameThread.java 21 System.out.println("###################");
22 System.out.println("### Same thread ###");
23 System.out.println("###################");
24 System.out.println("From top");
30 System.out.println("From bottom");
  /art/tools/ahat/src/main/com/android/ahat/
Main.java 62 System.out.println("Processing '" + hprof + "' ...");
66 System.err.println("Unable to load '" + hprof + "':");
69 System.err.println("'" + hprof + "' does not appear to be a valid Java heap dump:");
72 System.exit(1);
88 help(System.out);
106 System.out.println("Unable to read proguard map: " + ex);
107 System.out.println("The proguard map will not be used.");
114 System.out.println("Unable to read baseline proguard map: " + ex);
115 System.out.println("The proguard map will not be used.");
120 System.err.println("multiple baseline heap dumps.")
    [all...]
  /bootable/recovery/tools/recovery_l10n/res/values/
strings.xml 16 system is installing an update. [CHAR LIMIT=60] -->
17 <string name="recovery_installing">Installing system update</string>
20 system is erasing a partition (either a data wipe aka "factory
30 <!-- Displayed on the triangle-! screen when a system update
36 system is installing a security update. [CHAR LIMIT=60] -->
  /build/soong/java/
system_modules.go 26 // OpenJDK 9 introduces the concept of "system modules", which replace the bootclasspath. This
28 // system modules in a runtime image using the jmod and jlink tools.
40 `${config.JavacCmd} --system=none --patch-module=java.base=${classpath} ${workDir}/module-info.java && ` +
61 outDir := android.PathForModuleOut(ctx, "system")
63 outputFile := android.PathForModuleOut(ctx, "system/lib/modules")
66 android.PathForModuleOut(ctx, "system/lib/jrt-fs.jar"),
67 android.PathForModuleOut(ctx, "system/release"),
72 Description: "system modules",
102 // List of java library modules that should be included in the system modules
105 // List of prebuilt jars that should be included in the system module
    [all...]

Completed in 972 milliseconds

<<31323334353637383940>>