Searched defs:entry (Results 226 - 250 of 305) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.cpp387 ciMethod* entry = _unloaded_methods->at(i); local
388 if (entry->holder()->equals(holder) &&
389 entry->name()->equals(name) &&
390 entry->signature()->as_symbol()->equals(signature)) {
392 if (entry->signature()->accessing_klass() == accessor) {
394 return entry;
398 if (entry->signature()->equals(that)) {
400 return entry;
435 ciKlass* entry = _unloaded_klasses->at(i); local
436 if (entry
504 ciInstance* entry = _unloaded_instances->at(i); local
581 ciReturnAddress* entry = _return_addresses->at(i); local
[all...]
H A DciMethod.cpp204 // last entry will be used to represent the possibility that
221 // Put an entry at the end of our list to represent the possibility
264 // Get the position of this method's entry in the vtable, if any.
277 // Get the position of this method's entry in the itable, if any.
296 address entry = method->native_function(); local
297 assert(entry != NULL, "must be valid entry point");
298 return entry;
305 // Get the entry point for running this method in the interpreter.
370 // OSR entry point
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp95 HashtableEntry<Symbol*, mtSymbol>* entry = the_table()->bucket(i); local
96 while (entry != NULL) {
98 // a shared entry, then there is nothing more to remove. However, if we
101 if (entry->is_shared() && !use_alternate_hashcode()) {
104 Symbol* s = entry->literal();
110 assert(!entry->is_shared(), "shared entries should be kept live");
113 *p = entry->next();
114 the_table()->free_entry(entry);
116 p = entry->next_addr();
118 // get next entry
379 HashtableEntry<Symbol*, mtSymbol>* entry = new_entry(hashValue, sym); local
427 HashtableEntry<Symbol*, mtSymbol>* entry = new_entry(hashValue, sym); local
553 HashtableEntry<Symbol*, mtSymbol>* entry = the_table()->bucket(i); local
669 HashtableEntry<oop, mtSymbol>* entry = new_entry(hashValue, string()); local
755 HashtableEntry<oop, mtSymbol>* entry = the_table()->bucket(i); local
789 HashtableEntry<oop, mtSymbol>* entry = the_table()->bucket(i); local
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp133 ? "entry point is missing"
486 SharkEntry* entry = (SharkEntry *) nm->code_begin(); local
487 unsigned char* p = entry->code_start();
488 unsigned char* end = entry->code_limit();
H A DoopMap.cpp656 DerivedPointerEntry *entry = new DerivedPointerEntry(derived_loc, offset); local
657 _list->append(entry);
665 DerivedPointerEntry* entry = _list->at(i); local
666 oop* derived_loc = entry->location();
667 intptr_t offset = entry->offset();
681 // Delete entry
682 delete entry;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp76 address _osr_entry; /* the entry to the osr method */
106 method_entry, // initial method entry to interpreter
213 inline void set_callee_entry_point(address entry) { _result._to_call._callee_entry_point = entry; } argument
215 inline void set_osr_entry(address entry) { _result._osr._osr_entry = entry; } argument
H A DoopMapCache.cpp83 OopMapForCacheEntry(methodHandle method, int bci, OopMapCacheEntry *entry);
85 // Computes stack map for (method,bci) and initialize entry
91 OopMapForCacheEntry::OopMapForCacheEntry(methodHandle method, int bci, OopMapCacheEntry* entry) : GenerateOopMap(method) { argument
93 _entry = entry;
157 VerifyClosure(OopMapCacheEntry* entry) { _entry = entry; _failed = false; } argument
377 // Flush entry to deallocate an existing entry
474 // Is the bit mask contained in the entry?
480 // and empty. It is used to get a copy of a cached entry
564 OopMapCacheEntry* entry = NULL; local
640 compute_one_oop_map(methodHandle method, int bci, InterpreterOopMap* entry) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp317 // In any case, we can reset the end of the current committed entry.
334 jbyte* entry; local
336 entry = byte_for(_whole_heap.start());
338 entry = byte_after(old_region.last());
361 if (entry < end) {
362 memset(entry, clean_card, pointer_delta(end, entry, sizeof(jbyte)));
412 it does not it will only result in duplicate entry in the update
/openjdk7/hotspot/src/share/vm/opto/
H A DloopPredicate.cpp36 * The general idea of Loop Predication is to insert a predicate on the entry
178 Node* entry = iff->in(0); local
181 entry = new_entry;
184 IdealLoopTree* lp = get_loop(entry);
186 new_iff->set_req(0, entry);
187 register_control(new_iff, lp, entry);
353 Node* entry = old_entry; local
356 limit_check_proj = find_predicate_insertion_point(entry, Deoptimization::Reason_loop_limit_check);
358 entry = entry
393 skip_loop_predicates(Node* entry) argument
433 find_predicate(Node* entry) argument
729 Node* entry = head->in(LoopNode::EntryControl); local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibTable.java58 * forward remote entry creation requests, and invoke callbacks
59 * when an entry has been successfully added to / removed from
107 * This method is invoked when the creation of a new entry is requested
109 * <br>By default, remote entry creation is disabled - and this method
110 * will not be called. You can dynamically switch the entry creation
121 * @param rowOid The OID indexing the conceptual row (entry) for which
126 * @exception SnmpStatusException if the entry cannot be created.
139 * If that version of the metadata does not require entry to be
149 * Tell whether a new entry should be created when a SET operation
150 * is received for an entry tha
449 addEntry(SnmpOid rowOid, Object entry) argument
478 addEntry(SnmpOid oid, ObjectName name, Object entry) argument
590 removeEntry(SnmpOid rowOid, Object entry) argument
636 removeEntry(int pos, Object entry) argument
2247 sendNotification(String type, long timeStamp, Object entry, ObjectName name) argument
[all...]
H A DSnmpRequestTree.java59 * sorted array indexed by the OID of the entry involved.
72 // allows for entry creation (ie: it is a SET request).
202 private int entry = 0; field in class:SnmpRequestTree.Enum
219 Object result = hlist.getSubRequest(handler,entry);
220 entry++;
467 // List entryoids; // Sorted array of entry oids
468 // List entrylists; // Sorted array of entry lists
470 SnmpOid[] entryoids = null; // Sorted array of entry oids
471 Vector<SnmpVarBind>[] entrylists = null; // Sorted array of entry lists
493 * register an entry fo
888 getSubRequest(Handler handler, int entry) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventQueue.java419 for (EventQueueItem entry = queues[priority].head;
420 entry != null; entry = entry.next)
423 if (entry.event.getSource() == source && entry.event.getID() == id) {
425 entry.event, e);
427 entry.event = coalescedEvent;
457 private void cacheEQItem(EventQueueItem entry) { argument
458 if(entry
472 uncacheEQItem(EventQueueItem entry) argument
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp266 // Get the native function entry point
500 // Get the entry from the constant pool cache, and drop into
503 ConstantPoolCacheEntry* entry = cache->entry_at(index); local
504 if (!entry->is_resolved(Bytecodes::_getfield)) {
509 switch (entry->flag_state()) {
516 if (entry->is_volatile()) {
517 switch (entry->flag_state()) {
519 SET_LOCALS_INT(object->char_field_acquire(entry->f2_as_index()), 0);
523 SET_LOCALS_INT(object->byte_field_acquire(entry->f2_as_index()), 0);
527 SET_LOCALS_INT(object->short_field_acquire(entry
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CodeStubs.hpp46 Label _entry; // label at the stub entry point
64 Label* entry() { return &_entry; } function in class:CodeStub
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsweeper.cpp75 void NMethodSweeper::report_events(int id, address entry) { argument
78 if (_records[i].uep == entry ||
79 _records[i].vep == entry ||
85 if (_records[i].uep == entry ||
86 _records[i].vep == entry ||
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassWriter.java372 protected void writeCharacterRangeTableEntry(CharacterRangeTable_attribute.Entry entry, ClassOutputStream out) { argument
373 out.writeShort(entry.start_pc);
374 out.writeShort(entry.end_pc);
375 out.writeInt(entry.character_range_start);
376 out.writeInt(entry.character_range_end);
377 out.writeShort(entry.flags);
447 protected void writeLineNumberTableEntry(LineNumberTable_attribute.Entry entry, ClassOutputStream out) { argument
448 out.writeShort(entry.start_pc);
449 out.writeShort(entry.line_number);
459 protected void writeLocalVariableTableEntry(LocalVariableTable_attribute.Entry entry, ClassOutputStrea argument
474 writeLocalVariableTypeTableEntry(LocalVariableTypeTable_attribute.Entry entry, ClassOutputStream out) argument
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsnamed.c75 // Create entry array
120 // Grows a entry table for a MLU. Each time this function is called, table size is multiplied times two.
146 // Search for a specific entry in the structure. Language and Country are used.
167 // Only one entry for Language/country pair is allowed.
197 // Set the entry
211 // Add an ASCII entry.
249 // Add a wide entry
323 // the Language. If none is found, first entry is used instead.
833 cmsDICTentry *entry, *next; local
838 entry
869 cmsDICTentry *entry; local
895 cmsDICTentry *entry; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java163 * <p> A grant entry must begin with the word <code>grant</code>.
175 * <p> A permission entry must begin with the word <code>permission</code>.
189 * <p> The <code>signedBy</code> name/value pair for a permission entry
193 * suppose you have the following grant entry:
207 * <p> Items that appear in an entry must appear in the specified order
209 * "<i>action</i>"). An entry is terminated with a semicolon.
372 * <p> A grant entry must begin with the word <code>grant</code>.
378 * <p> A permission entry must begin with the word <code>permission</code>.
393 * <p>The <code>signedBy</code> name/value pair for a permission entry
397 * suppose you have the following grant entry
1305 addPermissions(Permissions perms, final CodeSource cs, Principal[] principals, final PolicyEntry entry) argument
1470 addPerms(Permissions perms, Principal[] accPs, PolicyEntry entry) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLImpl.java311 for (X509CRLEntry entry : revokedList) {
312 ((X509CRLEntryImpl)entry).encode(rCerts);
500 for (X509CRLEntry entry: revokedList) {
501 sb.append("\n[" + i++ + "] " + entry.toString());
636 * Gets the CRL entry with the given serial number from this CRL.
638 * @return the entry with the given serial number, or <code>null</code> if
639 * no such entry exists in the CRL.
646 // assume this is a direct CRL entry (cert and CRL issuer are the same)
653 * Gets the CRL entry for the given certificate.
1103 X509CRLEntryImpl entry
1189 getCertIssuer(X509CRLEntryImpl entry, X500Principal prevCertIssuer) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutputStream.java2336 * Increases hash table capacity by lengthening entry arrays.
2449 void push(String entry) { argument
2450 stack.add("\t- " + entry);
H A DObjectStreamClass.java324 Object entry = null;
326 entry = ref.get();
329 if (entry == null) {
338 entry = ref.get();
340 } while (ref != null && entry == null);
341 if (entry == null) {
346 if (entry instanceof ObjectStreamClass) { // check common case first
347 return (ObjectStreamClass) entry;
349 if (entry instanceof EntryFuture) {
350 future = (EntryFuture) entry;
400 private Object entry = unset; field in class:ObjectStreamClass.EntryFuture
409 set(Object entry) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp471 address entry; local
474 entry = CAST_FROM_FN_PTR(address, SharedRuntime::frem);
477 entry = CAST_FROM_FN_PTR(address, SharedRuntime::drem);
482 LIR_Opr result = call_runtime(x->x(), x->y(), entry, x->type(), NULL);
510 address entry; local
513 entry = CAST_FROM_FN_PTR(address, SharedRuntime::lrem);
516 entry = CAST_FROM_FN_PTR(address, SharedRuntime::ldiv);
519 entry = CAST_FROM_FN_PTR(address, SharedRuntime::lmul);
526 LIR_Opr result = call_runtime(x->y(), x->x(), entry, x->type(), NULL);
801 address entry; local
[all...]
H A DtemplateInterpreter_sparc.cpp97 address entry = __ pc(); local
113 return entry;
117 address entry = __ pc(); local
127 return entry;
132 address entry = __ pc(); local
141 return entry;
146 address entry = __ pc(); local
151 return entry;
161 address entry = __ pc(); local
211 return entry;
216 address entry = __ pc(); local
236 address entry = __ pc(); local
267 address entry = __ pc(); local
276 address entry = __ pc(); local
607 address entry = __ pc(); local
643 address entry = __ pc(); local
761 address entry = __ pc(); local
820 address entry = __ pc(); local
1251 address entry = __ pc(); local
1941 address entry = __ pc(); local
1994 address entry = __ pc(); local
2053 address entry = Interpreter::trace_code(t->tos_in()); local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp69 // c++ interpreter entry point this holds that entry point label.
123 address entry = __ pc(); local
170 return entry;
180 address entry = __ pc(); local
242 return entry;
259 // On entry: rsi/r13 - interpreter state of activation returning a (potential) result
266 address entry = __ pc(); local
310 return entry;
321 // On entry
325 address entry = __ pc(); local
1578 Label entry, loop; local
[all...]
H A DtemplateInterpreter_x86_32.cpp59 address entry = __ pc(); local
85 return entry;
89 address entry = __ pc(); local
97 return entry;
101 address entry = __ pc(); local
112 return entry;
117 address entry = __ pc(); local
139 return entry;
144 address entry = __ pc(); local
148 return entry;
154 address entry = __ pc(); local
222 address entry = __ pc(); local
281 address entry = __ pc(); local
326 address entry = __ pc(); local
797 address entry = __ pc(); local
1832 address entry = __ pc(); local
1890 address entry = __ pc(); local
[all...]

Completed in 483 milliseconds

1234567891011>>