Searched defs:db (Results 226 - 250 of 278) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/sparc/
H A DSPARCRegisterMap.java63 private static void initialize(TypeDataBase db) { argument
67 sizeofJint = (int) db.lookupType("jint").getSize();
68 registerImplNumberOfRegisters = db.lookupIntConstant("RegisterImpl::number_of_registers").intValue();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_ia64/
H A DWin32IA64JavaThreadPDAccess.java57 private static synchronized void initialize(TypeDataBase db) { argument
58 Type type = db.lookupType("JavaThread");
63 type = db.lookupType("OSThread");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicField.java34 protected BasicTypeDataBase db; field in class:BasicField
50 this.db = field.db;
61 public BasicField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
63 this.db = db;
H A DBasicType.java46 protected BasicTypeDataBase db; field in class:BasicType
61 public BasicType(BasicTypeDataBase db, String name, Type superclass) { argument
65 this.db = db;
70 /** Equivalent to BasicType(db, name, null) */
71 public BasicType(BasicTypeDataBase db, String name) { argument
72 this(db, name, null);
225 return (JBooleanField) getField(fieldName, db.getJBooleanType());
229 return (JByteField) getField(fieldName, db.getJByteType());
233 return (JCharField) getField(fieldName, db
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DSunWritableRaster.java57 public StateTrackableDelegate getTrackable(DataBuffer db); argument
58 public void setTrackable(DataBuffer db, StateTrackableDelegate trackable); argument
80 public static StateTrackableDelegate stealTrackable(DataBuffer db) { argument
81 return stealer.getTrackable(db);
84 public static void setTrackable(DataBuffer db, StateTrackableDelegate trackable) { argument
85 stealer.setTrackable(db, trackable);
88 public static void makeTrackable(DataBuffer db) { argument
89 stealer.setTrackable(db, StateTrackableDelegate.createInstance(State.STABLE));
92 public static void markDirty(DataBuffer db) { argument
93 stealer.getTrackable(db)
[all...]
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DJIS0213.java44 int[] db = new int[0x10000]; // doublebyte
61 for (int i = 0; i < 0x10000; i++) db[i] = UNMAPPABLE_DECODING;
73 db[e.bs] = e.cp;
84 writeDOUBLEBYTE1(baos, db, b1Min1, b1Max1, b2Min, b2Max);
85 writeDOUBLEBYTE2(baos, db, b1Min2, b1Max2, b2Min, b2Max);
110 private final static int MAP_SUPPLEMENT = 0x5; // db,c
111 private final static int MAP_SUPPLEMENT_C2B = 0x6; // c,db
112 private final static int MAP_COMPOSITE = 0x7; // db,base,cc
169 int[] db,
183 writeShort(out, db[b
167 writeDOUBLEBYTE(OutputStream out, int type, int[] db, int b1Min, int b1Max, int b2Min, int b2Max) argument
188 writeDOUBLEBYTE1(OutputStream out, int[] db, int b1Min, int b1Max, int b2Min, int b2Max) argument
197 writeDOUBLEBYTE2(OutputStream out, int[] db, int b1Min, int b1Max, int b2Min, int b2Max) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DRepositoryImpl.java78 File dbFile = new File(dbDir, "servers.db");
80 db = new RepositoryDB(dbFile);
81 db.flush();
86 db = (RepositoryDB) ois.readObject();
113 synchronized (db) {
116 Enumeration enumeration = db.serverTable.elements();
135 serverId = db.incrementServerIdCounter();
141 db.serverTable.put(new Integer(serverId), server);
142 db.flush();
191 synchronized (db) {
399 transient private RepositoryDB db = null; field in class:RepositoryImpl
407 File db; field in class:RepositoryImpl.RepositoryDB
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotAgent.java57 private TypeDataBase db; field in class:HotSpotAgent
141 return db;
305 db = null;
385 db = new HotSpotTypeDataBase(machDesc,
389 db = new HotSpotTypeDataBase(machDesc,
393 db = new HotSpotTypeDataBase(machDesc,
397 db = new HotSpotTypeDataBase(machDesc,
411 debugger.configureJavaPrimitiveTypeSizes(db.getJBooleanType().getSize(),
412 db.getJByteType().getSize(),
413 db
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapSet.java84 private static void initialize(TypeDataBase db) { argument
85 Type type = db.lookupType("OopMapSet");
92 REG_COUNT = db.lookupIntConstant("REG_COUNT").intValue();
94 SAVED_ON_ENTRY_REG_COUNT = (int) db.lookupIntConstant("SAVED_ON_ENTRY_REG_COUNT").intValue();
95 C_SAVED_ON_ENTRY_REG_COUNT = (int) db.lookupIntConstant("C_SAVED_ON_ENTRY_REG_COUNT").intValue();
H A DOopMapValue.java65 private static void initialize(TypeDataBase db) { argument
66 TYPE_BITS = db.lookupIntConstant("OopMapValue::type_bits").intValue();
67 REGISTER_BITS = db.lookupIntConstant("OopMapValue::register_bits").intValue();
68 TYPE_SHIFT = db.lookupIntConstant("OopMapValue::type_shift").intValue();
69 REGISTER_SHIFT = db.lookupIntConstant("OopMapValue::register_shift").intValue();
70 TYPE_MASK = db.lookupIntConstant("OopMapValue::type_mask").intValue();
71 TYPE_MASK_IN_PLACE = db.lookupIntConstant("OopMapValue::type_mask_in_place").intValue();
72 REGISTER_MASK = db.lookupIntConstant("OopMapValue::register_mask").intValue();
73 REGISTER_MASK_IN_PLACE = db.lookupIntConstant("OopMapValue::register_mask_in_place").intValue();
74 UNUSED_VALUE = db
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicType.java84 Type resolveTypes(BasicCDebugInfoDataBase db, ResolveListener listener) { argument
87 iter.set(db.resolveType(this, (BasicType) iter.next(), listener, "resolving const/var variants"));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgCDebugInfoBuilder.java41 private BasicCDebugInfoDataBase db; field in class:WindbgCDebugInfoBuilder
79 db = new BasicCDebugInfoDataBase();
80 db.beginConstruction();
569 db.addLineNumberInfo(new BasicLineNumberInfo(name, map.getLineNumber(lp), startPC, endPC));
577 db.resolve(new ResolveListener() {
605 db.endConstruction();
607 return db;
667 db.addType(new Integer(iter.getTypeIndex()), t);
784 db.addBlock(new Integer(symIter.getOffset()), block);
816 db
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCompactingPermGenGen.java55 private static synchronized void initialize(TypeDataBase db) { argument
56 Type type = db.lookupType("CompactingPermGenGen");
H A DGeneration.java76 private static synchronized void initialize(TypeDataBase db) { argument
77 Type type = db.lookupType("Generation");
84 type = db.lookupType("Generation::StatRecord");
88 NAME_DEF_NEW = db.lookupIntConstant("Generation::DefNew").intValue();
89 NAME_PAR_NEW = db.lookupIntConstant("Generation::ParNew").intValue();
90 NAME_MARK_SWEEP_COMPACT = db.lookupIntConstant("Generation::MarkSweepCompact").intValue();
91 NAME_CONCURRENT_MARK_SWEEP = db.lookupIntConstant("Generation::ConcurrentMarkSweep").intValue();
92 NAME_OTHER = db.lookupIntConstant("Generation::Other").intValue();
H A DSystemDictionary.java56 private static synchronized void initialize(TypeDataBase db) { argument
57 Type type = db.lookupType("SystemDictionary");
H A DUniverse.java68 private static synchronized void initialize(TypeDataBase db) { argument
69 Type type = db.lookupType("Universe");
73 heapConstructor = new VirtualConstructor(db);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMark.java50 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
51 Type type = db.lookupType("oopDesc");
54 ageBits = db.lookupLongConstant("markOopDesc::age_bits").longValue();
55 lockBits = db.lookupLongConstant("markOopDesc::lock_bits").longValue();
56 biasedLockBits = db.lookupLongConstant("markOopDesc::biased_lock_bits").longValue();
57 maxHashBits = db.lookupLongConstant("markOopDesc::max_hash_bits").longValue();
58 hashBits = db.lookupLongConstant("markOopDesc::hash_bits").longValue();
59 lockShift = db.lookupLongConstant("markOopDesc::lock_shift").longValue();
60 biasedLockShift = db.lookupLongConstant("markOopDesc::biased_lock_shift").longValue();
61 ageShift = db
[all...]
H A DMethodData.java131 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
132 Type type = db.lookupType("methodDataOopDesc");
157 Reason_many = db.lookupIntConstant("Deoptimization::Reason_many").intValue();
158 Reason_none = db.lookupIntConstant("Deoptimization::Reason_none").intValue();
159 Reason_LIMIT = db.lookupIntConstant("Deoptimization::Reason_LIMIT").intValue();
160 Reason_RECORDED_LIMIT = db.lookupIntConstant("Deoptimization::Reason_RECORDED_LIMIT").intValue();
165 Iterator i = db.getIntConstants();
175 int value = db.lookupIntConstant(name).intValue();
H A DOop.java47 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
48 Type type = db.lookupType("oopDesc");
H A DOopUtilities.java88 private static synchronized void initialize(TypeDataBase db) { argument
226 TypeDataBase db = VM.getVM().getTypeDataBase();
227 THREAD_STATUS_NEW = db.lookupIntConstant("java_lang_Thread::NEW").intValue();
231 THREAD_STATUS_RUNNABLE = db.lookupIntConstant("java_lang_Thread::RUNNABLE").intValue();
232 THREAD_STATUS_SLEEPING = db.lookupIntConstant("java_lang_Thread::SLEEPING").intValue();
233 THREAD_STATUS_IN_OBJECT_WAIT = db.lookupIntConstant("java_lang_Thread::IN_OBJECT_WAIT").intValue();
234 THREAD_STATUS_IN_OBJECT_WAIT_TIMED = db.lookupIntConstant("java_lang_Thread::IN_OBJECT_WAIT_TIMED").intValue();
235 THREAD_STATUS_PARKED = db.lookupIntConstant("java_lang_Thread::PARKED").intValue();
236 THREAD_STATUS_PARKED_TIMED = db.lookupIntConstant("java_lang_Thread::PARKED_TIMED").intValue();
237 THREAD_STATUS_BLOCKED_ON_MONITOR_ENTER = db
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DNode.java44 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
45 Type type = db.lookupType("Node");
54 nodeType = db.lookupType("Node");
56 virtualConstructor = new VirtualBaseConstructor(db, nodeType, "sun.jvm.hotspot.opto", Node.class);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DPerfDataEntry.java51 private static synchronized void initialize(TypeDataBase db) { argument
52 Type type = db.lookupType("PerfDataEntry");
H A DThread.java52 private static synchronized void initialize(TypeDataBase db) { argument
53 Type type = db.lookupType("Thread");
56 EXTERNAL_SUSPEND = db.lookupIntConstant("Thread::_external_suspend").intValue();
57 EXT_SUSPENDED = db.lookupIntConstant("Thread::_ext_suspended").intValue();
58 HAS_ASYNC_EXCEPTION = db.lookupIntConstant("Thread::_has_async_exception").intValue();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DcInterpreter.java77 private static synchronized void initialize(TypeDataBase db) { argument
79 Type cInterpreterType = db.lookupType("cInterpreter");
94 NO_REQUEST = db.lookupIntConstant("no_request").intValue();
95 INITIALIZE = db.lookupIntConstant("initialize").intValue();
96 METHOD_ENTRY = db.lookupIntConstant("method_entry").intValue();
97 METHOD_RESUME = db.lookupIntConstant("method_resume").intValue();
98 GOT_MONITORS = db.lookupIntConstant("got_monitors").intValue();
99 RETHROW_EXCEPTION = db.lookupIntConstant("rethrow_exception").intValue();
100 CALL_METHOD = db.lookupIntConstant("call_method").intValue();
101 RETURN_FROM_METHOD = db
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftFilter.java50 // 0x3 = 4th-order, 24 db/oct
100 public void setResonance(double db) { argument
101 if (resonancedB == db)
103 resonancedB = db;

Completed in 88 milliseconds

1234567891011>>