Searched refs:which (Results 1 - 25 of 135) sorted by relevance

123456

/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayOop.hpp79 jbyte* byte_at_addr(int which) const {
80 assert(is_within_bounds(which), "index out of bounds");
81 return &byte_base()[which];
84 jboolean* bool_at_addr(int which) const {
85 assert(is_within_bounds(which), "index out of bounds");
86 return &bool_base()[which];
89 jchar* char_at_addr(int which) const {
90 assert(is_within_bounds(which), "index out of bounds");
91 return &char_base()[which];
94 jint* int_at_addr(int which) cons
125 byte_at_put(int which, jbyte contents) argument
128 bool_at_put(int which, jboolean contents) argument
131 char_at_put(int which, jchar contents) argument
134 int_at_put(int which, jint contents) argument
137 short_at_put(int which, jshort contents) argument
140 ushort_at_put(int which, jushort contents) argument
143 long_at_put(int which, jlong contents) argument
146 float_at_put(int which, jfloat contents) argument
149 double_at_put(int which, jdouble contents) argument
152 release_byte_at_put(int which, jbyte contents) argument
[all...]
H A DconstantPoolOop.hpp52 // Most of the constant pool entries are written during class parsing, which
99 void tag_at_put(int which, jbyte t) { tags()->byte_at_put(which, t); } argument
100 void release_tag_at_put(int which, jbyte t) { tags()->release_byte_at_put(which, t); } argument
122 CPSlot slot_at(int which) { argument
123 assert(is_within_bounds(which), "index out of bounds");
127 volatile intptr_t adr = (intptr_t)OrderAccess::load_ptr_acquire(obj_at_addr_raw(which));
128 if (adr == 0 && which != 0) {
129 constantTag t = tag_at(which);
138 slot_at_put(int which, CPSlot s) const argument
147 obj_at_put_without_check(int which, oop o) argument
152 obj_at_put(int which, oop o) const argument
205 klass_at_put(int which, klassOop k) argument
224 klass_index_at_put(int which, int name_index) argument
230 unresolved_klass_at_put(int which, Symbol* s) argument
235 method_handle_index_at_put(int which, int ref_kind, int ref_index) argument
240 method_type_index_at_put(int which, int ref_index) argument
245 invoke_dynamic_at_put(int which, int bootstrap_specifier_index, int name_and_type_index) argument
251 unresolved_string_at_put(int which, Symbol* s) argument
256 int_at_put(int which, jint i) argument
261 long_at_put(int which, jlong l) argument
267 float_at_put(int which, jfloat f) argument
272 double_at_put(int which, jdouble d) argument
284 symbol_at_put(int which, Symbol* s) argument
290 string_at_put(int which, oop str) argument
305 object_at_put(int which, oop str) argument
316 string_index_at_put(int which, int string_index) argument
321 field_at_put(int which, int class_index, int name_and_type_index) argument
326 method_at_put(int which, int class_index, int name_and_type_index) argument
331 interface_method_at_put(int which, int class_index, int name_and_type_index) argument
336 name_and_type_at_put(int which, int name_index, int signature_index) argument
346 is_pointer_entry(int which) argument
354 is_object_entry(int which) argument
364 klass_at(int which, TRAPS) argument
371 resolved_klass_at(int which) argument
379 unresolved_klass_at(int which) argument
387 klass_at_noresolve(int which) argument
389 int_at(int which) argument
394 long_at(int which) argument
401 float_at(int which) argument
406 double_at(int which) argument
412 symbol_at(int which) argument
417 string_at(int which, TRAPS) argument
422 object_at(int which) argument
436 pseudo_string_at(int which) argument
441 pseudo_string_at_put(int which, oop x) argument
450 resolved_string_at(int which) argument
458 unresolved_string_at(int which) argument
472 name_and_type_at(int which) argument
477 method_handle_ref_kind_at(int which) argument
481 method_handle_index_at(int which) argument
485 method_type_index_at(int which) argument
490 method_handle_name_ref_at(int which) argument
494 method_handle_signature_ref_at(int which) argument
498 method_handle_klass_index_at(int which) argument
502 method_type_signature_at(int which) argument
507 invoke_dynamic_name_and_type_ref_index_at(int which) argument
511 invoke_dynamic_bootstrap_specifier_index(int which) argument
515 invoke_dynamic_operand_base(int which) argument
556 invoke_dynamic_operand_limit(int which) argument
568 invoke_dynamic_bootstrap_method_ref_index_at(int which) argument
573 invoke_dynamic_argument_count_at(int which) argument
582 invoke_dynamic_argument_index_at(int which, int j) argument
607 name_ref_at(int which) argument
608 signature_ref_at(int which) argument
610 klass_ref_index_at(int which) argument
611 name_and_type_ref_index_at(int which) argument
688 uncached_name_ref_at(int which) argument
689 uncached_signature_ref_at(int which) argument
690 uncached_klass_ref_index_at(int which) argument
691 uncached_name_and_type_ref_index_at(int which) argument
726 klass_index_at(int which) argument
731 string_index_at(int which) argument
[all...]
H A DconstantPoolOop.cpp54 klassOop constantPoolOopDesc::klass_at_impl(constantPoolHandle this_oop, int which, TRAPS) { argument
58 CPSlot entry = this_oop->slot_at(which);
75 if (this_oop->tag_at(which).is_unresolved_klass()) {
76 if (this_oop->tag_at(which).is_unresolved_klass_in_error()) {
80 name = this_oop->unresolved_klass_at(which);
90 Symbol* error = SystemDictionary::find_resolution_error(this_oop, which);
94 const char* className = this_oop->unresolved_klass_at(which)->as_C_string();
121 if (this_oop->tag_at(which).is_klass()) {
123 entry = this_oop->resolved_klass_at(which);
134 else if (!this_oop->tag_at(which)
205 klass_at_if_loaded(constantPoolHandle this_oop, int which) argument
238 klass_ref_at_if_loaded(constantPoolHandle this_oop, int which) argument
248 int which = this_oop->klass_ref_index_at(index); local
269 method_at_if_loaded(constantPoolHandle cpool, int which) argument
279 has_appendix_at_if_loaded(constantPoolHandle cpool, int which) argument
287 appendix_at_if_loaded(constantPoolHandle cpool, int which) argument
295 has_method_type_at_if_loaded(constantPoolHandle cpool, int which) argument
302 method_type_at_if_loaded(constantPoolHandle cpool, int which) argument
311 impl_name_ref_at(int which, bool uncached) argument
317 impl_signature_ref_at(int which, bool uncached) argument
323 impl_name_and_type_ref_index_at(int which, bool uncached) argument
349 impl_klass_ref_index_at(int which, bool uncached) argument
400 klass_ref_at(int which, TRAPS) argument
405 klass_name_at(int which) argument
422 klass_ref_at_noresolve(int which) argument
427 uncached_klass_ref_at_noresolve(int which) argument
432 string_at_noresolve(int which) argument
445 basic_type_for_signature_at(int which) argument
683 string_at_impl(constantPoolHandle this_oop, int which, TRAPS) argument
705 is_pseudo_string_at(int which) argument
718 klass_name_at_matches(instanceKlassHandle k, int which) argument
1342 printable_name_at(int which) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DrelocInfo_x86.cpp38 WhichOperand which = (WhichOperand) format(); // that is, disp32 or imm, call32, narrow oop local
39 assert(which == Assembler::disp32_operand ||
40 which == Assembler::narrow_oop_operand ||
41 which == Assembler::imm_operand, "format unpacks ok");
42 if (which == Assembler::imm_operand) {
48 } else if (which == Assembler::narrow_oop_operand) {
49 address disp = Assembler::locate_operand(addr(), which);
58 address disp = Assembler::locate_operand(ip, which);
135 WhichOperand which = (WhichOperand) format(); // that is, disp32 or imm/imm32 local
137 assert(which
160 WhichOperand which = (WhichOperand) format(); // that is, disp32 or imm/imm32 local
203 WhichOperand which = (WhichOperand) format(); local
225 WhichOperand which = (WhichOperand) format(); local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/util/
H A DWhich.java38 public static String which( Class clazz ) { method in class:Which
39 return which( clazz.getName(), clazz.getClassLoader() );
49 public static String which(String classname, ClassLoader loader) { method in class:Which
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskThread.cpp38 uint which,
53 set_id(which);
54 set_name("GC task thread#%d (ParallelGC)", which);
114 which(), processor_id());
131 GCTask* task = manager()->get_task(which());
144 task->do_it(manager(), which());
149 manager()->note_completion(which());
172 if (manager()->should_release_resources(which())) {
173 manager()->note_release(which());
37 GCTaskThread(GCTaskManager* manager, uint which, uint processor_id) argument
H A DpcTasks.hpp78 virtual void do_it(GCTaskManager* manager, uint which);
110 virtual void do_it(GCTaskManager* manager, uint which);
132 virtual void do_it(GCTaskManager* manager, uint which);
155 virtual void do_it(GCTaskManager* manager, uint which) argument
193 virtual void do_it(GCTaskManager* manager, uint which);
211 virtual void do_it(GCTaskManager* manager, uint which);
234 virtual void do_it(GCTaskManager* manager, uint which);
244 // guarantees about which task will be picked up by which thread. For example,
256 virtual void do_it(GCTaskManager* manager, uint which);
[all...]
H A DpsTasks.cpp49 void ScavengeRootsTask::do_it(GCTaskManager* manager, uint which) { argument
52 PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(which);
112 void ThreadRootsTask::do_it(GCTaskManager* manager, uint which) { argument
115 PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(which);
136 void StealTask::do_it(GCTaskManager* manager, uint which) { argument
140 PSPromotionManager::gc_thread_promotion_manager(which);
148 if (PSPromotionManager::steal_depth(which, &random_seed, p)) {
165 void SerialOldToYoungRootsTask::do_it(GCTaskManager* manager, uint which) { argument
170 PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(which);
190 void OldToYoungRootsTask::do_it(GCTaskManager* manager, uint which) { argument
[all...]
H A DgcTaskThread.hpp54 uint which,
56 return new GCTaskThread(manager, which, processor_id);
77 GCTaskThread(GCTaskManager* manager, uint which, uint processor_id);
84 uint which() const { function in class:GCTaskThread
53 create(GCTaskManager* manager, uint which, uint processor_id) argument
H A DpcTasks.cpp48 void ThreadRootsMarkingTask::do_it(GCTaskManager* manager, uint which) { argument
56 ParCompactionManager::gc_thread_compaction_manager(which);
71 void MarkFromRootsTask::do_it(GCTaskManager* manager, uint which) { argument
77 ParCompactionManager::gc_thread_compaction_manager(which);
135 void RefProcTaskProxy::do_it(GCTaskManager* manager, uint which) argument
142 ParCompactionManager::gc_thread_compaction_manager(which);
192 void StealMarkingTask::do_it(GCTaskManager* manager, uint which) { argument
199 ParCompactionManager::gc_thread_compaction_manager(which);
206 while (ParCompactionManager::steal_objarray(which, &random_seed, task)) {
211 while (ParCompactionManager::steal(which,
225 do_it(GCTaskManager* manager, uint which) argument
293 do_it(GCTaskManager* manager, uint which) argument
307 do_it(GCTaskManager* manager, uint which) argument
[all...]
H A DpsTasks.hpp73 virtual void do_it(GCTaskManager* manager, uint which);
93 virtual void do_it(GCTaskManager* manager, uint which);
112 virtual void do_it(GCTaskManager* manager, uint which);
131 virtual void do_it(GCTaskManager* manager, uint which);
198 virtual void do_it(GCTaskManager* manager, uint which);
H A DgcTaskManager.cpp151 // in which case we have to free it explicitly.
580 GCTaskThread* GCTaskManager::thread(uint which) { argument
581 assert(which < workers(), "index out of bounds");
582 assert(_thread[which] != NULL, "shouldn't have null thread");
583 return _thread[which];
586 void GCTaskManager::set_thread(uint which, GCTaskThread* value) {
587 assert(which < workers(), "index out of bounds");
589 _thread[which] = value;
627 // a notify is sent to the waiting GC workers which then
632 GCTask* GCTaskManager::get_task(uint which) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncGenerateId.java49 int which = getArg0AsNode(xctxt);
51 if (DTM.NULL != which)
59 return new XString("N" + Integer.toHexString(which).toUpperCase());
/openjdk7/hotspot/agent/make/
H A Dbuild-filelist3 SH=`which sh`
H A Dbuild-pkglist3 SH=`which sh`
/openjdk7/jdk/test/sun/security/krb5/config/
H A Ddns.sh30 JAVAC_CMD=`which javac`
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstantPool.java178 public int getFieldOrMethodAt(int which) { argument
180 System.err.print("ConstantPool.getFieldOrMethodAt(" + which + "): new index = ");
185 i = which;
188 i = cache.getEntryAt(0xFFFF & VM.getVM().getBytes().swapShort((short) which)).getConstantPoolIndex();
203 public int[] getNameAndTypeAt(int which) { argument
205 Assert.that(getTagAt(which).isNameAndType(), "Corrupted constant pool");
207 int i = getIntAt(which);
209 System.err.println("ConstantPool.getNameAndTypeAt(" + which + "): result = " + i);
214 public Symbol getNameRefAt(int which) { argument
215 return implGetNameRefAt(which, fals
218 implGetNameRefAt(int which, boolean uncached) argument
223 getSignatureRefAt(int which) argument
227 implGetSignatureRefAt(int which, boolean uncached) argument
233 implNameAndTypeRefIndexAt(int which, boolean uncached) argument
266 invokeDynamicNameAndTypeRefIndexAt(int which) argument
272 getKlassRefAt(int which) argument
278 getFieldOrMethodKlassRefAt(int which) argument
285 getMethodRefAt(int which) argument
294 getFieldRefAt(int which) argument
[all...]
/openjdk7/hotspot/test/serviceability/7170638/
H A DSDTProbesGNULinuxTest.sh42 PARENT=$(dirname $(readlink -f $(which java)))
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapValue.java117 int which = (getValue() & TYPE_MASK_IN_PLACE);
118 if (which == UNUSED_VALUE) return OopTypes.UNUSED_VALUE;
119 else if (which == OOP_VALUE) return OopTypes.OOP_VALUE;
120 else if (which == VALUE_VALUE) return OopTypes.VALUE_VALUE;
121 else if (which == NARROWOOP_VALUE) return OopTypes.NARROWOOP_VALUE;
122 else if (which == CALLEE_SAVED_VALUE) return OopTypes.CALLEE_SAVED_VALUE;
123 else if (which == DERIVED_OOP_VALUE) return OopTypes.DERIVED_OOP_VALUE;
124 else throw new InternalError("unknown which " + which + " (TYPE_MASK_IN_PLACE = " + TYPE_MASK_IN_PLACE + ")");
/openjdk7/jdk/test/sun/security/tools/keytool/
H A Dfile-in-help.sh30 JAVAC_CMD=`which javac`
H A Dnewhelp.sh30 JAVAC_CMD=`which javac`
/openjdk7/jdk/test/sun/security/krb5/tools/
H A Dktarg.sh31 JAVAC_CMD=`which javac`
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DSubject.java56 * one which binds "Alice Bar", the name on her driver license,
57 * to the <code>Subject</code>, and another which binds,
63 * which are referred to as credentials.
269 * @param acc the <code>AccessControlContext</code> from which to retrieve
667 // (like size()), which don't seem security-sensitive.
741 // (like size()), which don't seem security-sensitive.
975 new ObjectStreamField("which", int.class)
983 * in this set. If <code>which == 1</code>,
986 * If <code>which == 2</code>, this is a public credential
988 * If <code>which
991 private int which; field in class:Subject.SecureSet
993 SecureSet(Subject subject, int which) argument
999 SecureSet(Subject subject, int which, Set<? extends E> set) argument
1310 private int which; field in class:Subject.ClassSet
1314 ClassSet(int which, Class<T> c) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java28 * class. Regular expressions are pattern descriptions which enable
54 * If you were interested in the <i>number</i> of a's which matched the
533 * Sets match behaviour flags which alter the way RE does matching.
606 * @param which Nesting level of subexpression
609 public String getParen(int which) argument
612 if (which < parenCount && (start = getParenStart(which)) >= 0)
614 return search.substring(start, getParenEnd(which));
622 * @param which Nesting level of subexpression
625 public final int getParenStart(int which) argument
657 getParenEnd(int which) argument
689 getParenLength(int which) argument
704 setParenStart(int which, int i) argument
739 setParenEnd(int which, int i) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DVars.java91 String testCase(Method method, int which) { argument
94 switch (which) {
126 void test(Method method, int which, String name, String expected) { argument
127 String got = testCase(method, which);
137 void test2(Method method, int which, String name, String expected, String expected2) { argument
138 String got = testCase(method, which);

Completed in 310 milliseconds

123456