Searched refs:load (Results 1 - 25 of 385) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A DMain.js47 load("conc.js");
48 load("gui.js");
49 load("scriptpad.js");
50 load("mm.js");
/openjdk7/jdk/test/com/sun/management/OperatingSystemMXBean/
H A DGetProcessCpuLoad.java39 double load;
41 load = mbean.getProcessCpuLoad();
42 if((load<0.0 || load>1.0) && load != -1.0) {
43 throw new RuntimeException("getProcessCpuLoad() returns " + load
H A DGetSystemCpuLoad.java39 double load;
41 load = mbean.getSystemCpuLoad();
42 if((load<0.0 || load>1.0) && load != -1.0) {
43 throw new RuntimeException("getSystemCpuLoad() returns " + load
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DNativeThread.java57 Util.load();
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DSolarisOperatingSystem.c63 // Data structure for saving CPU load
110 int read_cpustat(cpuload_t *load, cpu_stat_t *cpu_stat) { argument
111 if (load->kstat == NULL) {
115 if (kstat_read(kstat_ctrl, load->kstat, cpu_stat) == -1) {
117 load->kstat = NULL;
124 cpuload_t *load; local
137 load = &cpu_loads[n];
138 if (read_cpustat(load, &cpu_stat) < 0) {
150 d_idle = c_idle - load->last_idle;
151 d_total = c_total - load
185 double load =.0; local
[all...]
H A DMacosxOperatingSystem.c41 host_cpu_load_info_data_t load; local
47 kr = host_statistics(mach_host_self(), HOST_CPU_LOAD_INFO, (host_info_t)&load, &count);
52 jlong used = load.cpu_ticks[CPU_STATE_USER] + load.cpu_ticks[CPU_STATE_NICE] + load.cpu_ticks[CPU_STATE_SYSTEM];
53 jlong total = used + load.cpu_ticks[CPU_STATE_IDLE];
/openjdk7/jdk/src/share/classes/javax/management/
H A DPersistentMBean.java39 * persistent. MBeans supporting this interface should call the load method during
59 * @exception InstanceNotFoundException Could not find or load this MBean from persistent
62 public void load() method in interface:PersistentMBean
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontManagerNativeLibrary.java35 /* REMIND do we really have to load awt here? */
51 To avoid link error we have to load freetype explicitly
52 before we load fontmanager.
76 public static void load() {} method in class:FontManagerNativeLibrary
/openjdk7/jdk/src/share/classes/java/util/
H A DPropertyResourceBundle.java130 properties.load(stream);
148 properties.load(reader);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/defaults/
H A DSnmpProperties.java58 public static void load(String file) throws IOException { method in class:SnmpProperties
61 props.load(is);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/
H A DXSLoader.java27 * An interface that provides a method to load XML Schema documents. This
34 * behavior of the load methods. The configuration may support the
91 public XSModel load(LSInput is); method in interface:XSLoader
/openjdk7/jdk/src/share/classes/java/awt/
H A DMediaTracker.java110 * // First wait for the background image to fully load
288 * If the value of the <code>load</code> flag is <code>true</code>,
296 * @param load if <code>true</code>, start loading any
306 public boolean checkAll(boolean load) { argument
307 return checkAll(load, true);
310 private synchronized boolean checkAll(boolean load, boolean verify) { argument
314 if ((cur.getStatus(load, verify) & DONE) == 0) {
449 * If the value of <code>load</code> is <code>true</code>, then
452 * @param load if <code>true</code>, start loading
462 public int statusAll(boolean load) { argument
466 statusAll(boolean load, boolean verify) argument
523 checkID(int id, boolean load) argument
527 checkID(int id, boolean load, boolean verify) argument
696 statusID(int id, boolean load) argument
700 statusID(int id, boolean load, boolean verify) argument
[all...]
/openjdk7/jdk/test/javax/swing/plaf/synth/6771547/
H A DSynthTest.java42 laf.load(in, SynthTest.class);
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DDefaultLoaderRepository.java37 * It provides the necessary methods to load classes using the registered
59 * Go through the list of class loaders and try to load the requested
77 return load(null, className);
82 * class loader, then try to load
102 return load(loader, className);
105 private static Class<?> load(ClassLoader without, String className) method in class:DefaultLoaderRepository
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXML11EntityScanner.java109 // load more characters, if needed
111 load(0, true);
137 // load more characters, if needed
139 load(0, true);
151 load(1, false);
184 // load more characters, if needed
186 load(0, true);
209 if (load(length, false)) {
229 if (load(length, false)) {
255 if (load(lengt
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAsynchronousChannelProvider.java75 static final AsynchronousChannelProvider provider = load();
77 private static AsynchronousChannelProvider load() { method in class:AsynchronousChannelProvider.ProviderHolder
113 ServiceLoader.load(AsynchronousChannelProvider.class,
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DMapReadOnly.java41 mbb.load();
/openjdk7/jdk/test/sun/security/provider/KeyStore/
H A DTestJKSWithSecretKey.java45 ks.load(null, passwd);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.hpp32 // Sparc load/store emission
35 // The following "pseudo" sparc instructions (load/store) make it easier to use the indexed addressing mode
38 // When disp <= 13 bits long, a single load or store instruction is emitted with (disp + [d]).
40 // and then a load or store is emitted with ([O7] + [d]).
46 int load(Register base, int offset, LIR_Opr to_reg, BasicType type, bool wide, bool unaligned);
47 int load(Register base, Register disp, LIR_Opr to_reg, BasicType type, bool wide);
/openjdk7/jdk/test/java/nio/MappedByteBuffer/
H A DBasic.java49 mbb.load();
57 mbb.load();
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryCode.java77 this.atts = BinaryAttribute.load(in, cpool, ~0);
107 BinaryCode load(BinaryMember bf, BinaryConstantPool cpool, Environment env) { method in class:BinaryCode
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java196 /** Generate code to load this item onto stack.
198 Item load() { method in class:Items.Item
232 load();
243 load();
282 Item load() { method in class:Items.StackItem
316 Item load() { method in class:Items.IndexedItem
359 Item load() { method in class:Items.SelfItem
388 Item load() { method in class:Items.LocalItem
408 load();
410 makeImmediateItem(syms.intType, x).load();
439 Item load() { method in class:Items.StaticItem
478 Item load() { method in class:Items.MemberItem
545 Item load() { method in class:Items.ImmediateItem
665 Item load() { method in class:Items.AssignItem
723 Item load() { method in class:Items.CondItem
[all...]
/openjdk7/jdk/test/com/sun/security/sasl/
H A DPropertiesFileCallbackHandler.java51 pwDb.load(new FileInputStream(dir+pwFile));
56 namesDb.load(new FileInputStream(dir+namesFile));
61 proxyDb.load(new FileInputStream(dir+proxyFile));
/openjdk7/jdk/test/com/sun/security/sasl/digest/
H A DPropertiesFileCallbackHandler.java51 pwDb.load(new FileInputStream(dir+pwFile));
56 namesDb.load(new FileInputStream(dir+namesFile));
61 proxyDb.load(new FileInputStream(dir+proxyFile));
/openjdk7/jdk/test/com/sun/security/sasl/gsskerb/
H A DPropertiesFileCallbackHandler.java51 pwDb.load(new FileInputStream(dir+pwFile));
56 namesDb.load(new FileInputStream(dir+namesFile));
61 proxyDb.load(new FileInputStream(dir+proxyFile));

Completed in 74 milliseconds

1234567891011>>