Searched refs:entry (Results 101 - 125 of 979) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/macosx/classes/sun/nio/fs/
H A DBsdFileStore.java43 BsdFileStore(UnixFileSystem fs, UnixMountEntry entry) throws IOException { argument
44 super(fs, entry);
48 * Finds, and returns, the mount entry for the file system where the file
81 for (UnixMountEntry entry: fs.getMountEntries()) {
82 if (Arrays.equals(dir, entry.dir()))
83 return entry;
/openjdk10/langtools/test/tools/javac/lambdaShapes/org/openjdk/tests/separate/
H A DClassToInterfaceConverter.java37 private boolean utf8Matches(ClassFile.CpEntry entry, String v) { argument
38 if (!(entry instanceof ClassFile.CpUtf8)) {
41 ClassFile.CpUtf8 utf8 = (ClassFile.CpUtf8)entry;
70 ClassFile.CpEntry entry = cf.constant_pool.get(cf.this_class);
72 ((ClassFile.CpClass)entry).name_index);
/openjdk10/jdk/src/jdk.pack/share/native/common-unpack/
H A Dunpack.h30 struct entry;
37 entry* base1; // base of primary index
38 entry** base2; // base of secondary index
42 entry* get(uint i);
44 void init(int len_, entry* base1_, int ixTag_) {
50 void init(int len_, entry** base2_, int ixTag_) {
60 entry* entries;
61 entry* first_extra_entry;
74 cpindex* getFieldIndex(entry* classRef);
75 cpindex* getMethodIndex(entry* classRe
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAPolicyMediatorImpl_R_USM.java70 * enter will wait on the entry if it is being etherealized. When the
71 * deferred state transition completes, the entry is no longer in the
72 * AOM, and so we need to get a new entry, otherwise activator.incarnate
73 * will be called twice, once for the old entry, and again when a new
74 * entry is created. This fix also required extending the FSM StateEngine
107 AOMEntry entry = enterEntry(key) ;
108 java.lang.Object servant = activeObjectMap.getServant( entry ) ;
124 entry.incarnateFailure() ;
129 // re-acquire it afterwards. The entry state machine
173 // entry stat
308 private AOMEntry entry ; field in class:POAPolicyMediatorImpl_R_USM.Etherealizer
313 Etherealizer( POAPolicyMediatorImpl_R_USM mediator, ActiveObjectMap.Key key, AOMEntry entry, Servant servant, boolean debug ) argument
359 deactivateHelper( ActiveObjectMap.Key key, AOMEntry entry, Servant servant ) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/
H A DMimeTable.java113 MimeEntry entry = findByFileName(fileName);
114 if (entry != null) {
115 return entry.getType();
135 MimeEntry entry = entries.get(type);
136 return remove(entry);
139 public synchronized MimeEntry remove(MimeEntry entry) { argument
140 String[] extensionKeys = entry.getExtensions();
147 return entries.remove(entry.getType());
151 MimeEntry entry = entries.get(type);
152 if (entry
311 parse(String pair, MimeEntry entry) argument
331 fill(MimeEntry entry, String name, String value) argument
[all...]
/openjdk10/jdk/test/javax/imageio/plugins/png/
H A DItxtUtf8Test.java156 Element root, itxt, entry;
159 itxt.appendChild(entry = doc.createElement("iTXtEntry"));
160 entry.setAttribute("keyword", "verbatim");
161 entry.setAttribute("compressionFlag", "false");
162 entry.setAttribute("compressionMethod", "0");
163 entry.setAttribute("languageTag", "x-circled");
164 entry.setAttribute("translatedKeyword", VERBATIM);
165 entry.setAttribute("text", TEXT);
166 itxt.appendChild(entry = doc.createElement("iTXtEntry"));
167 entry
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DModuleGen.java63 public void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream) argument
66 String name = Util.containerFullName( entry ) ;
70 Enumeration e = entry.contained ().elements ();
/openjdk10/hotspot/src/share/vm/interpreter/
H A DcppInterpreterGenerator.hpp64 ZeroEntry *entry = (ZeroEntry *) masm->pc(); local
66 entry->set_entry_point(entry_point);
67 return (address) entry;
/openjdk10/jdk/src/java.desktop/share/classes/sun/swing/
H A DImageCache.java57 Entry entry;
61 entry = ref.get();
62 if (entry == null) {
63 // SoftReference was invalidated, remove the entry
66 else if (entry.equals(config, w, h, args)) {
70 return entry;
74 entry = new Entry(config, w, h, args);
78 entries.addFirst(new SoftReference<Entry>(entry));
79 return entry;
87 Entry entry
[all...]
/openjdk10/hotspot/src/share/vm/services/
H A DmallocSiteTable.cpp36 * call, the hashtable bucket array and hashtable entry allocation site have to be static.
39 * But for hashtable entry allocation site object, things get tricky. C runtime not only allocates
44 * the memory is used to instantiate CallsiteHashtableEntry for the hashtable entry allocation site.
69 * Hashtable entry is malloc'd, so it can cause infinite recursion.
70 * To avoid above problem, we pre-initialize a hash entry for
81 // Fake the call stack for hashtable entry allocation
84 // Create pseudo call stack for hashtable entry allocation
98 // Instantiate hash entry for hashtable entry allocation callsite
99 MallocSiteHashtableEntry* entry local
145 MallocSiteHashtableEntry* entry = new_entry(key, flags); local
165 MallocSiteHashtableEntry* entry = new_entry(key, flags); local
[all...]
/openjdk10/jdk/test/java/net/Inet4Address/
H A DisSiteLocalAddress.java54 String[] entry = (String[]) itr.next();
55 System.out.println(entry[0] +" should return "+entry[1]
/openjdk10/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/
H A DPolicy.java75 for (String entry : entries) {
76 String[] tokens = entry.split("\\s");
81 error(entry);
87 error(entry);
93 error(entry);
99 error(entry);
109 error(entry);
116 error(entry);
122 error(entry);
127 error(entry);
192 error(String entry) argument
[all...]
/openjdk10/hotspot/src/cpu/x86/vm/
H A DcompiledIC_aot_x86_64.cpp30 void CompiledDirectStaticCall::set_to_far(const methodHandle& callee, address entry) { argument
49 assert(data == 0 || data == (intptr_t)entry,
54 destination_holder->set_data((intptr_t)entry);
60 void CompiledPltStaticCall::set_to_interpreted(const methodHandle& callee, address entry) { argument
78 assert(destination == (address)-1 || destination == entry,
83 jump->set_jump_destination(entry);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/
H A DImportEntryTreeImpl.java52 private static ImportEntryTreeImpl createImportEntry(final Module.ImportEntry entry) { argument
53 return new ImportEntryTreeImpl(entry.getStartPosition(),
54 entry.getEndPosition(),
55 identOrNull(entry.getModuleRequest()),
56 identOrNull(entry.getImportName()),
57 identOrNull(entry.getLocalName()));
/openjdk10/jdk/src/java.base/share/classes/sun/security/pkcs12/
H A DPKCS12KeyStore.java200 // in pkcs12 with one private key entry and associated cert-chain
233 // A keystore entry and associated attributes
235 Date date; // the creation date of this entry
241 // A key entry
245 // A private key entry and its supporting certificate chain
256 // A certificate entry
300 * or does not identify a <i>key entry</i>.
310 Entry entry = entries.get(alias.toLowerCase(Locale.ENGLISH));
313 if (entry == null || (!(entry instanceo
1347 engineSetEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam) argument
1407 getAttributes(Entry entry) argument
2168 findMatchedCertificate(PrivateKeyEntry entry) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/security/acl/
H A DAcl.java37 * entries. Each ACL entry, of interface type AclEntry, contains a
40 * group). Additionally, each ACL entry is specified as being either
47 * <ul> <li>Each principal can have at most one positive ACL entry and
48 * one negative entry; that is, multiple positive or negative ACL
49 * entries are not allowed for any principal. Each entry specifies
53 * <li>If there is no entry for a particular principal, then the
56 * <li>If there is a positive entry that grants a principal a
57 * particular permission, and a negative entry that denies the
77 * call the ACL's {@code addEntry} method to add a new ACL entry
120 * Adds an ACL entry t
140 addEntry(Principal caller, AclEntry entry) argument
156 removeEntry(Principal caller, AclEntry entry) argument
[all...]
/openjdk10/jdk/src/jdk.management.agent/share/classes/sun/management/jdp/
H A DJdpPacketWriter.java56 * Put string entry to packet
58 * @param entry - string to put (utf-8 encoded)
61 public void addEntry(String entry) argument
65 * pkt.writeShort(entry.getBytes("UTF-8").length);
66 * pkt.write(entry.getBytes("UTF-8"));
68 pkt.writeUTF(entry);
/openjdk10/jdk/test/java/util/EnumMap/
H A DEntrySetIteratorRemoveInvalidatesEntry.java51 Map.Entry<TestEnum, String> entry = entrySetIterator.next();
56 entry.getKey();
/openjdk10/jdk/test/java/util/IdentityHashMap/
H A DEntrySetIteratorRemoveInvalidatesEntry.java50 Map.Entry<String, String> entry = entrySetIterator.next();
55 entry.getKey();
/openjdk10/jdk/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DReduceByOpTest.java53 for (Map.Entry<Boolean, Integer> entry : result.entrySet()) {
54 setContext("entry", entry);
55 Boolean key = entry.getKey();
56 assertEquals(entry.getValue(), data.stream().filter(e -> pEven.test(e) == key).reduce(0, rPlus));
63 for (Map.Entry<Integer, Integer> entry : miResult.entrySet()) {
64 setContext("entry", entry);
65 assertEquals((int) entry.getValue(), mgResult.get(entry
[all...]
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.cpp81 ValueMapEntry* entry; local
82 for (entry = entry_at(i); entry != NULL; entry = entry->next()) {
83 if (!is_killed(entry->value())) {
84 worklist.push(entry);
89 entry = worklist.pop();
90 int new_index = entry_index(entry->hash(), new_size);
92 if (entry
[all...]
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DLegalNoticeFilePlugin.java93 .filter(entry -> entry.type() == Type.LEGAL_NOTICE)
97 .filter(entry -> entry.type() != Type.LEGAL_NOTICE)
106 private void dedupLegalNoticeEntry(ResourcePoolEntry entry) { argument
107 Path path = Utils.getJRTFSPath(entry.path());
115 .filter(e -> Arrays.equals(e.contentBytes(), entry.contentBytes()))
127 entry.path() + " contain different content");
130 entries.add(entry);
132 entries.add(ResourcePoolEntry.createSymLink(entry
[all...]
/openjdk10/jdk/test/java/nio/file/attribute/AclFileAttributeView/
H A DBasic.java43 for (AclEntry entry: acl) {
44 System.out.format(" %s%n", entry);
62 // insert entry to grant owner read access
64 AclEntry entry = AclEntry.newBuilder()
69 System.out.println(" -- insert (entry 0) --");
70 System.out.format(" %s%n", entry);
71 acl.add(0, entry);
74 // re-ACL and check entry
78 if (!newacl.get(0).equals(entry)) {
86 entry
[all...]
/openjdk10/hotspot/src/share/vm/classfile/
H A Dplaceholders.cpp38 PlaceholderEntry* entry = (PlaceholderEntry*)Hashtable<Symbol*, mtClass>::new_entry(hash, name); local
41 entry->set_loader_data(loader_data);
42 entry->set_havesupername(havesupername);
43 entry->set_supername(supername);
44 entry->set_superThreadQ(NULL);
45 entry->set_loadInstanceThreadQ(NULL);
46 entry->set_defineThreadQ(NULL);
47 entry->set_definer(NULL);
48 entry->set_instance_klass(NULL);
49 return entry;
52 free_entry(PlaceholderEntry* entry) argument
72 PlaceholderEntry* entry = new_entry(hash, class_name, loader_data, havesupername, supername); local
[all...]
/openjdk10/hotspot/test/testlibrary/ctw/src/sun/hotspot/tools/ctw/
H A DPathHandler.java58 * @param root path entry root
127 PathEntry entry;
129 entry = new ClassPathJarEntry(p);
131 entry = new ClassesListInFile(p);
133 entry = new ClassPathJimageEntry(p);
135 entry = new ClassPathDirEntry(p);
137 return Collections.singletonList(new PathHandler(entry));
165 private final PathEntry entry; field in class:PathHandler
166 protected PathHandler(PathEntry entry) { argument
167 Objects.requireNonNull(entry);
[all...]

Completed in 249 milliseconds

1234567891011>>