Searched defs:entry (Results 251 - 275 of 305) sorted by relevance

<<111213

/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_64.cpp59 address entry = __ pc(); local
85 return entry;
90 address entry = __ pc(); local
102 return entry;
106 address entry = __ pc(); local
120 return entry;
126 address entry = __ pc(); local
155 return entry;
160 address entry = __ pc(); local
164 return entry;
169 address entry = __ pc(); local
207 address entry = __ pc(); local
251 address entry = __ pc(); local
277 address entry = __ pc(); local
778 address entry = __ pc(); local
1859 address entry = __ pc(); local
1925 address entry = __ pc(); local
[all...]
H A Dc1_LIRGenerator_x86.cpp489 address entry; local
492 entry = CAST_FROM_FN_PTR(address, SharedRuntime::lrem);
495 entry = CAST_FROM_FN_PTR(address, SharedRuntime::ldiv);
498 entry = CAST_FROM_FN_PTR(address, SharedRuntime::lmul);
505 __ call_runtime_leaf(entry, getThreadTemp(), result_reg, cc->args());
H A Dc1_Runtime1_x86.cpp44 int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry, int args_size) { argument
79 call(RuntimeAddress(entry));
140 int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry, Register arg1) { argument
146 return call_RT(oop_result1, oop_result2, entry, 1);
150 int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry, Register arg1, Register arg2) { argument
167 return call_RT(oop_result1, oop_result2, entry, 2);
171 int StubAssembler::call_RT(Register oop_result1, Register oop_result2, address entry, Register arg1, Register arg2, Register arg3) { argument
193 return call_RT(oop_result1, oop_result2, entry, 3);
608 // target: the entry point of the method that creates and posts the exception oop
950 // have values live in registers so the entry poin
1820 pd_name_for_address(address entry) argument
[all...]
H A Dinterp_masm_x86_32.cpp276 addptr(cache, tmp); // construct pointer to cache entry
415 // Jump to from_interpreted entry of a call unless single stepping is possible
416 // in this thread in which case we must call the i2i entry
581 Label loop, exception, entry, restart; local
587 movptr(rcx, monitor_block_top); // points to current entry, starting with top-most entry
589 jmp(entry);
618 cmpptr(Address(rcx, BasicObjectLock::obj_offset_in_bytes()), (int32_t)NULL_WORD); // check if current entry is used
621 addptr(rcx, entry_size); // otherwise advance to next entry
622 bind(entry);
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A DperfMemory_windows.cpp313 // for each entry in the directory that matches the pattern hsperfdata_*,
323 // check if the directory entry is a hsperfdata file
633 // for each entry in the directory that matches the expected file
641 struct dirent* entry; local
644 while ((entry = os::readdir(dirp, (struct dirent *)dbuf)) != NULL) {
646 int pid = filename_to_pid(entry->d_name);
650 if (strcmp(entry->d_name, ".") != 0 && strcmp(entry->d_name, "..") != 0) {
653 remove_file(dirname, entry->d_name);
680 remove_file(dirname, entry
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.hpp193 JAVA_STATIC = 1, // monomorphic entry
264 void addForm(Form * entry) { argument
265 if (_tail==NULL) { _root = _tail = _cur = entry;}
266 else { _tail->_next = entry; _tail = entry;}
325 int _cur; // Insert next entry here; count of entries
351 bool current_is_signal(); // Return 'true' if current entry is signal
352 bool is_signal(const char *entry); // Return true if entry is a signal
400 void add_entry(const char *entry);
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp264 const char* Runtime1::name_for_address(address entry) { argument
266 if (entry == entry_for((StubID)id)) return name_for((StubID)id);
272 FUNCTION_CASE(entry, os::javaTimeMillis);
273 FUNCTION_CASE(entry, os::javaTimeNanos);
274 FUNCTION_CASE(entry, SharedRuntime::OSR_migration_end);
275 FUNCTION_CASE(entry, SharedRuntime::d2f);
276 FUNCTION_CASE(entry, SharedRuntime::d2i);
277 FUNCTION_CASE(entry, SharedRuntime::d2l);
278 FUNCTION_CASE(entry, SharedRuntime::dcos);
279 FUNCTION_CASE(entry, SharedRuntim
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c69 * Size of password or group entry when not available via sysconf
628 } entry; local
629 struct dirent64* ptr = &entry.buf;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndex.java327 Entry entry = getZipIndexEntry(path);
328 if (entry == null)
330 return entry.getLastModified();
334 Entry entry = getZipIndexEntry(path);
335 if (entry == null)
338 if (entry.isDir) {
342 byte[] header = getHeader(entry);
343 // entry is not compressed?
345 return entry.compressedSize;
347 return entry
358 read(Entry entry) argument
372 read(Entry entry, byte[] buffer) argument
378 readBytes(Entry entry) argument
400 readBytes(Entry entry, byte[] buffer) argument
433 getHeader(Entry entry) argument
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.c427 * Returns true if the specified entry's name begins with the string
686 ZIP_FORMAT_ERROR("invalid CEN header (encrypted entry)");
692 /* if the entry is metadata add it to our metadata names */
701 /* Add the entry to the hash table */
1024 /* This entry has "extra" data */
1066 /* This entry has a comment */
1090 * In fact we maintain a one-entry cache of the most recently used
1112 * Returns the zip entry corresponding to the specified name, or
1137 /* Check the cached entry first */
1140 /* Cache hit! Remove and return the cached entry
1248 ZIP_GetEntryDataOffset(jzfile *zip, jzentry *entry) argument
1284 ZIP_Read(jzfile *zip, jzentry *entry, jlong pos, void *buf, jint len) argument
1337 InflateFully(jzfile *zip, jzentry *entry, void *buf, char **msg) argument
1403 jzentry *entry = ZIP_GetEntry(zip, name, 0); local
1418 ZIP_ReadEntry(jzfile *zip, jzentry *entry, unsigned char *buf, char *entryname) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyStore.java158 // CKA_CLASS - entry type
291 * or does not identify a key-related entry.
370 * <p> If the given alias name identifies an entry
374 * then the trusted certificate contained in that entry is returned.
376 * <p> If the given alias name identifies an entry
380 * then the first element of the certificate chain in that entry
399 * Returns the creation date of the entry identified by the given alias.
403 * @return the creation date of this entry, or null if the given alias does
454 KeyStore.Entry entry = null;
457 entry
1010 engineSetEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java92 // have an entry for a particular font
296 LSBCacheEntry entry = null;
302 // See if we already have an entry for this pair
305 entry = cacheEntry;
309 if (entry == null) {
310 // No entry for this pair, add it.
311 entry = searchKey;
316 return entry.getLeftSideBearing(firstChar);
1076 // Used to indicate a particular entry in lsb has not been set.
1128 public boolean equals(Object entry) { argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java210 private void specification (ModuleEntry entry) throws IOException argument
214 definition (entry);
215 addToEmitList (entry);
223 private void addToEmitList (ModuleEntry entry) argument
225 for (Enumeration e = entry.contained ().elements (); e.hasMoreElements();)
253 entry.contained ().removeAllElements ();
259 private void checkContained (ModuleEntry entry) argument
263 for (Enumeration e = entry.contained ().elements (); e.hasMoreElements ();)
270 if (!emitList.contains (entry))
271 emitList.addElement (entry);
281 definition(ModuleEntry entry) argument
347 module(ModuleEntry entry) argument
371 interfaceProd(ModuleEntry entry, int interfaceType) argument
420 interfaceDcl(InterfaceEntry entry) argument
447 export(InterfaceEntry entry) argument
515 inheritanceSpec(InterfaceEntry entry) argument
638 valueProd(ModuleEntry entry, boolean isAbstract) argument
701 valueDcl(ValueEntry entry) argument
731 valueInheritanceSpec(ValueEntry entry) argument
758 valueSupportsSpec(ValueEntry entry) argument
775 valueElement(ValueEntry entry) argument
836 valueStateMember(ValueEntry entry) argument
864 addDeclarators(ValueEntry entry, TypedefEntry typedefEntry, boolean isPublic) argument
885 initDcl(ValueEntry entry) argument
931 initParamDcl(MethodEntry entry) argument
1011 nativeDcl(SymtabEntry entry) argument
1025 constDcl(SymtabEntry entry) argument
1044 constType(SymtabEntry entry) argument
1104 hasArrayInfo(SymtabEntry entry) argument
1303 constExp(SymtabEntry entry) argument
1336 orExpr(Expression e, SymtabEntry entry) argument
1360 xorExpr(Expression e, SymtabEntry entry) argument
1384 andExpr(Expression e, SymtabEntry entry) argument
1408 shiftExpr(Expression e, SymtabEntry entry) argument
1440 addExpr(Expression e, SymtabEntry entry) argument
1472 multExpr(Expression e, SymtabEntry entry) argument
1512 unaryExpr(SymtabEntry entry) argument
1547 primaryExpr(SymtabEntry entry) argument
1599 literal(SymtabEntry entry) argument
1710 positiveIntConst(SymtabEntry entry) argument
1737 typeDcl(SymtabEntry entry) argument
1759 typeDeclarator(SymtabEntry entry) argument
1776 typeSpec(SymtabEntry entry) argument
1788 simpleTypeSpec(SymtabEntry entry, boolean mustBeReferencable ) argument
1819 baseTypeSpec(SymtabEntry entry) argument
1854 templateTypeSpec(SymtabEntry entry) argument
1870 constrTypeSpec(SymtabEntry entry) argument
1887 declarators(TypedefEntry entry, Vector list) argument
1903 declarator(TypedefEntry entry) argument
1948 integerType(SymtabEntry entry) argument
2079 structType(SymtabEntry entry) argument
2107 makeStructEntry( String name, SymtabEntry entry, boolean isForward ) argument
2124 memberList2(StructEntry entry) argument
2133 member(StructEntry entry) argument
2168 unionType(SymtabEntry entry) argument
2200 makeUnionEntry( String name, SymtabEntry entry, boolean isForward ) argument
2251 switchTypeSpec(UnionEntry entry) argument
2303 switchBody(UnionEntry entry) argument
2315 caseProd(UnionEntry entry) argument
2329 caseLabel(UnionEntry entry, UnionBranch branch) argument
2368 matchEnum(EnumEntry entry) argument
2385 elementSpec(UnionEntry entry, UnionBranch branch) argument
2407 enumType(SymtabEntry entry) argument
2444 enumType2(EnumEntry entry) argument
2469 sequenceType(SymtabEntry entry) argument
2510 stringType(SymtabEntry entry) argument
2530 stringType2(SymtabEntry entry) argument
2557 fixedArraySize(TypedefEntry entry) argument
2575 attrDcl(InterfaceEntry entry) argument
2620 attrDcl2(InterfaceEntry entry, AttributeEntry clone) argument
2641 exceptDcl(SymtabEntry entry) argument
2669 opDcl(InterfaceEntry entry) argument
2736 opDcl3(MethodEntry entry) argument
2753 opTypeSpec(SymtabEntry entry) argument
2766 parameterDcls(MethodEntry entry) argument
2775 parameterDcls2(MethodEntry entry) argument
2794 paramDcl(MethodEntry entry) argument
2811 paramAttribute(ParameterEntry entry) argument
2836 raisesExpr(MethodEntry entry) argument
2860 raisesExpr2(MethodEntry entry) argument
2884 contextExpr(MethodEntry entry) argument
2896 contextExpr2(MethodEntry entry) argument
2910 paramTypeSpec(SymtabEntry entry) argument
3111 updateSymbolTable( String fullName, SymtabEntry entry, boolean lcCheck ) argument
3130 pigeonhole(SymtabEntry container, SymtabEntry entry) argument
3252 pigeonholeMethod(InterfaceEntry container, MethodEntry entry) argument
3612 entryName(SymtabEntry entry) argument
3652 isInterface(SymtabEntry entry) argument
3658 isValue(SymtabEntry entry) argument
3663 isInterfaceOnly(SymtabEntry entry) argument
3668 isForward(SymtabEntry entry) argument
3712 isntInList(Vector list, SymtabEntry entry) argument
3731 typeOf(SymtabEntry entry) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp82 // from entry addresses to return addresses. Two JsrSets A and B are
89 // return addresses for any entry addresses they share in common.
91 // Walk through both sets in parallel. If the same entry address
148 // of the set and replacing any element with the same entry address.
151 int entry = record->entry_address(); local
155 if (entry == current->entry_address()) {
156 // Stomp over this entry.
160 } else if (entry < current->entry_address()) {
185 // We have found the proper entry. Remove it from the
361 // Set this vector to the method entry stat
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp81 typedef jboolean (JNICALL *ReadEntry_t)(jzfile *zip, jzentry *entry, unsigned char *buf, char *namebuf);
82 typedef jboolean (JNICALL *ReadMappedEntry_t)(jzfile *zip, jzentry *entry, unsigned char **buf, char *namebuf);
249 jzentry* entry = (*FindEntry)(_zip, name, &filesize, &name_len); local
250 if (entry == NULL) return NULL;
262 !(*ReadMappedEntry)(_zip, entry, &buffer, filename)) {
266 if (!(*ReadEntry)(_zip, entry, buffer, filename)) return NULL;
275 // invoke function for each entry in the zip file
329 static void print_meta_index(LazyClassPathEntry* entry, argument
331 tty->print("[Meta index for %s=", entry->name());
379 // Hand off current packages to current lazy entry (i
552 contains_entry(ClassPathEntry *entry) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp137 * is no entry point to do the transition to vm so we just
586 // this will trigger a VERIFY_OOP on entry
773 // entry/exit events are sent for that thread to track stack depth.
857 BasicObjectLock* entry = (BasicObjectLock*) istate->stack_base(); local
858 assert(entry->obj() == NULL, "Frame manager didn't allocate the monitor");
859 entry->set_obj(lockee);
862 entry->lock()->set_displaced_header(displaced);
863 if (Atomic::cmpxchg_ptr(entry, lockee->mark_addr(), displaced) != displaced) {
866 entry->lock()->set_displaced_header(NULL);
868 CALL_VM(InterpreterRuntime::monitorenter(THREAD, entry), handle_exceptio
1672 BasicObjectLock* entry = NULL; local
1946 oop entry = constants->slot_at(index).get_oop(); local
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp55 // A resolved constantPool entry will contain a klassOop, otherwise a Symbol*.
56 // It is not safe to rely on the tag bit's here, since we don't have a lock, and the entry and
58 CPSlot entry = this_oop->slot_at(which); local
59 if (entry.is_oop()) {
60 assert(entry.get_oop()->is_klass(), "must be");
61 // Already resolved - return entry.
62 return (klassOop)entry.get_oop();
87 // The original attempt to resolve this constant pool entry failed so find the
111 // to resolve this constant pool entry fail with the same error (JVMS 5.4.3).
123 entry
206 CPSlot entry = this_oop->slot_at(which); local
249 CPSlot entry = this_oop->slot_at(which); local
411 CPSlot entry = slot_at(which); local
434 CPSlot entry = slot_at(which); local
685 CPSlot entry = this_oop->slot_at(which); local
706 CPSlot entry = slot_at(which); local
733 oop entry = StringTable::intern(sym, CHECK_(-1)); local
1250 CPSlot entry = from_cp->slot_at(from_i); local
1271 CPSlot entry = from_cp->slot_at(from_i); local
1778 SymbolHashMapEntry* entry = new SymbolHashMapEntry(hash, sym, value); local
[all...]
H A DconstantPoolOop.hpp53 // is safe. For klass and string types, the constant pool entry is
54 // modified when the entry is resolved. If a klass or string constant pool
55 // entry is read without a lock, only the resolved state guarantees that
56 // the entry in the constant pool is a klass or String object and
345 // Whether the entry is a pointer that must be GC'd.
353 // Whether the entry points to an object for ldc (resolved or not)
428 // a String entry.
430 // object into a CONSTANT_String entry of an anonymous class.
448 // only called when we are sure a string entry is already resolved (via an
465 // Returns an UTF8 for a CONSTANT_String entry a
816 SymbolHashMapEntry* entry() const { return _entry; } function in class:SymbolHashMapBucket
817 set_entry(SymbolHashMapEntry* entry) argument
867 SymbolHashMapEntry *entry = find_entry(sym); local
[all...]
H A DgenerateOopMap.cpp53 // For each basic block: store entry state (vars, stack). For instructions
85 // merge exit state of BB into entry state of all successor BBs,
211 // and find all return entry points
242 RetTableEntry* entry = _first; local
244 // Scan table for entry
245 for (;entry && entry->target_bci() != target_bci; entry = entry->next());
247 if (!entry) {
[all...]
H A DmethodOop.cpp237 "interpreter entry must be valid");
722 // Called by class data sharing to remove any entry points (which are not shared)
754 address entry = Interpreter::entry_for_method(h_method); local
755 assert(entry != NULL, "interpreter entry must be non-null");
757 set_interpreter_entry(entry);
797 // It returns the compiled code entry point, after asserting not null.
991 // Finally, set up its entry points.
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.hpp88 LoopNode( Node *entry, Node *backedge ) : RegionNode(3), _loop_flags(0), _unswitch_count(0) { argument
90 init_req(EntryControl, entry);
159 CountedLoopNode( Node *entry, Node *backedge ) argument
160 : LoopNode(entry, backedge), _main_idx(0), _trip_count(max_juint),
899 static Node* skip_loop_predicates(Node* entry);
904 static Node* find_predicate(Node* entry);
H A Druntime.cpp102 // Compiled code entry points
191 const char* OptoRuntime::stub_name(address entry) { argument
193 CodeBlob* cb = CodeCache::find_blob(entry);
946 // The method is an entry that is always called by a C++ method not
1052 // will do the normal VM entry. We do it this way so that we can see if the nmethod
1193 // Dtrace support. entry and exit probes have the same signature
1345 // Is entry because may need to lock to generate oop maps
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java634 LdapEntry le; // LDAP entry representing response
761 // package entry point; used by Connection
792 // package entry point; used by Connection
994 // Adds entry to the Directory
998 LdapResult add(LdapEntry entry, Control[] reqCtls) argument
1006 if (entry == null || entry.DN == null)
1016 ber.encodeString(entry.DN, isLdapv3);
1018 NamingEnumeration enum_ = entry.attributes.getAll();
1042 // deletes entry fro
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreter_sparc.cpp72 // c++ interpreter entry point this holds that entry point label.
114 address entry = __ pc(); local
141 return entry;
153 address entry = __ pc(); local
236 return entry;
253 // On entry: O0 - points to source (callee stack top)
258 address entry = __ pc(); local
300 return entry;
312 // On entry
316 address entry = __ pc(); local
429 address entry = __ pc(); local
463 address entry = __ pc(); local
582 address entry = __ pc(); local
1387 Label entry, loop; local
[all...]
H A DnativeInst_sparc.hpp408 static void insert(address code_pos, address entry) { argument
409 (void)nativeCall_overwriting_at(code_pos, entry);
503 static void insert(address code_pos, address entry) { argument
504 (void)nativeFarCall_overwriting_at(code_pos, entry);
867 static void insert(address code_pos, address entry);
868 // MT-safe insertion of native jump at verified method entry
869 static void check_verified_entry_alignment(address entry, address verified_entry) { argument
872 static void patch_verified_entry(address entry, address verified_entry, address dest);
910 static void insert_unconditional(address code_pos, address entry);

Completed in 165 milliseconds

<<111213