HomeSort by relevance Sort by last modified time
    Searched refs:osClass (Results 1 - 6 of 6) sorted by null

  /art/test/676-resolve-field-type/src-ex/
ChildClass.java 50 Class<?> osClass = Class.forName("android.system.Os");
51 Method getpid = osClass.getDeclaredMethod("getpid");
58 killTemp = osClass.getDeclaredMethod("kill", int.class, int.class);
  /art/test/144-static-field-sigquit/src/
SigQuit.java 30 Class<?> osClass = Class.forName("android.system.Os");
31 Method getpid = osClass.getDeclaredMethod("getpid");
38 killTemp = osClass.getDeclaredMethod("kill", int.class, int.class);
  /art/test/678-quickening/src-art/
Main.java 57 Class<?> osClass = Class.forName("android.system.Os");
58 Method getpid = osClass.getDeclaredMethod("getpid");
65 killTemp = osClass.getDeclaredMethod("kill", int.class, int.class);
  /art/test/004-ThreadStress/src-art/
Main.java 99 Class<?> osClass = Class.forName("android.system.Os");
100 Method getpid = osClass.getDeclaredMethod("getpid");
107 killTemp = osClass.getDeclaredMethod("kill", int.class, int.class);
    [all...]
  /build/soong/android/
module.go 487 prefer32 func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool
512 func (a *ModuleBase) Prefer32(prefer32 func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool) {
565 func (a *ModuleBase) OsClassSupported() []OsClass {
568 return []OsClass{Host, HostCross}
570 return []OsClass{Host}
572 return []OsClass{Device}
574 var supported []OsClass
    [all...]
arch.go 616 Class OsClass
621 type OsClass int
624 Generic OsClass = iota
630 func (class OsClass) String() string {
657 func NewOsType(name string, class OsClass, defDisabled bool) OsType {
696 // for a module is in three levels, OsClass, mulitlib, and then Target.
697 // OsClass selection is determined by:
702 // for the module, the Device OsClass is selected.
703 // Within each selected OsClass, the multilib selection is determined by:
708 // "both": compile for all Targets supported by the OsClass (generally x86_64 and x86, or arm64 and arm)
    [all...]

Completed in 1442 milliseconds