Searched defs:which (Results 1 - 25 of 52) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
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.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 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 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...]
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...]
/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/utilities/
H A DyieldingWorkgroup.cpp40 GangWorker* YieldingFlexibleWorkGang::allocate_worker(uint which) { argument
42 new YieldingFlexibleGangWorker(this, which);
H A Dworkgroup.cpp63 GangWorker* WorkGang::allocate_worker(uint which) { argument
64 GangWorker* new_worker = new GangWorker(this, which);
135 // This thread is executed by the VM thread which does not block
396 // the sync barrier. We will zero the n_completed() count which
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DContextFinder.java113 final URL targetTypeURL = which(targetType);
160 * javax.xml.bind.context.factory points to a class which has a
231 // extra check to avoid costly which operation if not logged
232 logger.log(Level.FINE, "loaded {0} from {1}", new Object[]{className, which(spi)});
503 static URL which(Class clazz, ClassLoader loader) { method in class:ContextFinder
517 * Convenience method for {@link #which(Class, ClassLoader)}.
519 * Equivalent to calling: which(clazz, clazz.getClassLoader())
526 static URL which(Class clazz) { method in class:ContextFinder
527 return which(clazz, clazz.getClassLoader());
/openjdk7/jdk/test/com/sun/jdi/
H A DFinalLocalsTest.java100 private void test(Method method, int which, String name, String expected) { argument
101 String got = testCase(method, which);
132 String testCase(Method method, int which) { argument
135 switch (which) {
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);
H A DReferrersTest.java412 void showReferrers(ObjectReference objRef, int level, int total, int which) { argument
419 System.out.println("(" + which + ")" + ":<pruned> " + objRef);
424 //System.out.println(which + "/" + total + ": " + objRef + " took " + time + " ms");
435 if (which == 0) {
438 System.out.println("(" + which + ") " + objRef);
/openjdk7/jaxp/src/javax/xml/validation/
H A DSchemaFactoryFinder.java297 debugPrintln("loaded " + className + " from " + which(clazz));
530 private static String which( Class clazz ) { method in class:SchemaFactoryFinder
531 return which( clazz.getName(), clazz.getClassLoader() );
542 private static String which(String classname, ClassLoader loader) { method in class:SchemaFactoryFinder
/openjdk7/jaxp/src/javax/xml/xpath/
H A DXPathFactoryFinder.java296 debugPrintln("loaded " + className + " from " + which(clazz));
530 private static String which( Class clazz ) { method in class:XPathFactoryFinder
531 return which( clazz.getName(), clazz.getClassLoader() );
542 private static String which(String classname, ClassLoader loader) { method in class:XPathFactoryFinder
/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/jdk/src/solaris/native/com/sun/management/
H A DSolarisOperatingSystem.c182 * Return the cpu load (0-1) for proc number 'which' (or average all if which == -1)
184 double get_cpu_load(int which) { argument
192 if (which == -1) {
203 load = MIN(get_single_cpu_load(which), 1.0);
H A DLinuxOperatingSystem.c76 static int get_totalticks(int which, ticks *pticks) { argument
92 if (which != -1) {
94 for (i = 0; i < which; i++) {
231 static double get_cpuload_internal(int which, double *pkernelLoad, CpuLoadTarget target) { argument
245 } else if (which == -1) {
248 pticks = &counters.cpus[which];
257 } else if (get_totalticks(which, pticks) < 0) {
293 double get_cpu_load(int which) { argument
295 u = get_cpuload_internal(which, &s, CPU_LOAD_GLOBAL);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DFunctionTable.java322 * @param which The function ID, which may correspond to one of the FUNC_XXX
331 Function getFunction(int which) argument
335 if (which < NUM_BUILT_IN_FUNCS)
336 return (Function) m_functions[which].newInstance();
339 which-NUM_BUILT_IN_FUNCS].newInstance();
350 * @return a function ID, which may correspond to one of the FUNC_XXX values
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DSourceCodePanel.java82 // is used to figure out which line numbers to draw.
299 private Icon loadIcon(String which) { argument
300 URL url = getClass().getResource(which);
/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/jdk/src/share/classes/java/lang/invoke/
H A DInvokers.java257 private static LambdaForm invokeForm(MethodType mtype, boolean customized, int which) { argument
267 switch (which) {
276 lform = mtype.form().cachedLambdaForm(which);
299 : Arrays.asList(mtype, customized, which, nameCursor, names.length);
341 lform = mtype.form().setCachedLambdaForm(which, lform);
/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...]
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A Dinit.js303 * @param str input from which script is loaded and evaluated
575 * @param dir directory from which to list the files. optional, default to pwd
799 * Prints which command is selected from PATH
803 function which(cmd) { function
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DTokenList.java169 // This is different from adding a null string, which is
228 * which the end quote does not occur in the token.
243 // which is not part of the corresponding token.
275 protected int which(int i) { method in class:TokenList
299 int wh = which(i);
320 int begWh = which(beg);
321 int endWh = which(end);

Completed in 140 milliseconds

123