Package org.jnode.driver.system.acpi.aml

Examples of org.jnode.driver.system.acpi.aml.NameString


        }
    }

    public void dumpBattery(PrintWriter out) {
        ParseNode battery;
        battery = sdt.getParsedAml().findName(new NameString("BAT0"),
            Aml.AML_DEVICE);
        if (battery != null) {
            out.println(battery.toString());
        }
        battery = sdt.getParsedAml().findName(new NameString("BAT1"),
            Aml.AML_DEVICE);
        if (battery != null) {
            out.println(battery.toString());
        }
    }
View Full Code Here

TOP

Related Classes of org.jnode.driver.system.acpi.aml.NameString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.