Searched defs:entry (Results 1 - 25 of 305) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.cpp30 void ExceptionHandlerTable::add_entry(HandlerTableEntry entry) { argument
40 _table[_length++] = entry;
94 assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->pco() == handler_pcos->at(i), "entry not added correctly (1)");
95 assert(entry_for(catch_pco, handler_bcis->at(i), scope_depth)->scope_depth() == scope_depth, "entry not added correctly (2)");
/openjdk7/hotspot/src/cpu/zero/vm/
H A DnativeInst_zero.cpp45 // handle this simply by changing it's entry point to point at the
49 void NativeJump::patch_verified_entry(address entry, argument
H A DcppInterpreterGenerator_zero.hpp36 ZeroEntry *entry = (ZeroEntry *) masm->pc(); local
38 entry->set_entry_point(entry_point);
39 return (address) entry;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DobjectCountEventSender.cpp32 void ObjectCountEventSender::send(const KlassInfoEntry* entry, GCId gc_id, jlong timestamp) { argument
38 event.set_class(entry->klass());
39 event.set_count(entry->count());
40 event.set_totalSize(entry->words() * BytesPerWord);
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DDirectoryStream.java58 * for (Path entry: stream) {
102 * for (Path entry: stream) {
103 * result.add(entry);
124 * entry should be accepted or filtered. A {@code Filter} is passed as the
129 * @param <T> the type of the directory entry
135 * Decides if the given directory entry should be accepted or filtered.
137 * @param entry
138 * the directory entry to be tested
140 * @return {@code true} if the directory entry should be accepted
145 boolean accept(T entry) throw argument
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkMemoryManager.hpp54 SharkEntry* entry) {
55 _entry_map[function] = entry;
53 set_entry_for_function(const llvm::Function* function, SharkEntry* entry) argument
/openjdk7/jdk/src/solaris/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;
H A DBsdNativeDispatcher.java44 * int fsstatEntry(struct fsstat_iter * iter, UnixMountEntry entry);
46 static native int fsstatEntry(long iter, UnixMountEntry entry) argument
/openjdk7/langtools/test/tools/javah/compareTest/
H A DFindNativeFiles.java68 boolean isNativeClass(JarFile jar, JarEntry entry) throws IOException, ConstantPoolException { argument
69 String name = entry.getName();
74 InputStream in = jar.getInputStream(entry);
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DMoreKvno.java80 static void go(String server, String entry, char[] pass) throws Exception { argument
85 s = Context.fromJAAS(entry);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtableEnumerator.java47 IdentityHashtableEntry entry; field in class:IdentityHashtableEnumerator
56 if (entry != null) {
60 if ((entry = table[index]) != null) {
68 if (entry == null) {
69 while ((index-- > 0) && ((entry = table[index]) == null));
71 if (entry != null) {
72 IdentityHashtableEntry e = entry;
73 entry = e.next;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DAttributeGen.java45 void generate (Hashtable symbolTable, AttributeEntry entry, PrintWriter stream); argument
H A DConstGen.java45 void generate (Hashtable symbolTable, ConstEntry entry, PrintWriter stream); argument
H A DEnumGen.java47 void generate (Hashtable symbolTable, EnumEntry entry, PrintWriter stream); argument
H A DExceptionGen.java47 void generate (Hashtable symbolTable, ExceptionEntry entry, PrintWriter stream); argument
H A DForwardGen.java47 void generate (Hashtable symbolTable, ForwardEntry entry, PrintWriter stream); argument
H A DForwardValueGen.java47 void generate (Hashtable symbolTable, ForwardValueEntry entry, PrintWriter stream); argument
H A DIncludeGen.java47 void generate (Hashtable symbolTable, IncludeEntry entry, PrintWriter stream); argument
H A DInterfaceGen.java47 void generate (Hashtable symbolTable, InterfaceEntry entry, PrintWriter stream); argument
H A DInterfaceState.java54 entry = e;
60 public TypedefEntry entry = null; field in class:InterfaceState
H A DMethodGen.java47 void generate (Hashtable symbolTable, MethodEntry entry, PrintWriter stream); argument
H A DModuleGen.java47 void generate (Hashtable symbolTable, ModuleEntry entry, PrintWriter stream); argument
H A DNativeGen.java35 void generate (Hashtable symbolTable, NativeEntry entry, PrintWriter stream); argument
H A DParameterGen.java47 void generate (Hashtable symbolTable, ParameterEntry entry, PrintWriter stream); argument
H A DPragmaGen.java47 void generate (Hashtable symbolTable, PragmaEntry entry, PrintWriter stream); argument

Completed in 86 milliseconds

1234567891011>>