Searched defs:load (Results 26 - 50 of 79) sorted by relevance

1234

/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Datomic_bsd_zero.inline.hpp309 inline jlong Atomic::load(volatile jlong* src) { function in class:Atomic
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Datomic_linux_zero.inline.hpp303 inline jlong Atomic::load(volatile jlong* src) { function in class:Atomic
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Datomic_solaris_x86.inline.hpp126 inline jlong Atomic::load(volatile jlong* src) { return *src; } function in class:Atomic
156 inline jlong Atomic::load(volatile jlong* src) { function in class:Atomic
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Datomic_windows_x86.inline.hpp140 inline jlong Atomic::load(volatile jlong* src) { return *src; } function in class:Atomic
258 inline jlong Atomic::load(volatile jlong* src) { function in class:Atomic
/openjdk7/jdk/make/tools/src/build/tools/hasher/
H A DHasher.java118 Hasher load() throws IOException { method in class:Hasher
315 .load()
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DTypeCache.java88 public void load(final List<Framework> frameworks) { method in class:TypeCache
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.cpp306 template <MEMFLAGS F> void BasicHashtable<F>::verify_lookup_length(double load) { argument
307 if ((double)_lookup_length / (double)_lookup_count > load * 2.0) {
309 "lookup_length=%d average=%lf load=%f",
311 (double) _lookup_length / _lookup_count, load);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DInternetHeaders.java101 load(is);
115 public void load(InputStream is) throws MessagingException { method in class:InternetHeaders
/openjdk7/jdk/src/solaris/native/com/sun/management/
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];
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...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DFileCredentialsCache.java84 fcc.load(cacheName);
162 load(name);
165 synchronized void load(String name) throws IOException, KrbException { method in class:FileCredentialsCache
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTab.java97 load(kis);
247 private void load(KeyTabInputStream kis) method in class:KeyTab
261 System.out.println(">>> KeyTab: load() entry length: " +
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryClass.java106 public static BinaryClass load(Environment env, DataInputStream in) throws IOException { method in class:BinaryClass
107 return load(env, in, ~(ATT_CODE|ATT_ALLCLASSES));
110 public static BinaryClass load(Environment env, method in class:BinaryClass
172 BinaryAttribute atts = BinaryAttribute.load(in, cpool, mask);
185 BinaryAttribute atts = BinaryAttribute.load(in, cpool, mask);
190 c.atts = BinaryAttribute.load(in, cpool, mask);
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dscriptpad.js628 if (this.load == undefined) {
629 function load(file) {
645 load.docString = "loads the given script file";
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaScriptEngine.java225 println("load([file1, file2,...]) loads JavaScript file(s). With no files, reads <stdin>");
231 println("quit() quits the interactive load call");
254 public void load(Object[] args) { method in class:JSJavaScriptEngine
419 // load "sa.js" initialization file
421 // load "~/jsdb.js" (if found) to perform user specific
442 throw new RuntimeException("can't load JavaScript engine");
478 // load the init script
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DZoneView.java224 * This is reimplemented to not load any children directly
392 public void load() { method in class:ZoneView.Zone
534 * surface. This is implemented to load the zone if its not
542 load();
560 load();
579 load();
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DToolkitImage.java210 private synchronized void addWatcher(ImageObserver iw, boolean load) { argument
220 if (load) {
/openjdk7/jdk/src/share/classes/java/lang/
H A DSystem.java1043 * The call <code>System.load(name)</code> is effectively equivalent
1046 * Runtime.getRuntime().load(name)
1049 * @param filename the file to load.
1056 * @see java.lang.Runtime#load(java.lang.String)
1060 public static void load(String filename) { method in class:System
1147 // from trying to use itself to load this library later.
/openjdk7/jdk/src/share/classes/java/util/
H A DProperties.java61 * The {@link #load(java.io.Reader) load(Reader)} <tt>/</tt>
63 * methods load and store properties from and to a character based stream
66 * The {@link #load(java.io.InputStream) load(InputStream)} <tt>/</tt>
68 * methods work the same way as the load(Reader)/store(Writer, String) pair, except
78 * #storeToXML(OutputStream, String, String)} methods load and store properties
316 public synchronized void load(Reader reader) throws IOException { method in class:Properties
324 * {@link #load(java.io.Reader) load(Reade
340 public synchronized void load(InputStream inStream) throws IOException { method in class:Properties
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsplit_if.cpp161 // well. An anti-dep load might be in the wrong block, because in
172 // Hoist any anti-dep load to the splitting block;
175 Node *load = memphi->fast_out(i); local
176 if( load->is_Load() && alias_idx == C->get_alias_index(_igvn.type(load->in(MemNode::Address))->is_ptr()) )
177 set_ctrl(load,blk1);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelByteBuffer.java298 public void load() throws IOException { method in class:ModelByteBuffer
300 root.load();
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A Dinit.js298 * load('test.js'); // load script file 'test.js'
299 * load('http://java.sun.com/foo.js'); // load from a URL
305 function load(str) { function
/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/src/share/classes/java/awt/dnd/
H A DDragSource.java122 * load a system default cursor
125 private static Cursor load(String name) { method in class:DragSource
135 throw new RuntimeException("failed to load system cursor: " + name + " : " + e.getMessage());
148 load("DnD.Cursor.CopyDrop");
158 load("DnD.Cursor.MoveDrop");
168 load("DnD.Cursor.LinkDrop");
178 load("DnD.Cursor.CopyNoDrop");
188 load("DnD.Cursor.MoveNoDrop");
198 load("DnD.Cursor.LinkNoDrop");
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DFramework.java59 public MacOSXFramework load(){ method in class:Framework
185 load();

Completed in 158 milliseconds

1234