Searched refs:load (Results 101 - 125 of 385) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/net/
H A DNetProperties.java70 props.load(bin);
/openjdk7/jdk/test/sun/security/mscapi/
H A DKeyStoreCompatibilityMode.java74 // Checking keystore load operations
93 System.out.println("Checking " + (doLoad ? "load" : "store") +
99 keyStore.load((InputStream) stream, password);
106 "Expected an IOException to be thrown by KeyStore.load");
118 // store will fail if load has previously failed
/openjdk7/jdk/test/sun/security/pkcs11/Provider/
H A DLogin.java104 // call KeyStore.load with a NULL password, and get prompted for PIN
106 ks.load(null, (char[])null);
/openjdk7/jdk/test/sun/security/pkcs11/Secmod/
H A DAddTrustedCert.java59 ks.load(null, password);
H A DAddPrivateKey.java60 ks.load(null, password);
69 jks.load(in, jkspass);
106 ks.load(null, null);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftTuning.java53 load(data);
67 load(data);
88 public void load(byte[] data) { method in class:SoftTuning
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s236 MEMBAR_BEFORE_BLD ! to ensure all previous memory load
240 BLD_B0 ! issue the 2nd block load instruction
245 BLD_A0 ! block load and sync data from BLD_B0
249 BLD_B0 ! block load and sync data from BLD_A0
256 MEMBAR_AFTER_BLD ! to ensure all previous memory load
/openjdk7/jdk/test/java/security/KeyStore/
H A DEntryMethods.java95 // TEST load null param
96 ks.load((KeyStore.LoadStoreParameter)null);
100 // TEST load random param
102 ks.load(new FooParameter());
110 ks.load(pre15fis, password);
314 ks.load(new EntryMethods.FooParameter());
337 ks.load(new EntryMethods.FooParameter());
/openjdk7/hotspot/src/share/vm/opto/
H A Dmulnode.cpp63 // We are OK if right is a constant, or right is a load and
433 // Masking off the high bits of an unsigned load is not required
473 Node *load = in(1); local
474 uint lop = load->Opcode();
479 return new (phase->C) AndINode(load,phase->intcon(mask&0xFFFF));
483 load->outcnt() == 1 && load->unique_out() == this) {
485 Node *ldus = new (phase->C) LoadUSNode(load->in(MemNode::Control),
486 load->in(MemNode::Memory),
487 load
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dmulti_font.c540 if (fdata->flist[0].load == 0) {
544 /* printf("Cannot load font: %s\n", fdata->list[0].xlfd); */
547 fdata->flist[0].load = 1;
571 if (fdata->flist[i].load == 0) {
575 /* printf("Cannot load font: %s\n", fdata->flist[0].xlfd); */
579 fdata->flist[i].load = 1;
759 if (fdata->flist[j].load == 0) {
767 fdata->flist[j].load = 1;
/openjdk7/jdk/src/share/classes/com/sun/naming/internal/
H A DResourceManager.java335 // those that we cannot load
366 * each package prefix with classSuffix and attempts to load and
491 ((Properties)props).load(istream);
536 props.load((InputStream)resources.next());
550 props.load(istream);
/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/jdk/src/share/classes/sun/net/www/
H A DMimeTable.java78 load();
97 * Get the single instance of this class. First use will load the
229 public synchronized void load() { method in class:MimeTable
234 // First try to load the user-specific table, if it exists
240 // No user-table, try to load the default built-in table.
249 // No user table, try to load the default built-in table.
258 entries.load(is);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DScanDirConfigTest.java81 * Test of load method, of class com.sun.jmx.examples.scandir.ScanDirConfig.
84 System.out.println("load");
95 instance.load();
103 instance.load();
247 instance.load();
/openjdk7/jdk/src/share/classes/javax/print/
H A DStreamPrintServiceFactory.java180 ServiceLoader.load
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetProvider.java82 * the <code>RowSetFactory</code> implementation class to load:</p>
166 * @param cl <code>ClassLoader</code> used to load the factory
168 * classLoader is used to load the factory class.
224 * Attempt to load a class using the class loader supplied. If that fails
256 * Use the ServiceLoader mechanism to load the default RowSetFactory
263 for (RowSetFactory factory : ServiceLoader.load(javax.sql.rowset.RowSetFactory.class)) {
/openjdk7/jdk/src/share/classes/sun/font/
H A DSunLayoutEngine.java107 FontManagerNativeLibrary.load();
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DFactoryFinder.java151 props.load( new FileInputStream(f));
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPipeImpl.java59 Util.load();
/openjdk7/jdk/test/sun/security/provider/KeyStore/
H A DCaseSensitiveAliases.java99 ks.load(null, null);
/openjdk7/jdk/test/sun/security/rsa/
H A DGenKeyStore.java89 ks.load(null, null);
H A DTestSignatures.java50 ks.load(in, password);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DClientHelloRead.java141 ks.load(new FileInputStream(System.getProperty(
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/X509TrustManagerImpl/
H A DCheckNullEntity.java71 ks.load(new FileInputStream(trustFilename), passphrase);
H A DComodoHacker.java261 ks.load(null, null);

Completed in 78 milliseconds

1234567891011>>