Searched refs:new_entry (Results 1 - 25 of 44) sorted by relevance

12

/openjdk10/hotspot/src/share/vm/classfile/
H A DclassLoaderExt.hpp82 ClassPathEntry* new_entry) {
83 ClassLoader::add_to_list(new_entry);
85 static void append_boot_classpath(ClassPathEntry* new_entry) { argument
86 ClassLoader::add_to_list(new_entry);
81 add_class_path_entry(const char* path, bool check_for_duplicates, ClassPathEntry* new_entry) argument
H A DresolutionErrors.hpp41 ResolutionErrorEntry* new_entry(int hash, ConstantPool* pool, int cp_index,
53 void add_entry(int index, ResolutionErrorEntry* new_entry) { argument
55 (HashtableEntry<ConstantPool*, mtClass>*)new_entry);
H A DprotectionDomainCache.hpp78 ProtectionDomainCacheEntry* new_entry(unsigned int hash, Handle protection_domain) { function in class:ProtectionDomainCacheTable
79 ProtectionDomainCacheEntry* entry = (ProtectionDomainCacheEntry*) Hashtable<oop, mtClass>::new_entry(hash, protection_domain());
H A Ddictionary.hpp58 DictionaryEntry* new_entry(unsigned int hash, InstanceKlass* klass);
104 void add_entry(int index, DictionaryEntry* new_entry) { argument
105 Hashtable<InstanceKlass*, mtClass>::add_entry(index, (HashtableEntry<InstanceKlass*, mtClass>*)new_entry);
265 void add_entry(int index, SymbolPropertyEntry* new_entry) { argument
268 void set_entry(int index, SymbolPropertyEntry* new_entry) { argument
272 SymbolPropertyEntry* new_entry(unsigned int hash, Symbol* symbol, intptr_t symbol_mode) { function in class:SymbolPropertyTable
273 SymbolPropertyEntry* entry = (SymbolPropertyEntry*) Hashtable<Symbol*, mtSymbol>::new_entry(hash, symbol);
H A DresolutionErrors.cpp41 ResolutionErrorEntry* entry = new_entry(hash, pool(), cp_index, error, message);
74 ResolutionErrorEntry* ResolutionErrorTable::new_entry(int hash, ConstantPool* pool, function in class:ResolutionErrorTable
78 ResolutionErrorEntry* entry = (ResolutionErrorEntry*)Hashtable<ConstantPool*, mtClass>::new_entry(hash, pool);
H A DpackageEntry.cpp199 PackageEntry* PackageEntryTable::new_entry(unsigned int hash, Symbol* name, ModuleEntry* module) { function in class:PackageEntryTable
212 void PackageEntryTable::add_entry(int index, PackageEntry* new_entry) { argument
214 Hashtable<Symbol*, mtModule>::add_entry(index, (HashtableEntry<Symbol*, mtModule>*)new_entry);
225 PackageEntry* entry = new_entry(compute_hash(name), name, module);
247 PackageEntry* entry = new_entry(compute_hash(name), name, module);
H A DpackageEntry.hpp224 PackageEntry* new_entry(unsigned int hash, Symbol* name, ModuleEntry* module);
225 void add_entry(int index, PackageEntry* new_entry);
H A DclassLoader.cpp609 void ModuleClassPathList::add_to_list(ClassPathEntry* new_entry) { argument
610 if (new_entry != NULL) {
612 _module_first_entry = _module_last_entry = new_entry;
614 _module_last_entry->set_next(new_entry);
615 _module_last_entry = new_entry;
732 ClassPathEntry* new_entry = create_class_path_entry(path, &st, false, false, CHECK); local
734 if (new_entry != NULL) {
735 module_cpl->add_to_list(new_entry);
793 ClassPathEntry* new_entry = create_class_path_entry(path, &st, false, false, CHECK); local
798 assert(new_entry !
850 ClassPathEntry* new_entry = create_class_path_entry(path, &st, false, false, CHECK); local
873 ClassPathEntry* new_entry = NULL; local
972 add_to_list(ClassPathEntry *new_entry) argument
997 ClassPathEntry* new_entry = NULL; local
[all...]
H A DmoduleEntry.hpp209 ModuleEntry* new_entry(unsigned int hash, Handle module_handle, bool is_open,
211 void add_entry(int index, ModuleEntry* new_entry);
H A Dplaceholders.hpp42 PlaceholderEntry* new_entry(int hash, Symbol* name, ClassLoaderData* loader_data, bool havesupername, Symbol* supername);
53 void add_entry(int index, PlaceholderEntry* new_entry) { argument
54 Hashtable<Symbol*, mtClass>::add_entry(index, (HashtableEntry<Symbol*, mtClass>*)new_entry);
H A Dplaceholders.cpp34 PlaceholderEntry* PlaceholderTable::new_entry(int hash, Symbol* name, function in class:PlaceholderTable
38 PlaceholderEntry* entry = (PlaceholderEntry*)Hashtable<Symbol*, mtClass>::new_entry(hash, name);
72 PlaceholderEntry* entry = new_entry(hash, class_name, loader_data, havesupername, supername);
H A DprotectionDomainCache.cpp129 ProtectionDomainCacheEntry* p = new_entry(hash, protection_domain);
H A DmoduleEntry.cpp334 ModuleEntry* ModuleEntryTable::new_entry(unsigned int hash, Handle module_handle, function in class:ModuleEntryTable
372 void ModuleEntryTable::add_entry(int index, ModuleEntry* new_entry) { argument
374 Hashtable<Symbol*, mtModule>::add_entry(index, (HashtableEntry<Symbol*, mtModule>*)new_entry);
389 ModuleEntry* entry = new_entry(compute_hash(module_name), module_handle, is_open, module_name,
H A DloaderConstraints.hpp45 LoaderConstraintEntry* new_entry(unsigned int hash, Symbol* name,
H A Ddictionary.cpp75 DictionaryEntry* Dictionary::new_entry(unsigned int hash, InstanceKlass* klass) { function in class:Dictionary
273 DictionaryEntry* entry = new_entry(hash, obj);
435 SymbolPropertyEntry* p = new_entry(hash, sym, sym_mode);
H A DloaderConstraints.cpp44 LoaderConstraintEntry* LoaderConstraintTable::new_entry( function in class:LoaderConstraintTable
49 entry = (LoaderConstraintEntry*)Hashtable<InstanceKlass*, mtClass>::new_entry(hash, klass);
240 p = new_entry(hash, class_name, klass, 2, 2);
/openjdk10/hotspot/src/share/vm/opto/
H A DloopPredicate.cpp94 ProjNode* PhaseIdealLoop::create_new_if_for_predicate(ProjNode* cont_proj, Node* new_entry, argument
132 if (new_entry != NULL) {
134 entry = new_entry;
180 if (new_entry == NULL) {
191 // Create a new if below new_entry for the predicate to be cloned (IGVN optimization)
192 ProjNode* PhaseIterGVN::create_new_if_for_predicate(ProjNode* cont_proj, Node* new_entry, argument
195 assert(new_entry != 0, "only used for clone predicate");
221 new_iff = new IfNode(new_entry, iff->in(1), iff->_prob, iff->_fcnt);
224 new_iff = new RangeCheckNode(new_entry, iff->in(1), iff->_prob, iff->_fcnt);
259 ProjNode* PhaseIdealLoop::clone_predicate(ProjNode* predicate_proj, Node* new_entry, argument
293 clone_loop_predicates(Node* old_entry, Node* new_entry, bool clone_limit_check) argument
298 clone_loop_predicates(Node* old_entry, Node* new_entry, bool clone_limit_check) argument
303 clone_loop_predicates(Node* old_entry, Node* new_entry, bool clone_limit_check, PhaseIdealLoop* loop_phase, PhaseIterGVN* igvn) argument
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1CodeRootSetTable.hpp45 Entry* new_entry(nmethod* nm);
H A Dg1CodeCacheRemSet.cpp43 G1CodeRootSetTable::Entry* G1CodeRootSetTable::new_entry(nmethod* nm) { function in class:G1CodeRootSetTable
86 Entry* e = new_entry(nm);
/openjdk10/hotspot/src/share/vm/services/
H A DmallocSiteTable.cpp92 pc[0] = (address)MallocSiteTable::new_entry;
145 MallocSiteHashtableEntry* entry = new_entry(key, flags);
165 MallocSiteHashtableEntry* entry = new_entry(key, flags);
195 MallocSiteHashtableEntry* MallocSiteTable::new_entry(const NativeCallStack& key, MEMFLAGS flags) { function in class:MallocSiteTable
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/
H A DAuthorizationData.java76 public AuthorizationData(AuthorizationDataEntry new_entry) { argument
78 entry[0] = new_entry;
/openjdk10/hotspot/src/cpu/zero/vm/
H A DsharedRuntime_zero.cpp70 return AdapterHandlerLibrary::new_entry(
/openjdk10/hotspot/src/share/vm/utilities/
H A Dhashtable.hpp61 // free list with BasicHashtable.new_entry().
190 BasicHashtableEntry<F>* new_entry(unsigned int hashValue);
271 HashtableEntry<T, F>* new_entry(unsigned int hashValue, T obj);
H A Dhashtable.cpp57 template <MEMFLAGS F> BasicHashtableEntry<F>* BasicHashtable<F>::new_entry(unsigned int hashValue) { function in class:BasicHashtable
79 template <class T, MEMFLAGS F> HashtableEntry<T, F>* Hashtable<T, F>::new_entry(unsigned int hashValue, T obj) { function in class:Hashtable
82 entry = (HashtableEntry<T, F>*)BasicHashtable<F>::new_entry(hashValue);
/openjdk10/hotspot/src/share/vm/code/
H A DcompiledMethod.cpp85 void CompiledMethod::add_exception_cache_entry(ExceptionCache* new_entry) { argument
87 assert(new_entry != NULL,"Must be non null");
88 assert(new_entry->next() == NULL, "Must be null");
92 new_entry->set_next(ec);
94 release_set_exception_cache(new_entry);

Completed in 139 milliseconds

12